* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#mobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#mobileMenu.active {
  opacity: 1;
  visibility: visible;
}

#mobileMenu nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

#mobileMenu a {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

#mobileMenu a:hover {
  color: #10b981;
}

#mobileMenu .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

body.menu-open {
  overflow: hidden;
}

#cookieConsent {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 400px;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 100;
  animation: slideUp 0.4s ease-out;
}

#cookieConsent.hidden {
  display: none;
}

#cookieConsent h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}

#cookieConsent p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.5;
}

#cookieConsent .cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

#cookieConsent button {
  flex: 1;
  min-width: 100px;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

#cookieConsent .accept-btn {
  background-color: #10b981;
  color: white;
}

#cookieConsent .accept-btn:hover {
  background-color: #059669;
}

#cookieConsent .reject-btn {
  background-color: #f3f4f6;
  color: #374151;
}

#cookieConsent .reject-btn:hover {
  background-color: #e5e7eb;
}

@media (max-width: 640px) {
  #cookieConsent {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-in;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button:focus,
a:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}