.page-faq {
    padding-top: 10px; /* Small top padding to ensure content starts below header */
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
}

.page-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-faq__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding-bottom: 20px; /* Space between image and text on small screens */
}

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

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

.page-faq__main-title {
    color: #FFD36B;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

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

.page-faq__hero-button,
.page-faq__contact-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
    border: none;
    cursor: pointer;
}

.page-faq__hero-button:hover,
.page-faq__contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-faq__faq-section {
    margin-bottom: 60px;
}

.page-faq__section-title {
    color: #FFD36B;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.page-faq__accordion {
    margin-top: 20px;
}

.page-faq__accordion-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

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

.page-faq__accordion-header {
    display: block;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: bold;
    color: #FFF6D6;
    position: relative;
    user-select: none;
    list-style: none;
    transition: color 0.3s ease;
}

.page-faq__accordion-header::-webkit-details-marker {
    display: none;
}

.page-faq__accordion-header::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FFD36B;
    transition: transform 0.3s ease;
}

.page-faq__accordion-item[open] .page-faq__accordion-header::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.page-faq__accordion-content {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: #E5E5E5;
}

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

.page-faq__accordion-content a {
    color: #F2C14E;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.page-faq__contact-section {
    background-color: #111111;
    padding: 60px 0;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-faq__contact-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-faq__contact-content {
    max-width: 700px;
    padding: 0 20px;
}

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

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

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-faq__hero-section {
        flex-direction: row;
        text-align: left;
        padding-bottom: 0;
        margin-bottom: 60px;
    }

    .page-faq__hero-image {
        width: 50%;
        margin-right: 40px;
        margin-bottom: 0;
    }

    .page-faq__hero-content {
        text-align: left;
        padding: 0;
        width: 50%;
    }

    .page-faq__contact-section {
        flex-direction: row;
        text-align: left;
        padding: 60px;
        gap: 50px;
    }

    .page-faq__contact-image {
        width: 40%;
        margin-bottom: 0;
    }

    .page-faq__contact-content {
        width: 60%;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .page-faq__hero-image, .page-faq__contact-image {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content area images are not smaller than 200px */
.page-faq img {
    min-width: 200px;
    min-height: 200px;
}

@media (max-width: 768px) {
    .page-faq img {
        max-width: 100%;
        height: auto;
    }
}