body { font-family: 'Oswald', sans-serif; margin: 0; background: #fff; color: #000; }
header { background: #2e7d32; padding: 20px; text-align: center; }
h1 { font-size: 3rem; color: #fff; }
.carousel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; height: calc(100vh - 140px); }
.content { flex: 0 0 100%; scroll-snap-align: start; padding: 40px; background: rgba(46, 125, 50, 0.1); animation: fadeIn 1s ease; }
.carousel-prev, .carousel-next { position: fixed; top: 50%; transform: translateY(-50%); background: #2e7d32; color: #fff; padding: 10px 20px; border: none; cursor: pointer; }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }
footer { background: #2e7d32; text-align: center; padding: 20px; color: #fff; }
.cookie-consent { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: #2e7d32; color: #fff; padding: 15px; border-radius: 5px; box-shadow: 0 0 15px rgba(0,0,0,0.3); max-width: 350px; text-align: center; }
.cookie-consent button { background: #fff; color: #2e7d32; padding: 8px 16px; border: none; border-radius: 5px; cursor: pointer; transition: all 0.3s ease; }
.cookie-consent button:hover { background: #ddd; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
