.page-faq {
    font-family: Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--background);
    line-height: 1.6;
}

.page-faq__hero-section {
    position: relative;
    text-align: center;
    padding-bottom: 30px; /* Minimal padding-top handled by body in shared.css */
}

.page-faq__hero-image-wrapper {
    overflow: hidden;
    max-height: 675px;
}

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

.page-faq__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: rgba(10, 10, 10, 0.8); /* Semi-transparent background for readability */
    border-radius: 8px;
    transform: translateY(-50px); /* Lift content slightly over the image for visual interest */
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-faq__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-faq__intro-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-main);
}

.page-faq__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--button-color);
    color: var(--background);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

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

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

.page-faq__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

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

.page-faq__faq-item {
    background-color: var(--card-b-g);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-faq__faq-item[open] {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.page-faq__faq-question {
    display: block;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: background-color 0.3s ease;
    list-style: none; /* Hide default marker */
}

.page-faq__faq-question::-webkit-details-marker {
    display: none;
}

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

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

.page-faq__faq-question:hover {
    background-color: rgba(242, 193, 78, 0.05);
}

.page-faq__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--text-main);
}

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

.page-faq__answer-cta {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--background);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.page-faq__answer-cta:hover {
    background-color: var(--primary-color);
}

.page-faq__additional-info-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 20px;
    text-align: center;
}

.page-faq__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-faq__info-card {
    background-color: var(--card-b-g);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq__info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-faq__info-image {
    width: 100%;
    max-width: 400px; /* Constrain image width */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-faq__info-card-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-faq__info-card p {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-faq__card-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--secondary-color);
    color: var(--background);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.page-faq__card-button:hover {
    background-color: var(--primary-color);
}

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

    .page-faq__main-title {
        font-size: 2rem;
    }

    .page-faq__intro-text {
        font-size: 1rem;
    }

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

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

    .page-faq__faq-question {
        font-size: 1.1rem;
        padding: 18px 20px;
    }

    .page-faq__faq-question::after {
        right: 20px;
    }

    .page-faq__faq-answer {
        padding: 0 20px 18px;
        font-size: 0.95rem;
    }

    .page-faq__info-grid {
        grid-template-columns: 1fr;
    }

    .page-faq__info-card {
        padding: 25px;
    }

    .page-faq__info-card-title {
        font-size: 1.3rem;
    }

    .page-faq__info-card p {
        font-size: 0.95rem;
    }

    .page-faq__info-image {
        max-width: 100%;
        height: auto; /* Ensure images are responsive */
        min-width: 200px;
        min-height: 200px;
    }

    .page-faq__faq-item {
        margin: 0 10px;
    }

    .page-faq__faq-list {
        margin: 0 10px;
    }

    .page-faq__additional-info-section {
        margin: 50px 10px;
    }

    .page-faq__info-grid {
        margin: 0 10px;
    }

    /* Mobile image overflow prevention */
    .page-faq__hero-image, .page-faq__info-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-faq__main-title {
        font-size: 1.8rem;
    }

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

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

    .page-faq__faq-answer {
        font-size: 0.9rem;
    }

    .page-faq__cta-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .page-faq__info-card-title {
        font-size: 1.2rem;
    }
}