/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.logo img {
    height: 50px; /* You can adjust this height */
    width: auto;
    vertical-align: middle; /* Helps align the image nicely with the nav links */
}
.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header Section */
.header-section {
    background: #ffffff;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2a9d8f;
}

.navigation-links a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

.navigation-links a:hover {
    color: #2a9d8f;
}

/* Hero Banner */
.hero-banner {
    background-image: url('banner.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 600px; /* Set a minimum height for the banner */
    display: flex; /* Enable Flexbox */
    align-items: flex-end; /* Align items to the bottom */
    justify-content: center; /* Center items horizontally */
    padding: 2rem 0; /* Add some padding at the bottom */
}

.hero-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #2a9d8f;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
}

.btn:hover {
    background: #264653;
}

.btn-secondary {
    background: #f4a261;
}

/* About Us Section */
.welcome-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.welcome-content h3 {
    font-size: 1.2rem;
    color: #2a9d8f;
    margin-top: -10px;
}
.welcome-image {
    text-align: center;
    margin-top: 50px;
}

.welcome-image img {
    width: 100%;
    border-radius: 8px;
    margin-top: 20px;
}

/* New styles for the "Who We Are" section */
.who-we-are-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto; /* Center the content */
}
.what-we-do-section {
    padding: 4rem 0;
    text-align: center; /* This centers the h2 heading */
    background: #f4f4f4; /* Optional: adds a different background color */
}

.what-we-do-section h2 {
    margin-bottom: 3rem; /* Adds space between the title and the icons */
}
/* Add this to your existing @media block for responsiveness */
@media (max-width: 768px) {
    /* ... (keep existing responsive rules) ... */

    .welcome-section {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
        text-align: center;
    }
}

.key-points {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.point {
    max-width: 200px;
}

.icon {
    width: 50px;
    height: 50px;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 2rem 0;
    background: #f4f4f4;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Get Involved Section */
.get-involved-section {
    padding: 2rem 0;
    text-align: center;
    background: #264653;
    color: #fff;
}

/* Form Sections */
.form-section {
    padding: 2rem 0;
    background: #fff;
}

form {
    display: flex;
    flex-direction: column;
}

form input, form select, form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.checkbox-group {
    margin-bottom: 10px;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

/* Footer Section */
.footer-section {
    background: #264653;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-section .container {
        flex-direction: column;
    }

    .navigation-links {
        margin-top: 1rem;
    }

    .key-points, .two-column-layout {
        flex-direction: column;
        align-items: center;
    }
}