.page-faq {
    background-color: #140C0C; /* Background */
    color: #FFF1E8; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-faq__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Default to column for mobile */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 40px; /* Small top padding, more bottom */
    overflow: hidden;
    background-color: #2A1212; /* Card BG */
}

.page-faq__hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px; /* Space between image and content */
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-faq__hero-content {
    max-width: 960px;
    padding: 0 20px;
}

.page-faq__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    color: #FFF1E8; /* Text Main */
    margin-bottom: 15px;
}

.page-faq__hero-description {
    font-size: 1.1rem;
    color: #FFF1E8; /* Text Main */
    margin-bottom: 30px;
}

.page-faq__section {
    padding: 60px 20px;
    border-bottom: 1px solid #6A1E1E; /* Border */
}

.page-faq__section:last-of-type {
    border-bottom: none;
}

.page-faq__container {
    max-width: 960px;
    margin: 0 auto;
}

.page-faq__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Responsive font size */
    font-weight: 700;
    color: #F3C54D; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-faq__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFB04A 0%, #D86A14 100%); /* Button gradient for accent */
    border-radius: 2px;
}

.page-faq__accordion-item {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-faq__accordion-question {
    font-size: 1.2rem;
    color: #FFF1E8; /* Text Main */
    font-weight: 600;
    padding: 18px 25px;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2A1212; /* Card BG */
    transition: background-color 0.3s ease;
}

.page-faq__accordion-question:hover {
    background-color: #3d1c1c; /* Slightly lighter on hover */
}

.page-faq__accordion-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #F3C54D; /* Gold */
    transition: transform 0.3s ease;
}

.page-faq__accordion-item.is-active .page-faq__accordion-question::after {
    transform: rotate(45deg);
}

.page-faq__accordion-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #140C0C; /* Background */
}

.page-faq__accordion-item.is-active .page-faq__accordion-answer {
    max-height: 500px; /* Adjust as needed */
    padding: 15px 25px 25px;
}

.page-faq__accordion-answer p {
    margin: 0;
    font-size: 1rem;
    color: #FFF1E8; /* Text Main */
}

.page-faq__accordion-answer a {
    color: #F3C54D; /* Gold */
    text-decoration: none;
}

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

.page-faq__contact-grid {
    display: flex;
    flex-direction: column; /* Default to column for mobile */
    gap: 40px;
    align-items: center;
    text-align: center;
}

.page-faq__contact-content {
    flex: 1;
}

.page-faq__contact-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.page-faq__contact-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
    object-fit: cover;
}

.page-faq__contact-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFF1E8; /* Text Main */
}

.page-faq__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    color: #FFF1E8; /* Text Main */
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    min-width: 200px; /* Ensure button is not too small */
}

.page-faq__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 176, 74, 0.3);
}

.page-faq__additional-links {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #FFF1E8; /* Text Main */
}

.page-faq__additional-links a {
    color: #F3C54D; /* Gold */
    text-decoration: none;
}

.page-faq__additional-links a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (min-width: 769px) {
    .page-faq__hero-section {
        flex-direction: column; /* Keep column for hero, image above text */
        padding-top: 50px; /* More padding on desktop */
    }

    .page-faq__contact-grid {
        flex-direction: row; /* Row layout for contact section on desktop */
        text-align: left;
    }

    .page-faq__contact-content {
        padding-right: 40px;
    }

    .page-faq__contact-image-wrapper {
        justify-content: flex-end; /* Align image to right */
    }
}

@media (max-width: 768px) {
    .page-faq__hero-image,
    .page-faq__contact-image {
        max-width: 100%;
        height: auto;
    }
    .page-faq__accordion-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    .page-faq__accordion-answer {
        padding: 0 20px;
    }
    .page-faq__accordion-item.is-active .page-faq__accordion-answer {
        padding: 10px 20px 20px;
    }
    .page-faq__section {
        padding: 40px 15px;
    }
    .page-faq__button {
        width: 100%;
        max-width: 300px; /* Constrain button width on mobile */
    }
}

/* Ensure content images within .page-faq are not too small */
.page-faq img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
}