.page-faq {
    font-family: Arial, sans-serif;
    color: #F3F8FF; /* Text Main */
    background-color: var(--deep-navy-color); /* Inherited from shared, dark background */
}

.page-faq__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, assuming body has padding-top */
    padding-bottom: 60px;
    overflow: hidden;
}

.page-faq__hero-image-container {
    width: 100%;
    max-height: 400px; /* Limit height for hero image on internal pages */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

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

.page-faq__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

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

.page-faq__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 30px;
}

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

.page-faq__btn-primary,
.page-faq__btn-secondary {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-faq__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #F3F8FF; /* Text Main */
    border: 2px solid transparent;
}

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

.page-faq__btn-secondary {
    background: transparent;
    color: #F3F8FF; /* Text Main */
    border: 2px solid #244D84; /* Border */
}

.page-faq__btn-secondary:hover {
    background: rgba(43, 115, 246, 0.1);
    transform: translateY(-2px);
}

.page-faq__accordion-section {
    padding: 60px 0;
    background-color: var(--deep-navy-color);
}

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

.page-faq__section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
}

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

.page-faq__faq-item {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-faq__faq-item[open] {
    background-color: #08162B; /* Deep Navy */
    border-color: #1D5FD1; /* Auxiliary color */
}

.page-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #F3F8FF; /* Text Main */
    cursor: pointer;
    list-style: none;
}

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

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

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

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

.page-faq__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #AFC4E8; /* Text Secondary */
}

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

.page-faq__faq-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 15px;
    object-fit: cover;
}

.page-faq__contact-cta {
    background-color: #113B7A; /* Main color */
    padding: 80px 0;
    text-align: center;
}

.page-faq__contact-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
}

.page-faq__contact-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #AFC4E8; /* Text Secondary */
    max-width: 800px;
    margin: 0 auto 40px;
}

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

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
    .page-faq__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-faq__description {
        font-size: 1rem;
    }
    .page-faq__section-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    .page-faq__faq-question {
        font-size: 1.1rem;
        padding: 18px 20px;
    }
    .page-faq__faq-answer {
        font-size: 1rem;
        padding: 0 20px 18px;
    }
    .page-faq__contact-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    .page-faq__contact-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .page-faq__hero-section {
        padding-bottom: 40px;
        padding-top: 10px !important; /* Ensure small top padding */
    }
    .page-faq__hero-image-container {
        max-height: 300px;
    }
    .page-faq__hero-image {
        object-fit: contain !important; /* Prevent cropping on mobile */
        aspect-ratio: unset !important;
        max-height: none !important;
    }
    .page-faq__hero-content {
        padding: 0 15px;
    }
    .page-faq__main-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
        margin-bottom: 10px;
    }
    .page-faq__description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    .page-faq__cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 15px;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .page-faq__btn-primary,
    .page-faq__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 15px !important;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-faq__accordion-section {
        padding: 40px 0;
    }
    .page-faq__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-faq__section-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 30px;
    }
    .page-faq__faq-question {
        font-size: 1rem;
        padding: 15px 18px;
    }
    .page-faq__faq-toggle {
        font-size: 1.5rem;
    }
    .page-faq__faq-answer {
        font-size: 0.95rem;
        padding: 0 18px 15px;
    }
    .page-faq__faq-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-faq__contact-cta {
        padding: 50px 0;
    }
    .page-faq__contact-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    .page-faq__contact-description {
        font-size: 0.95rem;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    /* Generic image and container responsiveness */
    .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;
    }
}