/* General Body Styling */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #e0f7fa;  /* Light blue background */
    color: #003b46;             /* Dark text color */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header Styling */
header {
    background: #006064;       /* Teal background */
    color: #ffffff;            /* White text */
    padding: 30px 20px;
    text-align: center;
}

/* Navigation Styling */
nav {
    margin-top: 10px;
}

nav a {
    margin: 0 10px;              /* Spacing between links */
    text-decoration: none;       /* Remove underline */
    color: #ffffff;              /* White text */
    font-weight: bold;           /* Bold text for navigation */
    transition: color 0.3s;      /* Smooth transition effect */
}

nav a:hover {
    color: #b2ebf2;              /* Light blue color on hover */
}

/* Main Content Area */
main {
    padding: 20px;
}

/* Section Styling */
section {
    margin-bottom: 40px;                  /* Space between sections */
    background: #ffffff;                  /* White background for sections */
    padding: 20px;
    border-radius: 8px;                   /
}