.page-faq {
    padding-bottom: 40px;
    background-color: var(--bg-color, #F4F7FB);
    color: var(--text-main-color, #1F2D3D);
}

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

.page-faq__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    text-align: center;
    background-color: var(--primary-color, #2F6BFF);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

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

.page-faq__hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.page-faq__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFFFFF;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E7FF; /* Lighter white for description on blue background */
}

.page-faq__cta-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background: var(--button-gradient, linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%));
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-faq__content-section {
    padding: 50px 0;
}

.page-faq__section-title {
    font-size: 2em;
    font-weight: 700;
    color: var(--text-main-color, #1F2D3D);
    margin-bottom: 30px;
    text-align: center;
}

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

.page-faq__faq-item {
    background-color: var(--card-bg-color, #FFFFFF);
    border-radius: 10px;
    border: 1px solid var(--border-color, #D6E2FF);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page-faq__faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-faq__faq-question {
    display: block;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--text-main-color, #1F2D3D);
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-faq__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    line-height: 1;
    color: var(--primary-color, #2F6BFF);
    transition: transform 0.3s ease;
}

.page-faq__faq-item[open] .page-faq__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-faq__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    line-height: 1.7;
    color: var(--custom-color-1776249996415, #000000);
}

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

.page-faq__faq-answer-link {
    color: var(--primary-color, #2F6BFF);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-faq__faq-answer-link:hover {
    text-decoration: underline;
    color: var(--secondary-color, #6FA3FF);
}

.page-faq__contact-cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--primary-color, #2F6BFF);
    color: #FFFFFF;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 1000px;
}

.page-faq__contact-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-faq__contact-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E7FF;
}

.page-faq__contact-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background: var(--button-gradient, linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%));
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-faq__hero-section {
        padding-bottom: 30px;
    }

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

    .page-faq__main-title {
        font-size: 1.8em;
    }

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

    .page-faq__cta-button {
        padding: 10px 25px;
        font-size: 1em;
    }

    .page-faq__content-section {
        padding: 30px 0;
    }

    .page-faq__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
    }

    .page-faq__faq-question {
        font-size: 1.05em;
        padding: 15px 20px;
    }

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

    .page-faq__contact-cta-section {
        padding: 40px 20px;
        margin: 30px 10px;
    }

    .page-faq__contact-title {
        font-size: 1.8em;
    }

    .page-faq__contact-description {
        font-size: 1em;
    }

    .page-faq__contact-button {
        padding: 10px 25px;
        font-size: 1em;
    }

    /* Ensure content images are responsive and don't overflow */
    .page-faq img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-faq__main-title {
        font-size: 1.5em;
    }

    .page-faq__section-title {
        font-size: 1.4em;
    }

    .page-faq__contact-title {
        font-size: 1.6em;
    }
}