/* styles.css */

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header styling */
header {
    background: #00787E; /* teal background */
    color: white;
    padding: 10px 20px; /* Spacing around the header */
    text-align: center;
	font-size: 12px;
	
}

/* Navigation styling */
nav ul {
    list-style: none; /* Remove bullets */
    padding: 0;
	font-size: 12px;
}

nav ul li {
    display: inline; /* Inline items */
    margin: 0 15px; /* Spacing between items */
	font-size: 12px;
}

nav ul li a {
    color: white;
    text-decoration: none; /* Remove underline */
	font-size: 12px;
}

/* Main content styling */
main {
    padding: 20px;
    max-width: 1200px; /* Limit the width */
    margin: auto; /* Center the main content */
    background: white; /* White background for content */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Section styling */
section {
    margin-bottom: 20px; /* Spacing between sections */
}
 
h2 {
    color: #00787E; /* Match header color */
}

/* Footer styling */
footer {
    text-align: center;
    padding: 10px 0;
    background: #00787E;
    color: white;
    position: relative; /* Allow for positioning */
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul li {
        display: block; /* Stack items vertically */
        margin: 5px 0; /* Spacing between stacked items */
    }

    main {
        padding: 10px; /* Less padding on smaller screens */
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em; /* Smaller header font */
    }

    nav ul li {
        margin: 0; /* No margin for mobile */
    }

    nav ul {
        text-align: center; /* Center items in nav */
    }
}