/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #000000; /* Deep Night Blue */
    color: #FFFFFF; /* Light Cream */
    line-height: 1.6;
    padding: 20px;
}

/* Header styles */
header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* Section styles */
section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #FF9F0A; /* Light Warm Yellow for section headers */
}

section p {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Footer styles */
footer {
    text-align: center;
    margin-top: 40px;
}

footer p {
    font-size: 16px;
}

footer a {
    color: #FF9F0A;
    text-decoration: none;
}

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

/* Links and accent colors */
a {
    color: #FF9F0A; /* Warm Yellow Accent for links */
}

a:hover {
    text-decoration: underline;
}