.faq-sec {
    width: 100vw;
    padding: 40px;
}

.titleBanner {
    width: 100%;
    height: 400px;
    border: 1px solid black;
    border-radius: 15px;
    background-image: url('/assets/faq-hero.jpg');
    background-size: cover; /* Equivalent to object-fit: cover */
    background-position: 50% 50%;
    background-repeat: no-repeat; /* Prevent tiling */
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.tint {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
}

.titleBanner > .textCon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    /* border: 1px solid red; */
    padding: 0 60px;
}

.titleBanner > .textCon > h1 {
    color: white;
    margin-bottom: 20px;
    font-size: 40px;
}
.titleBanner > .textCon > p {
    color: white;
    display: flex;
    flex-wrap: wrap;
    font-size: 20px;
}
.titleBanner > .textCon > p > span {
    display: block;
    white-space: nowrap;
}

/* .faq-title {
    text-align: center;
    margin-bottom: 20px;
} */

.dropDownBox {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    /* border-top: 1px solid gray; */
    border-bottom: 1px solid gray;
    padding: 15px 0;
    position: relative;
}
/* .dropDownBox.one {
    border-top: 1px solid gray;
} */

.dropDownBox > .titleCon {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 15px; */
    cursor: pointer;
}


.dropDownBox > .titleCon:hover > p {
    text-decoration: underline;
}

.dropDownBox > .titleCon > p {
    font-size: 18px;
    line-height: 1.5;
}

.dropDownBox > .titleCon > .dropDownBtn {
    aspect-ratio: 1 / 1;
    width: 18px;
    min-width: 18px;
    cursor: pointer;
}

.dropDownBox > .titleCon > .dropDownBtn > svg {
    aspect-ratio: 1 / 1;
    width: 100%;
}

.collapsibleCon {
    overflow: hidden;
    max-height: 0px;
    transition: all .4s ease;
}

.collapsibleCon.vis {
    max-height: 500px; 
}

.pseudo-topMargin {
    height: 20px;
}

.collapsibleCon > ul {
    padding-left: 20px;
    line-height: 1.5;
}


.collapsibleCon > p {
    font-size: 12px;
    line-height: 1.5;
}

footer {
    background-color: white;
}


@media only screen and (max-width: 550px) {
    .dropDownBox > .titleCon > p {
        font-size: 13px;
        line-height: 2;
    }
}