/* General Styles */
body {
    font-family: 'Nunito', sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    color: #333;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #333;
    margin-right: 1rem;
}

.navbar-nav .nav-link.active {
    color: #556ee6;
}

.btn-primary {
    background-color: #556ee6;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #4455cc;
}

/* About Section */
.about-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.about-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.about-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Info Section (Who We Are and Our Mission side by side) */
.info-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.info-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.info-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Flexbox adjustments */
.info-section .row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-section .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {

    .about-section h1,
    .info-section h2 {
        font-size: 2rem;
    }

    .about-section p,
    .info-section p {
        font-size: 1rem;
    }

    .info-section .row {
        text-align: center;
    }
}