/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

/* Navigation Bar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-bottom: 2px solid #000;
    padding: 1rem 2rem;
}

.navbar-logo {
    width: 100%;
    max-width: 250px; /* Default max width for mobile */
    height: auto;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar ul li {
    padding: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.mission-statement {
    background-color: #f8f9fa;
    padding: 20px;
    margin-top: 20px;
    border-left: 5px solid #ff0000; /* Adds a colored bar on the left for emphasis */
    font-family: Arial, sans-serif;
}

.mission-statement h2 {
    color: #333;
    margin-bottom: 15px;
}

.mission-statement p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}


/* Responsive Styles with Flexbox */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .navbar ul {
        flex-direction: column;
        width: 100%;
    }

    .navbar ul li {
        text-align: center;
        padding: 10px 0;
    }
}

/* Larger screens */
@media (min-width: 768px) {
    .navbar-logo {
        max-width: 300px; /* Slightly larger logo for desktop */
    }
}

/* Ensure link hover and focus states for accessibility */
.navbar ul li a:hover,
.navbar ul li a:focus {
    color: #007bff; /* Example focus color: blue */
}
