.f-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.dropdown-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.dropdownBox {
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.dropdownBox:last-child {
    border-bottom: none;
}

.dropdown-title {
    padding: 40px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.dropdown-text h5 {
    color: #333;
    font-size: 26px;
    font-weight: 700;
}

.dropdown-arrow {
    transition: transform .1s;
}

.dropdown-arrow i {
    color: #555;
    font-size: 24px;
    font-weight: lighter;
}

.dropdown-answer {
    width: 100%;
    padding: 25px 10px;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding-top: 0;
}

.dropdown-answer p {
    color: #444;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.65;
}

.dropdown-answer p span {
    color: var(--main-color);
    text-decoration: underline;
}

.dropdown-answer em {
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    padding: 20px 30px;
    font-style: normal;
    margin-bottom: 10px;
    background-color: #f8f8f8;
}

.dropdown-answer em h4 {
    line-height: 1.4;
    font-weight: unset;
}

.dropdown-answer ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding-left: 20px;
}

.dropdown-answer ul li {
    color: #222;
    font-size: 16px;
    line-height: 1.4;
    list-style-type: disc;
}

.dropdown-answer ul li span {
    color: var(--main-color);
    text-decoration: underline;
}



/*==================================================*/
@media (max-width: 768px) {
    .dropdown-title {
        padding: 22px 10px;
    }
    
    .dropdown-text h5 {
        font-size: 18px;
    }

    .dropdown-answer {
        padding: 18px 10px;
        padding-top: 0;
    }
    
    .dropdown-answer p {
        font-size: 15px;
    }
}


@media (max-width: 550px) {
    .dropdown-title {
        padding: 30px 8px;
    }

    .dropdown-arrow i {
        font-size: 20px;
    }

    .dropdown-answer {
        padding: 16px 5px;
        padding-top: 0;
    }
    
    .dropdown-answer p {
        width: 90%;
    }
}