body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #1a1a1a; /* Dark black-grey background */
    color: #cccccc; /* Softer light grey text */
    line-height: 1.6;
}

header {
    text-align: center;
    background-color: #002147; /* UCI blue */
    color: white;
    padding: 20px;
    border-radius: 8px 8px 0 0;
}

h1 {
    margin: 0;
}

h2, h3 {
    color: #cccccc; /* Softer grey for headings */
}

section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #2c2c2c; /* Slightly lighter grey for sections */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3); /* Adjusted shadow for dark theme */
    color: #cccccc; /* Softer grey text inside sections */
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #cccccc; /* Softer grey for bullets and list text */
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8em;
    color: #cccccc; /* Softer grey for footer text */
}

/* Responsive Design */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    header, section {
        padding: 15px;
    }
}