body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 20px;
}

/* Header Styles */
h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

h2 {
    font-size: 24px;
    color: #cc5500; /* Orange color for subheadings */
}

/* Navigation Bar */
nav {
    background-color: black;
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
    display: inline-block;
}

nav a:hover, 
nav a.active {
    background-color: white;
    color: black;
}

/* Content Box */
.container {
    background: #fff;
    padding: 20px;
    border: 1px solid #000000;
}

/* Emphasized Text */
.important {
    color: #cc5500; /* Orange highlight */
    font-weight: bold;
}

/* Footer */
footer {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

/* Links */
a {
    color: #cc5500;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}