.page-faq {
    color: #FFF6D6; /* Text Main */
    background-color: var(--background-color, #0A0A0A); /* Default to Background if shared var not set */
    font-family: Arial, sans-serif;
}

.page-faq__hero-section {
    padding-top: 10px; /* Small top padding, assuming body has --header-offset */
    padding-bottom: 60px;
    background-color: #0A0A0A; /* Background */
}

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

.page-faq__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: left;
}

.page-faq__main-title {
    font-size: 3.2em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #F2C14E; /* Main Color */
    max-width: 600px;
}

.page-faq__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF6D6;
    max-width: 600px;
}

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

.page-faq__btn-primary,
.page-faq__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-sizing: border-box;
    max-width: 100%;
}

.page-faq__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Dark text for bright button */
    border: none;
}

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

.page-faq__btn-secondary {
    background: transparent;
    color: #F2C14E; /* Main Color */
    border: 2px solid #F2C14E;
}

.page-faq__btn-secondary:hover {
    background-color: rgba(242, 193, 78, 0.1);
    transform: translateY(-2px);
}

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

.page-faq__hero-side-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-faq__intro-section,
.page-faq__faq-section,
.page-faq__cta-bottom-section {
    padding: 60px 0;
    background-color: #0A0A0A; /* Background */
}

.page-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-faq__section-title {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #F2C14E; /* Main Color */
}

.page-faq__section-description {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #FFF6D6;
}

.page-faq__intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-faq__icon-box {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq__icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 211, 107, 0.1);
}

.page-faq__icon-box-media {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FFD36B; /* Glow */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-faq__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%; /* Ensure image is round */
}

.page-faq__icon-box-title {
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #F2C14E; /* Main Color */
}

.page-faq__icon-box-text {
    font-size: 1em;
    line-height: 1.5;
    color: #FFF6D6;
}

.page-faq__faq-list {
    margin-top: 40px;
}

.page-faq__faq-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: #F2C14E; /* Main Color */
    cursor: pointer;
    list-style: none;
    transition: background-color 0.3s ease;
}

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

.page-faq__faq-question:hover {
    background-color: rgba(242, 193, 78, 0.05);
}

.page-faq__faq-qtext {
    flex-grow: 1;
    color: #FFF6D6; /* Ensure question text is visible */
}

.page-faq__faq-toggle {
    font-size: 1.5em;
    font-weight: 400;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    color: #FFD36B; /* Glow */
}

.page-faq__faq-item[open] .page-faq__faq-toggle {
    transform: rotate(45deg);
}

.page-faq__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    line-height: 1.6;
    color: #FFF6D6;
}

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

.page-faq__faq-answer img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 20px auto;
}

.page-faq__faq-answer a {
    color: #FFD36B; /* Glow for links */
    text-decoration: underline;
}

.page-faq__faq-answer a:hover {
    color: #F2C14E; /* Main Color on hover */
}

.page-faq__cta-bottom-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-faq__cta-bottom-section .page-faq__cta-buttons {
    justify-content: center;
    margin-top: 40px;
}

/* General image responsiveness */
.page-faq img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-faq__main-title {
        font-size: 2.8em;
    }

    .page-faq__section-title {
        font-size: 2em;
    }

    .page-faq__icon-box-media {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .page-faq {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-faq__hero-section {
        padding-top: 10px !important; /* Mobile: Small top padding, assuming body has --header-offset */
        padding-bottom: 40px;
    }

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

    .page-faq__hero-content {
        flex: none;
        width: 100%;
    }

    .page-faq__main-title {
        font-size: 2.2em;
        text-align: center;
        max-width: 100%;
    }

    .page-faq__hero-description {
        font-size: 1em;
        text-align: center;
        max-width: 100%;
    }

    .page-faq__cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        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: none;
        width: 100%;
    }

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

    .page-faq__section-title {
        font-size: 1.8em;
    }

    .page-faq__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-faq__intro-grid {
        grid-template-columns: 1fr;
    }

    .page-faq__icon-box {
        padding: 25px;
    }

    .page-faq__icon-box-media {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }

    .page-faq__icon-box-media img {
        max-width: 100% !important;
        width: 100% !important;
        height: 100% !important; /* Keep height 100% for object-fit: cover on round images */
    }

    .page-faq__icon-box-title {
        font-size: 1.4em;
    }

    .page-faq__icon-box-text {
        font-size: 0.95em;
    }

    .page-faq__faq-question {
        padding: 18px 20px;
        font-size: 1.1em;
    }

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

    .page-faq img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-faq__container,
    .page-faq__section,
    .page-faq__card,
    .page-faq__cta-bottom-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-faq__cta-bottom-section .page-faq__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}