:root {
  --alpine-mint: #5FD3A3;
  --alpine-mint-light: #A8E6CF;
  --alpine-dark: #2C3E50;
  --alpine-gray: #6C757D;
  --alpine-light: #F8F9FA;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--alpine-dark);
  background-color: #ffffff;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--alpine-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

.navbar {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--alpine-mint) !important;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: var(--alpine-dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--alpine-mint) !important;
}

.hero-section {
  background: linear-gradient(135deg, var(--alpine-mint-light) 0%, #ffffff 100%);
  padding: 4rem 0;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.hero-section h1 {
  color: var(--alpine-dark);
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.1rem;
  color: var(--alpine-gray);
  max-width: 700px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.content-section {
  padding: 3rem 0;
}

.content-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin: 1.5rem 0;
}

.info-card {
  background: #ffffff;
  border: 2px solid var(--alpine-mint-light);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-card h3 {
  color: var(--alpine-mint);
  margin-bottom: 1rem;
}

.disclaimer-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid var(--alpine-mint);
  border-radius: 4px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.disclaimer-box p {
  margin-bottom: 0.5rem;
  color: var(--alpine-gray);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--alpine-mint) 0%, var(--alpine-mint-light) 100%);
  color: #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(95, 211, 163, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(95, 211, 163, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.nutrient-table {
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin: 2rem 0;
}

.nutrient-table th {
  background: var(--alpine-mint);
  color: #ffffff;
  padding: 1rem;
  font-weight: 600;
  text-align: left;
}

.nutrient-table td {
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.nutrient-table tr:last-child td {
  border-bottom: none;
}

.nutrient-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.footer {
  background: linear-gradient(135deg, var(--alpine-dark) 0%, #1a252f 100%);
  color: #ffffff;
  padding: 3rem 0 1.5rem 0;
  margin-top: 4rem;
}

.footer h3 {
  color: var(--alpine-mint);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer a {
  color: var(--alpine-mint-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--alpine-mint);
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.98);
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cookie-accept {
  background: var(--alpine-mint);
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-accept:hover {
  background: var(--alpine-mint-light);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .content-section {
    padding: 2rem 0;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .nutrient-table th,
  .nutrient-table td {
    padding: 0.7rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  h1 {
    font-size: 1.7rem;
  }
  
  .cookie-banner {
    padding: 1rem;
  }
}
