.page-faq {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
}

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

.page-faq__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 40px;
    text-align: center;
    background-color: #F4F7FB;
}

.page-faq__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

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

.page-faq__hero-content {
    max-width: 900px;
}

.page-faq__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #1F2D3D; /* Text Main */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
}

.page-faq__description {
    font-size: 1.1rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
}

.page-faq__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.page-faq__cta-button:hover {
    opacity: 0.9;
}

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

.page-faq__section-title {
    font-size: 2.2rem;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-faq__accordion-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

.page-faq__accordion-header:hover {
    background-color: #F8F8F8;
}

.page-faq__accordion-question {
    flex-grow: 1;
    margin-right: 15px;
}

.page-faq__accordion-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.page-faq__accordion-icon::before,
.page-faq__accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #2F6BFF; /* Primary color for icon */
    transition: transform 0.3s ease;
}

.page-faq__accordion-icon::before {
    width: 100%;
    height: 2px;
    top: 9px;
    left: 0;
}

.page-faq__accordion-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 9px;
}

.page-faq__accordion-header.active .page-faq__accordion-icon::after {
    transform: rotate(90deg) scale(0);
}

.page-faq__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #1F2D3D; /* Text Main */
}

.page-faq__accordion-content.active {
    max-height: 500px; /* Adjust as needed for content length */
    padding: 15px 25px 25px;
}

.page-faq__accordion-content p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.page-faq__inline-link {
    color: #2F6BFF; /* Primary color */
    text-decoration: none;
    font-weight: bold;
}

.page-faq__inline-link:hover {
    text-decoration: underline;
}

.page-faq__contact-promo {
    padding: 60px 0;
    text-align: center;
    background-color: #F4F7FB; /* Background */
}

.page-faq__contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-faq__secondary-button {
    display: inline-block;
    background: none;
    border: 2px solid #2F6BFF; /* Primary color */
    color: #2F6BFF; /* Primary color */
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-faq__secondary-button:hover {
    background-color: #2F6BFF;
    color: #FFFFFF;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-faq__hero-section {
        padding: 10px 15px 30px;
    }

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

    .page-faq__description {
        font-size: 1rem;
    }

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

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

    .page-faq__accordion-content.active {
        padding: 10px 20px 20px;
    }

    .page-faq__contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .page-faq__cta-button, .page-faq__secondary-button {
        width: 80%;
        max-width: 300px;
        text-align: center;
    }

    /* Ensure content images do not overflow on mobile */
    .page-faq img {
        max-width: 100%;
        height: auto;
    }
    /* Specific rule for content area images to ensure min-size is respected if not hero */
    .page-faq__accordion-content img, .page-faq__contact-promo img {
        min-width: 200px;
        min-height: 200px;
        max-width: 100%;
        height: auto;
    }
}