/* style/faq.css */
.page-faq {
    background-color: #0D0E12;
    color: #FFF3E6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-faq__hero-section {
    padding-top: 10px; /* Small top padding as per rules */
    padding-bottom: 60px;
    background-color: #0D0E12;
}

.page-faq__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.page-faq__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
}

.page-faq__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFF3E6;
    margin-bottom: 20px;
    max-width: 600px;
}

.page-faq__intro-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFF3E6;
    max-width: 600px;
}

.page-faq__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-faq__btn-primary,
.page-faq__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.page-faq__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-faq__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-faq__btn-secondary {
    background: #17191F;
    color: #FFA53A;
    border: 2px solid #A84F0C;
}

.page-faq__btn-secondary:hover {
    background: #FFA53A;
    color: #17191F;
    border-color: #FFA53A;
}

.page-faq__hero-image {
    flex: 1 1 40%;
    min-width: 300px;
    text-align: center;
}

.page-faq__hero-side-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.page-faq__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-faq__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-faq__section-title {
    font-size: 2.5em;
    color: #FFF3E6;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-faq__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-faq__faq-item {
    background-color: #17191F;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #A84F0C;
}

.page-faq__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
    color: #FFF3E6;
    user-select: none;
}

.page-faq__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-faq__faq-qtext {
    flex-grow: 1;
}

.page-faq__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #FFA53A;
}

.page-faq__faq-answer {
    padding: 0 20px 20px;
    color: #E0E0E0;
    font-size: 0.95em;
}

.page-faq__faq-answer p {
    margin-bottom: 10px;
}

.page-faq__faq-answer:last-child {
    margin-bottom: 0;
}

.page-faq__inline-link {
    color: #FFA53A;
    text-decoration: none;
    font-weight: bold;
}

.page-faq__inline-link:hover {
    text-decoration: underline;
}

.page-faq__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
    border-radius: 8px;
}

.page-faq__cta-section {
    background-color: #17191F;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #A84F0C;
}

.page-faq__cta-title {
    font-size: 2.2em;
    color: #FFF3E6;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-faq__cta-description {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Mobile Responsive Styles --- */
@media (max-width: 768px) {
    .page-faq {
        font-size: 16px;
        line-height: 1.5;
    }

    .page-faq__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }

    .page-faq__hero-container {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 20px;
    }

    .page-faq__hero-content {
        flex: 1 1 100%;
        min-width: unset;
    }

    .page-faq__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-faq__intro-description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-faq__cta-buttons {
        flex-direction: column;
        gap: 10px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }

    .page-faq__btn-primary,
    .page-faq__btn-secondary,
    .page-faq a[class*="button"],
    .page-faq a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-faq__hero-image {
        flex: 1 1 100%;
        min-width: unset;
    }

    .page-faq__hero-side-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-faq__content-area {
        padding: 40px 15px;
    }

    .page-faq__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }

    .page-faq__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-faq__faq-item summary {
        font-size: 1em;
        padding: 15px;
    }

    .page-faq__faq-answer {
        padding: 0 15px 15px;
    }

    .page-faq__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-faq__cta-section {
        padding: 60px 15px;
    }

    .page-faq__cta-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .page-faq__cta-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    /* Generic image and container rules for mobile */
    .page-faq img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-faq__section,
    .page-faq__card,
    .page-faq__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}