/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f9fc;
}

/* 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: #ffcb70; /* Golden accent */
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.5rem;
    color: #ffffff;
}

/* Section Styling */
.about-section, .services-section, .mission-section, .purpose-section, .commitment-section, .message-section {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.about-section h2 {
    color: #ff9f1c; /* Bright orange */
}

.services-section h2 {
    color: #00a6a6; /* Teal */
}

.mission-section h2 {
    color: #0366d6; /* Deep blue */
}

.purpose-section h2 {
    color: #2ca02c; /* Green */
}

.commitment-section h2 {
    color: #d62728; /* Red */
}

.message-section h2 {
    color: #8c564b; /* Maroon */
}

p, ul, ol {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin: 10px 0;
}

/* List Styling */
.mission-section ul, .purpose-section ul, .message-section ol {
    padding-left: 20px;
}

.mission-section ul li, .purpose-section ul li, .message-section ol li {
    margin-bottom: 10px;
}

/* Section Colors */
.mission-section {
    background-color: #eaf4fc;
}

.purpose-section {
    background-color: #f2f9e6;
}

.commitment-section {
    background-color: #fde8e8;
}

.message-section {
    background-color: #f9e9e9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}
