.page-faq {
    background-color: #B71C1C; /* Background */
    color: #FFF5E1; /* Text Main */
    font-family: sans-serif; /* Roboto-like */
}

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

/* Hero Section */
.page-faq__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-faq__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 20px;
}

.page-faq__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-faq__hero-content {
    position: relative; /* Ensure content is above any potential background */
    z-index: 1;
    padding: 0 20px;
    max-width: 900px;
}

.page-faq__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Using clamp for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFF5E1; /* Text Main */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-faq__description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF5E1; /* Text Main */
}

/* Section Titles */
.page-faq__section-title,
.page-faq__cta-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #FFF5E1; /* Text Main */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* CTA Button */
.page-faq__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
    color: #7A0E0E; /* Deep Red for text on gold button for contrast */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #F2B544; /* Border */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.page-faq__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4), 0 0 15px #FFCC66; /* Glow */
}

/* FAQ Section */
.page-faq__faq-section {
    padding: 60px 0;
    background-color: #D32F2F; /* Card BG */
}

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

.page-faq__faq-item {
    background-color: #B71C1C; /* Background */
    border: 1px solid #F2B544; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-faq__faq-question {
    width: 100%;
    background-color: #C91F17; /* Main color */
    color: #FFF5E1; /* Text Main */
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    position: relative;
    outline: none;
}

.page-faq__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.page-faq__faq-question.active::after {
    content: '-';
    transform: rotate(0deg); /* No rotation, just change content */
}

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

.page-faq__faq-answer {
    padding: 0 25px;
    background-color: #D32F2F; /* Card BG */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-faq__faq-answer.open {
    max-height: 500px; /* Arbitrary large value for smooth transition */
    padding: 20px 25px;
}

.page-faq__faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #FFF5E1; /* Text Main */
}

.page-faq__faq-answer a {
    color: #FFCC66; /* Glow - good contrast for links */
    text-decoration: underline;
    font-weight: 500;
}

.page-faq__faq-answer a:hover {
    color: #F4D34D; /* Gold */
}

/* CTA Bottom Section */
.page-faq__cta-bottom-section {
    padding: 60px 0;
    text-align: center;
    background-color: #B71C1C; /* Background */
}

.page-faq__cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF5E1; /* Text Main */
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .page-faq__container {
        padding: 15px;
    }

    .page-faq__hero-section {
        padding-bottom: 40px;
    }

    .page-faq__hero-content {
        padding: 0 15px;
    }

    .page-faq__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-faq__description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .page-faq__section-title,
    .page-faq__cta-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 30px;
    }

    .page-faq__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-faq__faq-section {
        padding: 40px 0;
    }

    .page-faq__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

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

    /* Mobile overflow prevention for images */
    .page-faq img {
        max-width: 100%;
        height: auto;
    }
}