/* Hero Section */
.hero-section {
    background-image: url("/gainforchrist/images/4.jpg");
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #ffd700; /* Golden accent */
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.5rem;
    color: #ffffff;
}

/* FAQ Section */
.faq-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #006400; /* Dark Green */
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ffd700; /* Golden accent */
}

.faq-item:nth-child(odd) {
    border-left-color: #0066cc; /* Blue for odd items */
}

.faq-item:nth-child(even) {
    border-left-color: #ff4500; /* Red for even items */
}

.faq-question {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.faq-answer a {
    color: #0066cc;
    text-decoration: underline;
}

.faq-answer a:hover {
    text-decoration: none;
    color: #003399;
}
