.page-faq__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--primary-color, #1A2E44);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.page-faq__hero-content {
    padding: 40px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
    color: #f5f5f5;
}

.page-faq__hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--secondary-color, #FFD700);
}

.page-faq__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.page-faq__faq-section {
    padding: 60px 0;
    background-color: var(--primary-color, #1A2E44);
    color: #f5f5f5;
}

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

.page-faq__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color, #FFD700);
}

.page-faq__accordion-list {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-faq__accordion-item:last-child {
    border-bottom: none;
}

.page-faq__accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    background-color: #1A2E44;
    color: #f5f5f5;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    outline: none;
}

.page-faq__accordion-header:hover,
.page-faq__accordion-header[aria-expanded="true"] {
    background-color: #2e445c;
}

.page-faq__accordion-header h3 {
    margin: 0;
    color: #f5f5f5; /* Ensure h3 color is consistent */
}

.page-faq__accordion-icon {
    font-size: 1.8rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--secondary-color, #FFD700);
}

.page-faq__accordion-header[aria-expanded="true"] .page-faq__accordion-icon {
    transform: rotate(45deg);
}

.page-faq__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #1A2E44;
    color: #e0e0e0;
    padding: 0 25px;
}

.page-faq__accordion-content p {
    padding: 15px 0 25px;
    line-height: 1.7;
    font-size: 1rem;
}

.page-faq__accordion-content p a {
    color: var(--secondary-color, #FFD700);
    text-decoration: underline;
}

.page-faq__accordion-content p a:hover {
    text-decoration: none;
}

.page-faq__cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A2E44, #2e445c);
    text-align: center;
    color: #f5f5f5;
}

.page-faq__cta-content {
    max-width: 800px;
}

.page-faq__cta-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color, #FFD700);
}

.page-faq__cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-faq__cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 200px; /* Ensure buttons are not too small */
    text-align: center;
    border: 2px solid transparent; /* For consistent size on hover */
}

.page-faq__cta-button--primary {
    background-color: var(--secondary-color, #FFD700);
    color: #1A2E44;
    border-color: var(--secondary-color, #FFD700);
}

.page-faq__cta-button--primary:hover {
    background-color: #e0b800;
    border-color: #e0b800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-faq__cta-button--secondary {
    background-color: transparent;
    color: var(--secondary-color, #FFD700);
    border-color: var(--secondary-color, #FFD700);
}

.page-faq__cta-button--secondary:hover {
    background-color: var(--secondary-color, #FFD700);
    color: #1A2E44;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-faq__hero-content {
        padding: 30px 15px 40px;
    }

    .page-faq__hero-content h1 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .page-faq__hero-description {
        font-size: 1rem;
    }

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

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

    .page-faq__accordion-header {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .page-faq__accordion-content p {
        padding: 10px 0 20px;
        font-size: 0.95rem;
    }

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

    .page-faq__cta-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .page-faq__cta-description {
        font-size: 1rem;
    }

    .page-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-faq__cta-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    /* Ensure all images within .page-faq are responsive and not smaller than 200px */
    .page-faq img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size for content images */
        min-height: 200px; /* Enforce minimum size for content images */
        object-fit: cover;
    }
    .page-faq__hero-image {
        min-width: unset; /* Hero can be smaller than 200px height on mobile, but width is 100% */
        min-height: unset;
    }
}

@media (max-width: 480px) {
    .page-faq__accordion-header {
        font-size: 1rem;
    }
    .page-faq__accordion-icon {
        font-size: 1.5rem;
    }
    .page-faq__cta-button {
        min-width: unset; /* Allow buttons to shrink slightly more */
        padding: 12px 20px;
    }
}