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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa; /* Light background */
    color: #343a40; /* Dark text */
    line-height: 1.6;
}

/* Navigation Styles */
nav {
    background-color: #ffffff; /* White background */
    color: #343a40;
    padding: 20px 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    position: sticky; /* Makes nav sticky */
    top: 0; /* Sticks to the top */
    z-index: 1000; /* Keeps it on top of other elements */
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

nav h1 {
    font-size: 24px;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #005f73; /* Primary color */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #94d2bd; /* Lighter color for hover effect */
}

/* Section Styles */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h3 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #005f73; /* Title color */
    border-bottom: 2px solid #005f73; /* Underline effect */
    padding-bottom: 10px;
}

/* Improved List Styles */
ul {
    list-style-type: none;
    padding-left: 0; /* Remove default padding */
}

ul li {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef; /* Light separator */
    transition: background-color 0.3s ease;
}

ul li:last-child {
    border-bottom: none;
}

ul li:hover {
    background-color: #f1f1f1; /* Light gray background on hover */
}

ul strong {
    color: #005f73; /* Emphasizing important text */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column; /* Stack items on smaller screens */
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column; /* Stack menu items */
        padding: 10px 0; /* Add padding for touch targets */
    }

    nav ul li {
        margin-left: 0; /* Reset left margin for stacked items */
        margin-bottom: 10px; /* Space between items */
    }

    h3 {
        font-size: 24px; /* Smaller title on mobile */
    }

    .container {
        padding: 20px; /* Less padding for smaller screens */
    }
}

/* Footer Styles */
footer {
    background-color: #005f73; /* Primary color */
    color: #000000; /* White text color */
    text-align: center;
    padding: 20px 0; /* Vertical padding for spacing */
    margin-top: 20px; /* Space above the footer */
}

/* Additional Style for the Footer to Improve Visibility */
footer p {
    margin: 0; /* Remove default margin for paragraphs in footer */
    font-size: 16px; /* Set a reasonable font size */
    font-weight: 400; /* Normal font weight for better readability */
}
