body { font-family: 'Merriweather', serif; margin: 0; background: #fffaf0; color: #4a2c2a; }
header { background: #800020; padding: 40px; text-align: center; }
h1 { font-size: 3rem; color: #fffaf0; text-shadow: 0 0 10px #ffd700; }
nav ul { list-style: none; display: flex; justify-content: center; gap: 20px; margin: 20px 0 0; padding: 0; background: #fffaf0; }
nav a { color: #800020; text-decoration: none; padding: 10px 20px; transition: all 0.3s ease; }
nav a:hover { background: #ffd700; color: #4a2c2a; }
.content { column-count: 2; padding: 40px; margin: 20px; background: #fff; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); animation: fadeIn 1s ease; }
footer { background: #800020; text-align: center; padding: 20px; color: #fffaf0; }
.cookie-consent { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: #800020; color: #fffaf0; 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: #4a2c2a; padding: 8px 16px; border: none; border-radius: 5px; cursor: pointer; transition: all 0.3s ease; }
.cookie-consent button:hover { background: #ffec8b; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
