/* style/frequently-asked-questions.css */

/* Base styles for the page content */
.page-frequently-asked-questions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background #FFFFFF */
    background-color: #ffffff; /* Explicitly set for content area */
}

/* Hero Section */
.page-frequently-asked-questions__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-frequently-asked-questions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-frequently-asked-questions__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-frequently-asked-questions__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    margin: 0 auto;
}

.page-frequently-asked-questions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
}

.page-frequently-asked-questions__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-frequently-asked-questions__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* General Buttons */
.page-frequently-asked-questions__btn-primary,
.page-frequently-asked-questions__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-frequently-asked-questions__btn-primary {
    background-color: #017439; /* Brand primary color */
    color: #ffffff;
    border: 2px solid #017439;
}

.page-frequently-asked-questions__btn-primary:hover {
    background-color: #005f2e; /* Darker green on hover */
    border-color: #005f2e;
}

.page-frequently-asked-questions__btn-secondary {
    background-color: #C30808; /* Custom color for Login/Register buttons */
    color: #ffffff; /* Ensure contrast with #C30808 background */
    border: 2px solid #C30808;
}

.page-frequently-asked-questions__btn-secondary:hover {
    background-color: #a30606; /* Darker red on hover */
    border-color: #a30606;
}

/* Content Area */
.page-frequently-asked-questions__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #ffffff; /* Explicitly set for content area */
    color: #333333;
}