@charset "UTF-8";

/* FAQ Page Styles */
.pl_faq {
    padding-bottom: 120px;
}

@media screen and (max-width: 375px) {
    .pl_faq {
        padding-bottom: 60px;
    }
}

.pl_faq--list {
    margin-top: 30px;
    border-top: 1px solid #D0D0D0;
}

.faq_category_section {
    margin-top: 100px;
}

@media screen and (max-width: 375px) {
    .faq_category_section {
        margin-top: 60px;
    }
}

.faq_category_title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #3B3230;
    line-height: 1.4;
}

.faq_category_title span {
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.faq_category_title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E6B422;
}

@media screen and (max-width: 375px) {
    .faq_category_title {
        font-size: 24px;
    }

    .faq_category_title span::after {
        width: 60px;
        height: 3px;
    }
}

@media screen and (max-width: 375px) {
    .pl_faq--list {
        margin-top: 40px;
    }
}


.pl_faq--q {
    padding: 30px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #D0D0D0;
}

.pl_faq--q:hover {
    background-color: #F9F9F9;
}

.pl_faq--q .q-icon {
    font-size: 28px;
    font-weight: bold;
    color: #E6B422;
    /* Gold color for Q */
    margin-right: 30px;
    line-height: 1;
}

.pl_faq--q .q-txt {
    font-size: 18px;
    font-weight: 700;
    flex: 1;
    line-height: 1.5;
    color: #3B3230;
}

.pl_faq--q .toggle-icon {
    width: 20px;
    height: 20px;
    position: relative;
    margin-left: 20px;
    flex-shrink: 0;
}

.pl_faq--q .toggle-icon::before,
.pl_faq--q .toggle-icon::after {
    content: '';
    position: absolute;
    background-color: #3B3230;
    transition: all 0.4s ease;
}

/* Horizontal line */
.pl_faq--q .toggle-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
}

/* Vertical line */
.pl_faq--q .toggle-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
}

/* Open state: turn plus to minus */
.pl_faq--q .toggle-icon.open {
    transform: rotate(180deg);
}

.pl_faq--q .toggle-icon.open::after {
    transform: rotate(90deg);
    opacity: 0;
}

.pl_faq--a {
    display: none;
    align-items: flex-start;
    padding: 30px 20px;
}

.pl_faq--a .a-icon {
    font-size: 28px;
    font-weight: bold;
    color: #E24934;
    /* Red color for A */
    margin-right: 30px;
    flex-shrink: 0;
    line-height: 1;
}

.pl_faq--a .a-txt {
    font-size: 16px;
    line-height: 1.8;
    color: #3B3230;
}

@media screen and (max-width: 375px) {
    .pl_faq--q {
        padding: 20px 10px;
    }

    .pl_faq--q .q-icon {
        font-size: 22px;
        margin-right: 15px;
    }

    .pl_faq--q .q-txt {
        font-size: 15px;
    }

    .pl_faq--q .toggle-icon {
        width: 16px;
        height: 16px;
    }


    .pl_faq--a .a-icon {
        font-size: 22px;
        margin-right: 15px;
    }

    .pl_faq--a .a-txt {
        font-size: 14px;
    }
}