/* Navigation Styles */
#mainNav {
    background-color: #fff; /* Adjust the color as needed */
    padding: 1rem 0; /* Example padding */
}

#mainNav .navbar-brand {
    color: #007bff; /* Adjust the color as needed */
    font-weight: bold; /* Example font-weight */
}

/* Header Styles */
.header {
    background: #6c757d; /* Adjust the background color as needed */
    color: white; /* Example text color */
    padding: 2rem 0; /* Example padding */
}
.blue-gradient-header {
    background: linear-gradient(to right, #6dd5ed, #2193b0); /* Light blue gradient */
    color: white;
    padding: 2rem 0;
    text-align: center; /* Center the text */
}

/* Section Styles */
section {
    padding: 4rem 0; /* Example padding for all sections */
}

/* Specific Sections */
#benefits, #who {
    background-color: #f8f9fa; /* Light background for these sections */
}

/* Benefits Section */
#benefits h2.section-heading,
#who h2.section-heading {
    color: #007bff; /* Example heading color */
    margin-bottom: 1.5rem; /* Example margin */
}

/* Team Member Styles */
.team-member {
    text-align: center; /* Centering content */
    margin-bottom: 1.5rem; /* Spacing between team members */
}

.team-member img {
    border-radius: 50%; /* Making images circular */
    max-width: 150px; /* Adjust the size as needed */
}

/* Footer Styles */
footer {
    background: #343a40; /* Dark background */
    color: white; /* Light text color */
    padding: 2rem 0; /* Padding */
}

/* Custom Button Style */
.btn-primary {
    background-color: #007bff; /* Adjust the button color as needed */
    border-color: #007bff; /* Border color */
    color: white; /* Text color */
}

/* Responsive Design Tweaks */
@media (max-width: 768px) {
    /* Example: Stack navbar items vertically on small screens */
    #mainNav .navbar-nav {
        flex-direction: column;
    }
}

/* Contact Section Styling */
#contact {
    padding: 4rem 0;
}

#contact .form-group {
    margin-bottom: 1rem;
}

#contact .form-control {
    border-radius: 0;
    border: 1px solid #ccc;
}

#contact .btn-primary {
    margin-top: 1rem;
    padding: 10px 20px;
}

#contact h3 {
    margin-bottom: 1rem;
}

