.page-faq {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
}

.page-faq__hero-section {
    position: relative;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

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

.page-faq__hero-content {
    max-width: 960px;
    padding: 0 20px 40px;
    position: relative;
    z-index: 2;
}

.page-faq__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFD36B;
    margin-bottom: 15px;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.page-faq__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    white-space: nowrap;
}

.page-faq__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-faq__accordion-section {
    padding: 60px 20px;
    max-width: 960px;
    margin: 0 auto;
}

.page-faq__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #F2C14E;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-faq__accordion-container {
    border: 1px solid #3A2A12;
    border-radius: 10px;
    overflow: hidden;
    background-color: #111111;
}

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

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

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

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

.page-faq__accordion-header[aria-expanded="true"] {
    background-color: #1A1A1A;
}

.page-faq__accordion-title {
    margin: 0;
    color: #FFF6D6;
}

.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: #F2C14E;
    transition: transform 0.3s ease;
}

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

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

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

.page-faq__accordion-content {
    background-color: #1A1A1A;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    font-size: 1rem;
    line-height: 1.6;
    color: #E5E5E5;
}

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

.page-faq__accordion-content a {
    color: #F2C14E;
    text-decoration: underline;
}

.page-faq__cta-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.page-faq__cta-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: #FFD36B;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-faq__cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #E5E5E5;
}

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

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

    .page-faq__hero-description {
        font-size: 1rem;
    }

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

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

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

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

    .page-faq__cta-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .page-faq__cta-description {
        font-size: 1rem;
    }

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