body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background: #fff;
    color: #1a2b49;
}

header {
    background: #1a2b49;
    color: #fff;
    padding: 50px;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    margin: 20px 0 0;
    padding: 0;
}

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

nav a:hover {
    background: #ffd700;
    color: #1a2b49;
    border-radius: 5px;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #f5f5f5;
    border-radius: 10px;
    animation: slideUp 1s ease;
}

footer {
    background: #1a2b49;
    color: #fff;
    text-align: center;
    padding: 20px;
}

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

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

.cookie-consent button:hover {
    background: #ffec8b;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
