.page-faq {
    font-family: 'Arial', sans-serif;
    color: #FFF5E1; /* Text Main from custom colors */
    line-height: 1.6;
}

.page-faq__hero-section {
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 60px;
    background: linear-gradient(90deg, #B71C1C 0%, #7A0E0E 100%); /* Deep Red background */
    color: #FFF5E1; /* Ensure text is visible on dark background */
}

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

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

.page-faq__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFCC66; /* Gold for main title */
}

.page-faq__subtitle {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #FFF5E1;
}

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

.page-faq__btn-primary,
.page-faq__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%;
}

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

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

.page-faq__btn-secondary {
    background: transparent;
    color: #FFCC66; /* Gold text for secondary button */
    border: 2px solid #FFCC66; /* Gold border */
}

.page-faq__btn-secondary:hover {
    background: rgba(255, 204, 102, 0.1); /* Light gold transparent background on hover */
    transform: translateY(-2px);
}

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

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

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

.page-faq__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #FFCC66; /* Gold for section titles */
}

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

.page-faq__faq-item {
    background-color: #D32F2F; /* Card BG from custom colors */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #FFF5E1; /* Text Main for content */
    border: 1px solid #7A0E0E; /* Deep Red border */
}

.page-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFCC66; /* Gold for questions */
    background-color: #C91F17; /* Main color as background */
    border-bottom: 1px solid #7A0E0E; /* Deep Red border */
    list-style: none; /* Hide default marker */
}

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

.page-faq__faq-question:hover {
    background-color: #E53935; /* Auxiliary color on hover */
}

.page-faq__faq-item[open] .page-faq__faq-question {
    border-bottom: none; /* Remove border when open */
}

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

.page-faq__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-faq__faq-item[open] .page-faq__faq-toggle {
    transform: rotate(45deg); /* Rotate + to become x or just change to - */
}

.page-faq__faq-answer {
    padding: 20px 25px;
    font-size: 1.1rem;
    color: #FFF5E1; /* Text Main for answers */
    background-color: #D32F2F; /* Card BG from custom colors */
}

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

.page-faq__faq-answer img.page-faq__faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-faq__faq-link {
    color: #FFD86A; /* Gold for links */
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-faq__faq-link:hover {
    color: #E6B800; /* Darker gold on hover */
}

.page-faq__promo-cta-section {
    background: linear-gradient(90deg, #C91F17 0%, #E53935 100%); /* Main to Auxiliary gradient */
    padding: 80px 15px;
    text-align: center;
    color: #FFF5E1; /* Text Main for content */
}

.page-faq__promo-cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-faq__promo-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFCC66; /* Gold for CTA title */
}

.page-faq__promo-cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-faq__hero-container {
        flex-direction: column;
        text-align: center;
    }
    .page-faq__hero-content,
    .page-faq__hero-image {
        flex: 1 1 100%;
    }
    .page-faq__cta-buttons {
        justify-content: center;
    }
}

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

    .page-faq__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile */
        padding-bottom: 40px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-faq__hero-container {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-faq__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-faq__subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .page-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px; /* Add padding to container */
        flex-wrap: wrap !important; /* Ensure buttons wrap */
    }
    .page-faq__btn-primary,
    .page-faq__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

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

    .page-faq__content-area {
        padding: 40px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-faq__section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-faq__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    .page-faq__faq-toggle {
        font-size: 1.5rem;
    }
    .page-faq__faq-answer {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-faq__faq-answer p {
        margin-bottom: 10px;
    }
    .page-faq__faq-answer img.page-faq__faq-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-faq__promo-cta-section {
        padding: 60px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-faq__promo-cta-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-faq__promo-cta-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    .page-faq__btn-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}