/* style/faq.css */
:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-color-dark-bg: #FFFFFF;
    --text-color-light-bg: #333333;
    --button-register-bg: #C30808;
    --button-login-bg: #C30808; /* Used for secondary button border/text */
    --button-register-text: #FFFFFF; /* Adjusted for WCAG AA contrast */
    --button-login-text: #FFFFFF;
    --body-background: var(--site-background, #f5f5f5);
}

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

/* Adjust text color if body background is dark (assuming shared.css might set a dark --site-background) */
.page-faq.page-content[style*="background-color:#0d0d0d"],
.page-faq.page-content[style*="background-color:#000000"] {
    color: var(--text-color-dark-bg);
}

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

.page-faq__hero-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    color: var(--text-color-dark-bg);
    background-color: var(--primary-color);
    padding-top: var(--header-offset, 120px);
    overflow: hidden;
}

.page-faq__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-color-dark-bg);
    line-height: 1.2;
}

.page-faq__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__hero-image-wrapper {
    margin-bottom: 30px;
}

.page-faq__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    width: 800px; /* Example display width */
    height: 450px; /* Example display height */
    min-width: 200px;
    min-height: 200px;
}

.page-faq__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}