/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Layout */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #222;
    line-height: 1.6;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Banner */
.banner-header {
    position: relative;
    text-align: center;
    color: white;
}

.banner-image {
    width: 100%;
    height: auto;
    object-fit: fill;
}



/* Main Content */
.content {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    margin-top: 30px;
    border-radius: 8px;
}

.content h2, .content h3 {
    margin-top: 20px;
    color: #333;
}

.content ul, .content ol {
    margin: 15px 0 15px 20px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: white;
    margin-top: 40px;
}

.footer nav a {
    color: #fff;
    margin: 0 10px;
}

.footer nav a:hover {
    text-decoration: underline;
}
