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

/* Header Styles */
header {
    background-color: #28a745; /* Green header */
    color: white;
    padding: 1em 0;
    text-align: center;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header-title {
    font-size: 2em;
    font-weight: bold;
}

.social-links a {
    color: white;
    font-size: 1.5em;
    margin-left: 15px;
    text-decoration: none;
}

.social-links a:hover {
    color: #ddd;
}

/* Navigation Styles */
nav ul {
    list-style: none;
    padding: 0;
    margin: 1em 0 0 0;
    display: flex;
    justify-content: center;
    background-color: #343a40; /* Darker background for nav */
}

nav ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #495057;
}

/* Main Content Styles */
main {
    padding: 20px;
    min-height: 400px; /* Ensures content area has a minimum height */
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 1em 0;
    background-color: #343a40;
    color: white;
    font-size: 0.9em;
}

footer a {
    color: #28a745; /* Green link in footer */
    text-decoration: none;
    margin-bottom: 5px;
    display: block; /* Makes the link take full width for better clickability */
}

footer a:hover {
    text-decoration: underline;
}