/* 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"); /* Using 4.jpg as the background */
    background-size: cover;
    background-position: center;
    height: 50vh;
    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); /* Dark overlay for text readability */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ffcb70; /* Golden accent to stand out */
}

.hero-content p {
    font-size: 1.2rem;
    color: #ffffff;
}

/* Vision Section */
.vision-section {
    background-color: #e0f7fa;
    padding: 40px 20px;
    text-align: center;
}

.vision-section h2 {
    color: #00796b;
    font-size: 2rem;
    margin-bottom: 10px;
}

.vision-section p {
    font-size: 1.1rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
}

/* Core Values Section */
.core-values-section {
    background-color: #fff3e0;
    padding: 40px 20px;
    text-align: center;
}

.core-values-section h2 {
    color: #e65100;
    font-size: 2rem;
    margin-bottom: 10px;
}

.core-values-section p {
    font-size: 1.1rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
}

.core-values-section ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 20px auto;
}

.core-values-section li {
    font-size: 1.1rem;
    color: #ff8a65;
    margin: 10px 0;
}

/* Brand Promises Section */
.brand-promises-section {
    background-color: #f3e5f5;
    padding: 40px 20px;
    text-align: center;
}

.brand-promises-section h2 {
    color: #6a1b9a;
    font-size: 2rem;
    margin-bottom: 10px;
}

.brand-promises-section ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 20px auto;
}

.brand-promises-section li {
    font-size: 1.1rem;
    color: #ba68c8;
    margin: 10px 0;
}

/* Conceptual Definition Section */
.conceptual-definition-section {
    background-color: #e3f2fd;
    padding: 40px 20px;
    text-align: center;
}

.conceptual-definition-section h2 {
    color: #1565c0;
    font-size: 2rem;
    margin-bottom: 10px;
}

.conceptual-definition-section ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 20px auto;
}

.conceptual-definition-section li {
    font-size: 1.1rem;
    color: #64b5f6;
    margin: 10px 0;
}

/* Ministry Overview Section */
.ministry-overview-section {
    background-color: #f1f8e9;
    padding: 40px 20px;
    text-align: center;
}

.ministry-overview-section h2 {
    color: #33691e;
    font-size: 2rem;
    margin-bottom: 10px;
}

.ministry-overview-section p {
    font-size: 1.1rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.ministry-overview-section ol {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 20px;
    color: #558b2f;
}

.ministry-overview-section li {
    font-size: 1.1rem;
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}
