.page-faq__hero-section {
    position: relative;
    background-color: #26A9E0; /* Primary color */
    color: #FFFFFF;
    padding-bottom: 40px;
}

.page-faq__hero-banner {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.page-faq__hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/5;
    object-fit: cover;
    object-position: center;
}

.page-faq__hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    text-align: center;
}

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

.page-faq__description {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__cta-button {
    display: inline-block;
    background-color: #EA7C07; /* Login color for CTA */
    color: #FFFFFF;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    border: 2px solid transparent;
}

.page-faq__cta-button:hover {
    background-color: #d86c06;
    border-color: #FFFFFF;
}

.page-faq__content-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-faq__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #26A9E0;
    text-align: center;
    padding: 40px 0 20px;
    margin-bottom: 20px;
    position: relative;
}

.page-faq__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #EA7C07;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-faq__intro-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-faq__accordion-container {
    margin-bottom: 40px;
}

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

.page-faq__accordion-item:last-child {
    border-bottom: none;
}

.page-faq__accordion-header {
    margin: 0;
}

.page-faq__accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.page-faq__accordion-button:hover {
    color: #26A9E0;
}

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

.page-faq__accordion-icon::before,
.page-faq__accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #26A9E0;
    transition: transform 0.3s ease;
}

.page-faq__accordion-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.page-faq__accordion-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.page-faq__accordion-button[aria-expanded="true"] .page-faq__accordion-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.page-faq__accordion-content {
    padding: 0 20px 20px;
    background-color: #F9F9F9;
    border-top: 1px solid #EEEEEE;
    display: none;
    overflow: hidden;
    color: #555555;
    line-height: 1.6;
    font-size: 1rem;
}

.page-faq__accordion-content p {
    margin-top: 15px;
    margin-bottom: 15px;
}

.page-faq__accordion-content a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: 500;
}

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

.page-faq__accordion-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #26A9E0;
    color: #FFFFFF;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.page-faq__accordion-link:hover {
    background-color: #1e87c0;
}

.page-faq__game-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 10px;
}

.page-faq__game-list li {
    margin-bottom: 5px;
}

.page-faq__game-list a {
    color: #26A9E0;
    text-decoration: none;
}

.page-faq__game-list a:hover {
    text-decoration: underline;
}

.page-faq__highlight {
    color: #EA7C07;
    font-weight: 600;
}

.page-faq__additional-info {
    text-align: center;
    padding: 40px 20px;
    background-color: #F0F8FF;
    border-top: 1px solid #E0E0E0;
    border-radius: 0 0 12px 12px;
}

.page-faq__sub-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-faq__additional-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__contact-button,
.page-faq__help-center-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin: 0 10px 15px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-faq__contact-button {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-faq__contact-button:hover {
    background-color: #1e87c0;
    border-color: #1e87c0;
}

.page-faq__help-center-button {
    background-color: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-faq__help-center-button:hover {
    background-color: #E0F2F7;
    color: #1e87c0;
    border-color: #1e87c0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-faq__hero-content {
        padding: 15px 15px 0;
    }

    .page-faq__main-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .page-faq__description {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }

    .page-faq__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-faq__content-section {
        margin: 20px auto;
        padding: 0 15px;
    }

    .page-faq__section-title {
        padding: 30px 0 15px;
    }

    .page-faq__intro-text {
        margin-bottom: 30px;
    }

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

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

    .page-faq__contact-button,
    .page-faq__help-center-button {
        display: block;
        width: calc(100% - 20px);
        margin: 0 auto 15px;
    }
}

@media (max-width: 480px) {
    .page-faq__hero-banner img {
        aspect-ratio: 16/9;
    }
    .page-faq__cta-button {
        width: calc(100% - 40px);
        box-sizing: border-box;
    }
}

/* Ensure content area images are not too small in CSS */
.page-faq__accordion-content img,
.page-faq__additional-info img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
    display: block;
    margin: 15px auto;
    object-fit: cover;
}

/* Mobile overflow prevention */
@media (max-width: 768px) {
    .page-faq__content-section,
    .page-faq__hero-section {
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    .page-faq__content-section img {
        max-width: 100%;
        height: auto;
    }
}