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

.page-faq__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.page-faq__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

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

.page-faq__hero-content {
    padding: 20px;
    max-width: 800px;
    z-index: 1;
}

.page-faq__main-title {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #FFB04D;
    margin-bottom: 15px;
}

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

.page-faq__hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.page-faq__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.page-faq__button--primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
}

.page-faq__button--primary:hover {
    background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
    transform: translateY(-2px);
}

.page-faq__button--secondary {
    background-color: transparent;
    border: 2px solid #A84F0C;
    color: #FFA53A;
}

.page-faq__button--secondary:hover {
    background-color: rgba(255, 165, 58, 0.1);
    border-color: #FFA53A;
    color: #FFB04D;
    transform: translateY(-2px);
}

.page-faq__accordion-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.page-faq__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFB04D;
    text-align: center;
    margin-bottom: 30px;
}

.page-faq__accordion-item {
    background-color: #17191F;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #A84F0C;
    overflow: hidden;
}

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

.page-faq__accordion-header:hover {
    background-color: rgba(255, 165, 58, 0.05);
}

.page-faq__accordion-header[aria-expanded="true"] {
    background-color: rgba(255, 165, 58, 0.1);
}

.page-faq__accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.page-faq__accordion-icon::before,
.page-faq__accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #FFA53A;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page-faq__accordion-icon::before {
    width: 2px;
    height: 14px;
}

.page-faq__accordion-icon::after {
    width: 14px;
    height: 2px;
}

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

.page-faq__accordion-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-faq__accordion-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF3E6;
}

.page-faq__contact-cta-section {
    background-color: #17191F;
    border-radius: 10px;
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid #A84F0C;
}

.page-faq__contact-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FFB04D;
    margin-bottom: 15px;
}

.page-faq__contact-cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #FFF3E6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

    .page-faq__hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .page-faq__button {
        width: 100%;
        padding: 10px 20px;
    }

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

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

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

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

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

    .page-faq__contact-cta-section {
        padding: 30px 15px;
        margin: 40px auto;
    }

    .page-faq__accordion-section {
        margin: 30px auto;
        padding: 15px;
    }

    .page-faq img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-faq__main-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .page-faq__section-title,
    .page-faq__contact-cta-title {
        font-size: 1.5rem;
    }

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