.page-faq {
    background-color: #100224;
    color: #FFFFFF;
    padding-bottom: 40px;
}

.page-faq__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 40px;
    background-color: #017439;
    gap: 20px;
}

.page-faq__hero-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.page-faq__main-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-faq__intro-text {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    margin-bottom: 30px;
    line-height: 1.6;
    color: #E0E0E0;
}

.page-faq__cta-button {
    display: inline-block;
    background-color: #C30808;
    color: #FFFF00;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.page-faq__cta-button:hover {
    background-color: #a00606;
}

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

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

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

.page-faq__section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.page-faq__accordion {
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a0833;
    margin-bottom: 30px;
}

.page-faq__accordion-item {
    border-bottom: 1px solid #2e1a47;
}

.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: 18px 25px;
    background-color: transparent;
    border: none;
    color: #FFFFFF;
    text-align: left;
    cursor: pointer;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.page-faq__accordion-header h3 {
    margin: 0;
    color: #FFFFFF;
    font-size: inherit;
    font-weight: inherit;
}

.page-faq__accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.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.3s ease-out, padding 0.3s ease-out;
    padding: 0 25px;
}

.page-faq__accordion-content p {
    padding-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #E0E0E0;
}

.page-faq__accordion-content p a {
    color: #83a1f2;
    text-decoration: none;
}

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

.page-faq__image-container {
    text-align: center;
    margin-top: 30px;
}

.page-faq__illustration-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-faq__contact-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #1a0833;
    margin-top: 40px;
}

.page-faq__contact-text {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    margin-bottom: 30px;
    line-height: 1.6;
    color: #E0E0E0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__contact-button {
    display: inline-block;
    background-color: #C30808;
    color: #FFFF00;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    margin-bottom: 30px;
}

.page-faq__contact-button:hover {
    background-color: #a00606;
}

.page-faq__contact-image-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .page-faq__hero-section {
        flex-direction: row;
        text-align: left;
        padding: 40px 50px;
    }

    .page-faq__hero-content {
        text-align: left;
        padding-right: 30px;
    }

    .page-faq__hero-image-wrapper {
        flex-shrink: 0;
        max-width: 600px;
    }

    .page-faq__main-title {
        font-size: 2.8rem;
    }

    .page-faq__intro-text {
        font-size: 1.15rem;
    }

    .page-faq__faq-list {
        padding: 60px 50px;
    }

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

    .page-faq__accordion-header {
        font-size: 1.25rem;
    }

    .page-faq__accordion-content p {
        font-size: 1rem;
    }

    .page-faq__contact-section {
        padding: 60px 50px;
    }
}

@media (max-width: 767px) {
    .page-faq__hero-section {
        padding: 10px 15px 30px;
    }

    .page-faq__faq-list {
        padding: 30px 15px;
    }

    .page-faq__accordion-header {
        padding: 15px 20px;
    }

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

    .page-faq__accordion-content p {
        padding-bottom: 10px;
        font-size: 0.9rem;
    }

    .page-faq__contact-section {
        padding: 30px 15px;
    }

    .page-faq__hero-image,
    .page-faq__illustration-image,
    .page-faq__contact-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}