/* style/faq.css */

/* Base Styles for .page-faq */
.page-faq {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background #121212 */
    background-color: #121212; /* Ensure consistency with body background from shared.css */
}

.page-faq__section {
    padding: 60px 20px;
    position: relative;
    z-index: 1; /* Ensure content is above hero overlay if any */
}

.page-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Add some padding for smaller screens */
    box-sizing: border-box;
}

.page-faq__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold color for titles */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-faq__section-text {
    font-size: 1.1em;
    color: #f0f0f0; /* Slightly lighter text for readability */
    text-align: center;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__section-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

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

/* Hero Section */
.page-faq__hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    box-sizing: border-box;
}