body {
    font-family: 'Times New Roman', serif;
    margin: 0;
    background: #f0f0f0;
    color: #333;
}

header {
    background: #003366;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #fff;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: #666;
    color: #fff;
}

.content {
    background: #fff;
    padding: 30px;
    margin: 30px auto;
    max-width: 900px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease;
}

footer {
    background: #666;
    color: #fff;
    text-align: center;
    padding: 15px;
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    max-width: 300px;
    text-align: center;
}

.cookie-consent button {
    background: #003366;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-consent button:hover {
    background: #005599;
    box-shadow: 0 0 10px #003366;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
