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

:root {
  --color-main: #fafffd;
  --color-green: #16a34a;
  --color-orange: #ea580c;
  --color-purple: #7c3aed;
  --color-dark: #1a1a1a;
  --color-light-gray: #f5f5f5;
  --color-medium-gray: #e0e0e0;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  font-family: system-ui, Helvetica, -apple-system, sans-serif;
  background-color: var(--color-main);
  color: var(--color-dark);
  line-height: 1.74;
  font-size: 1.125rem;
  font-weight: 400;
}

h1 {
  font-family: system-ui, Helvetica, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h2 {
  font-family: system-ui, Helvetica, -apple-system, sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  line-height: 1.3;
}

h3 {
  font-family: system-ui, Helvetica, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.74;
}

a {
  color: var(--color-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-orange);
}

header {
  position: sticky;
  top: 0;
  background-color: var(--color-main);
  border-bottom: 1px solid var(--color-medium-gray);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.header-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.5rem 5.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-dark);
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--color-green);
}

main {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5.5%;
  min-height: calc(100vh - 120px);
}

.hero-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(135deg, #f0fdf4 0%, var(--color-main) 100%);
  padding: 6rem 5.5%;
  margin-top: 2rem;
  margin-bottom: 6rem;
}

.hero-content {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #333;
}

.hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.section {
  margin-bottom: 7rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section h2 {
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.section > p {
  max-width: 90%;
  font-size: 1.125rem;
  line-height: 1.74;
  color: #444;
  margin-bottom: 2rem;
}

.section-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.card {
  background: white;
  border: 2px solid var(--color-light-gray);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--color-green);
}

.card h3 {
  color: var(--color-green);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.card p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 0;
}

.comparison-table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  background: white;
  border: 1px solid var(--color-medium-gray);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-table th {
  background-color: var(--color-green);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-medium-gray);
}

.comparison-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.comparison-table tbody tr:hover {
  background-color: #f0fdf4;
}

.comparison-table strong {
  color: var(--color-green);
}

.faq-section {
  margin-top: 2rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--color-medium-gray);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background-color: #f9f9f9;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--color-dark);
  user-select: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f0fdf4;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  color: #555;
  line-height: 1.74;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.food-density-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.food-item {
  background: white;
  border-left: 4px solid var(--color-green);
  padding: 1.5rem;
  border-radius: 4px;
}

.food-item.medium {
  border-left-color: var(--color-orange);
}

.food-item.high {
  border-left-color: var(--color-purple);
}

.food-item h4 {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.food-item p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
}

.density-value {
  font-weight: 600;
  color: var(--color-green);
  font-size: 1.125rem;
}

.food-item.medium .density-value {
  color: var(--color-orange);
}

.food-item.high .density-value {
  color: var(--color-purple);
}

footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding: 4rem 5.5%;
  margin-top: 7rem;
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1.5rem;
}

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

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: #b0b0b0;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--color-green);
}

.footer-contact {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #999;
}

.cta-button {
  display: inline-block;
  background-color: var(--color-green);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background-color: var(--color-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.disclaimer {
  background-color: #f0fdf4;
  border-left: 4px solid var(--color-green);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: #333;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  margin-top: 0;
  color: var(--color-green);
  font-size: 1.25rem;
}

.blog-card p {
  flex-grow: 1;
  color: #666;
  font-size: 0.95rem;
}

.blog-card a {
  color: var(--color-green);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-medium-gray);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-submit {
  background-color: var(--color-green);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-submit:hover {
  background-color: var(--color-orange);
}

.form-disclaimer {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #333;
}

.thank-you-message {
  text-align: center;
  padding: 3rem 0;
  background-color: #f0fdf4;
  border-radius: 8px;
  margin: 2rem 0;
}

.thank-you-message h1 {
  color: var(--color-green);
  margin-bottom: 1rem;
}

.thank-you-message p {
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 2rem;
}

.policy-content {
  line-height: 1.8;
  color: #444;
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.8rem;
  color: #555;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: white;
  padding: 1.5rem 5.5%;
  display: none;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  z-index: 2000;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

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

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: var(--color-green);
  color: white;
}

.cookie-btn-accept:hover {
  background-color: #15803d;
}

.cookie-btn-reject {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-policy {
  background-color: transparent;
  color: var(--color-green);
  text-decoration: underline;
  padding: 0.6rem 1rem;
}

.cookie-btn-policy:hover {
  color: var(--color-orange);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 0.8rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  main {
    padding: 0 5.5%;
  }

  .hero-section {
    padding: 3rem 5.5%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 1rem;
    line-height: 1.6;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .header-content {
    padding: 1rem 5.5%;
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  nav a {
    font-size: 0.7rem;
  }

  main {
    padding: 0 5.5%;
  }

  .hero-section {
    padding: 2rem 5.5%;
    margin-bottom: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-section h4 {
    font-size: 0.85rem;
  }

  .cookie-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}
