.page-faq__hero-section {
    background-color: #F5F7FA;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 40px;
    text-align: center;
}

.page-faq__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 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__hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.page-faq__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #333333;
    margin-bottom: 15px;
}

.page-faq__description {
    color: #333333;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-faq__cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

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

.page-faq__faq-list-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
}

.page-faq__section-title {
    color: #E53935;
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 40px;
}

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

.page-faq__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-faq__faq-question {
    color: #333333;
    font-size: 1.2em;
    padding: 18px 25px;
    cursor: pointer;
    background-color: #F5F7FA;
    border-bottom: 1px solid #E0E0E0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-faq__faq-question::after {
    content: '+';
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-faq__faq-question.active::after {
    content: '-';
    transform: rotate(0deg);
}

.page-faq__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #333333;
    background-color: #FFFFFF;
}

.page-faq__faq-answer.active {
    max-height: 300px; /* Adjust based on expected content length */
    padding: 15px 25px 25px;
}

.page-faq__faq-answer p {
    margin-bottom: 0;
    line-height: 1.6;
}

.page-faq__faq-answer a {
    color: #E53935;
    text-decoration: none;
}

.page-faq__faq-answer a:hover {
    text-decoration: underline;
}

.page-faq__support-cta-section {
    background-color: #F5F7FA;
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.page-faq__support-content {
    max-width: 500px;
    text-align: center;
}

.page-faq__support-title {
    color: #333333;
    font-size: 2em;
    margin-bottom: 20px;
}

.page-faq__support-text {
    color: #333333;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-faq__contact-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

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

.page-faq__support-image-wrapper {
    max-width: 600px;
    width: 100%;
}

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

.page-faq__related-links-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
    text-align: center;
}

.page-faq__related-links-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.page-faq__related-link-card {
    display: block;
    background-color: #F5F7FA;
    color: #333333;
    text-decoration: none;
    padding: 25px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid #E0E0E0;
}

.page-faq__related-link-card:hover {
    background-color: #E53935;
    color: #FFFFFF;
    border-color: #E53935;
}

@media (max-width: 768px) {
    .page-faq__hero-section {
        padding-bottom: 20px;
    }

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

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

    .page-faq__faq-list-section,
    .page-faq__support-cta-section,
    .page-faq__related-links-section {
        padding: 40px 15px;
    }

    .page-faq__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

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

    .page-faq__faq-answer.active {
        padding: 10px 20px 20px;
    }

    .page-faq__support-cta-section {
        flex-direction: column;
        gap: 20px;
    }

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

    .page-faq__support-text {
        font-size: 1em;
    }

    .page-faq__related-links-grid {
        grid-template-columns: 1fr;
    }

    .page-faq__hero-image,
    .page-faq__support-image,
    .page-faq__faq-answer img {
        max-width: 100%;
        height: auto;
    }

    .page-faq img {
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px;
    }
}