/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f9fc;
    color: #333;
}

/* Hero Section */
.hero-section {
    background-image: url("/gainforchrist/images/2.jpg");
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    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.5); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: #ffcb70;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
}

/* School Overview Section */
.school-overview {
    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);
    text-align: center;
}

.school-overview h2 {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 15px;
}

.school-overview p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Programs Offered Section */
.programs-offered {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #f9f9ff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.programs-offered h2 {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 15px;
    text-align: center;
}

.programs-offered p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.programs-offered ul {
    list-style-type: none;
    padding: 0;
}

.programs-offered ul li {
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
    color: #333;
}

.programs-offered ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: #ff8a65;
}

.programs-offered ul li strong {
    color: #4a90e2;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #4a90e2;
    color: white;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.1rem;
    color: #4a90e2;
    background-color: #ffcb70;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #ffb347;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .school-overview, .programs-offered {
        padding: 15px;
    }

    .cta-section h2, .programs-offered h2 {
        font-size: 1.8rem;
    }
}
