.page-faq {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    padding-top: 10px; /* Small top padding for the first section */
}

.page-faq__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

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

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

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

.page-faq__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFF6D6;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 769px) {
    .page-faq__main-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
}

@media (max-width: 768px) {
    .page-faq__main-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
}

.page-faq__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-faq__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

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

.page-faq__button--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    border: 1px solid #FFD36B;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.3);
}

.page-faq__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.5);
}

.page-faq__button--secondary {
    background-color: #111111;
    border: 1px solid #3A2A12;
}

.page-faq__button--secondary:hover {
    background-color: #1a1a1a;
    border-color: #F2C14E;
}

.page-faq__button--link {
    background: none;
    border: none;
    text-decoration: underline;
    color: #FFD36B;
    padding: 0;
    margin-top: 10px;
}

.page-faq__button--link:hover {
    color: #F2C14E;
}

.page-faq__faq-section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.page-faq__section-title {
    font-size: 2.2rem;
    color: #FFF6D6;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-faq__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-faq__faq-item:hover {
    background-color: #1a1a1a;
    border-color: #F2C14E;
}

.page-faq__faq-question {
    font-size: 1.25rem;
    color: #FFD36B;
    margin: 0;
    padding-right: 30px;
    position: relative;
}

.page-faq__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: normal;
    color: #FFF6D6;
    transition: transform 0.3s ease;
}

.page-faq__faq-item.active .page-faq__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-faq__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    color: #FFF6D6;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.page-faq__faq-item.active .page-faq__faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    margin-top: 15px;
}

.page-faq__faq-answer p {
    margin-bottom: 10px;
}

.page-faq__contact-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #111111;
    border-top: 1px solid #3A2A12;
    padding: 60px 20px;
    text-align: center;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 769px) {
    .page-faq__contact-cta-section {
        flex-direction: row;
        justify-content: center;
        text-align: left;
        padding: 80px 40px;
        gap: 60px;
    }
    .page-faq__contact-cta-content {
        max-width: 50%;
    }
}

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

.page-faq__contact-cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-faq__contact-cta-image-wrapper {
    flex-shrink: 0;
    width: 100%;
    max-width: 400px;
}

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

/* Mobile specific styles */
@media (max-width: 768px) {
    .page-faq__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-faq__button {
        width: 100%;
    }

    .page-faq__hero-section,
    .page-faq__faq-section,
    .page-faq__contact-cta-section {
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-faq__faq-question {
        font-size: 1.1rem;
    }

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

    .page-faq__contact-cta-image-wrapper {
        margin-top: 30px;
    }

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