/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark background */
    color: #f5f5f5; /* Light text */
}

/* Center Boxed Content */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1e1e1e; /* Slightly lighter dark background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Header Styles */
header {
    text-align: center;
    padding: 20px;
    background-color: #2c2c2c; /* Darker header background */
    border-bottom: 2px solid #444;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #f5f5f5;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2em;
    color: #aaa;
}

/* Navigation Styles */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #2c2c2c;
    padding: 10px 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff9800; /* Highlight color */
}

/* Section Styles */
section {
    margin-bottom: 30px;
}

section h2 {
    border-bottom: 2px solid #444;
    padding-bottom: 5px;
    margin-bottom: 20px;
    color: #ff9800; /* Highlight for headings */
}

section ul {
    list-style: none;
    padding: 0;
}

section ul li {
    margin-bottom: 10px;
}

section ul li a {
    text-decoration: none;
    color: #00bcd4; /* Link color */
    transition: color 0.3s;
}

section ul li a:hover {
    color: #ff9800; /* Highlight color */
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 15px 0;
    background-color: #2c2c2c;
    color: #aaa;
    font-size: 0.9em;
    border-top: 2px solid #444;
}

footer p {
    margin: 0;
}
