﻿.faq-body,
.faq-body * {
    box-sizing: border-box;
}

.faq-body {
    color: #000;
    background-color: #fff;
    max-width: 83.33vw;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: visible;
    min-height: 100vh;
    padding-top: var(--header-height);
}

    .faq-body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 100%;
        background-repeat: repeat-y;
        background-size: 100% auto;
        background-position: center top;
        opacity: 0.5;
        z-index: -1;
        pointer-events: none;
    }

#main-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0;
    margin-top: 0;
    position: relative;
    align-items: center;
}

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 1.39vw;
    width: 83.33vw;
    margin: 0 auto;
    padding: 0;
}

.faq-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.39vw;
    width: 100%;
}

.faq-content {
    max-width: 55.56vw;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 1.94vw;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.39vw;
    color: #000;
    text-align: center;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 0.07vw solid #ccc;
}

    .faq-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

.faq-question {
    font-size: 1.35rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.faq-answer {
    font-size: 0.97vw;
    line-height: 1.6;
    color: #333333;
    text-align: justify;
}

    .faq-answer strong {
        color: #000000;
    }

    .faq-answer a {
        color: #000000 !important;
        text-decoration: none;
        font-weight: 500;
    }

        .faq-answer a:hover {
            text-decoration: underline;
        }

/* Responsive - giống About */
@media (max-width: 768px) {
    .faq-section,
    .faq-content-wrapper {
        width: 100%;
        padding: 0 15px;
    }

    .faq-content {
        max-width: 100%;
    }

    .section-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 1.2rem;
    }

    .faq-answer {
        font-size: 14px;
        line-height: 1.7;
    }

    .faq-item {
        border-bottom: 1px solid #ccc;
    }
}

@media (max-width: 1024px) {
    .faq-section,
    .faq-content-wrapper {
        width: 100%;
        padding: 0 15px;
    }

    .faq-content {
        max-width: 100%;
    }

    .section-title {
        font-size: 25px;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .faq-question {
        font-size: 1.2rem;
    }

    .faq-answer {
        font-size: 14px;
        line-height: 1.7;
    }

    .faq-item {
        border-bottom: 1px solid #ccc;
    }
}

@media (min-width: 1441px) {
    .faq-content {
        max-width: 69.44vw;
    }

    .section-title {
        font-size: 2.5vw;
    }

    .faq-question {
        font-size: 1.8vw;
    }

    .faq-answer {
        font-size: 1.11vw;
        line-height: 1.75;
    }
}

@media (min-width: 1920px) {
    .faq-answer {
        font-size: 1.2vw;
    }
}

.faq-section {
    padding: clamp(24px, 4vw, 64px) 0;
}
