body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #F5F5DC;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.top-section {
    background-color: white;
    padding: 20px 0;
    text-align: center;
}

.top-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-section .logo img {
    max-width: 100%;
    height: auto;
}

.top-section .links ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.top-section .links li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    white-space: nowrap;
}

.main-content {
    background-color: white;
    padding: 40px 0;
    min-height: 500px;
}

.main-content p, .main-content ul, .main-content li {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.footer-section {
    background-color: #CC0000;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-section a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}