body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #1a1a1a;
}

header {
    background-color: #0a7d4f;
    color: white;
    padding: 1rem;
}

nav a {
    color: white;
    margin-right: 15px;
    text-decoration: none;
}

nav a:focus,
nav a:hover {
    text-decoration: underline;
}

main {
    padding: 1.5rem;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
}

/* Aviso de cookies */
.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(90%, 420px);
    background-color: #222;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    z-index: 9999;
}

button {
    background-color: #0a7d4f;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
}