:root {
  --primary-color: #ADD8E6;
  --accent-green: #90EE90;
  --accent-gold: #FFD700;
  --accent-red: #FF6347;
  --light-bg: #F8F9FA;
  --dark-text: #1a1a1a;
  --medium-text: #444444;
  --light-gray: #EEEEEE;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark-text);
  background-color: #ffffff;
  line-height: 1.6;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
}

header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

header .brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header .brand img {
  width: 40px;
  height: 40px;
}

header .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

header .nav-links a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

header .nav-links a:hover,
header .nav-links a.active {
  color: var(--accent-red);
}

footer {
  background-color: var(--light-bg);
  padding: 4rem 2rem;
  margin-top: 6rem;
  border-top: 1px solid #e0e0e0;
}

footer .footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

footer .footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

footer .footer-section p,
footer .footer-section a {
  font-size: 0.9rem;
  color: var(--medium-text);
  text-decoration: none;
  line-height: 1.8;
}

footer .footer-section a:hover {
  color: var(--accent-red);
  text-decoration: underline;
}

footer .footer-bottom {
  max-width: 1400px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--medium-text);
}

footer .disclaimer {
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(173, 216, 230, 0.1);
  border-left: 4px solid var(--primary-color);
  font-size: 0.85rem;
  color: var(--medium-text);
}

.hero-section {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, rgba(173, 216, 230, 0.9) 0%, rgba(144, 238, 144, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--dark-text);
}

section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.intro-section {
  background-color: var(--light-bg);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--medium-text);
  line-height: 1.8;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-gold);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.card p {
  color: var(--medium-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.text-column {
  padding-right: 2rem;
}

.text-column p {
  margin-bottom: 1rem;
  color: var(--medium-text);
  line-height: 1.8;
}

.list-section {
  background-color: var(--light-bg);
}

.list-section ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.list-section li {
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid var(--accent-gold);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.list-section li:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

.list-section li strong {
  display: block;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.list-section li p {
  color: var(--medium-text);
  font-size: 0.9rem;
}

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

table thead {
  background-color: var(--primary-color);
  color: #ffffff;
}

table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
  color: var(--medium-text);
}

table tbody tr:hover {
  background-color: var(--light-bg);
}

.highlight-block {
  background: linear-gradient(135deg, rgba(173, 216, 230, 0.1) 0%, rgba(144, 238, 144, 0.05) 100%);
  padding: 2rem;
  border-left: 4px solid var(--accent-green);
  border-radius: 4px;
  margin: 2rem 0;
}

.cta-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-gold);
  color: var(--dark-text);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
  border: 2px solid var(--accent-gold);
}

.cta-link:hover {
  background-color: var(--dark-text);
  color: var(--accent-gold);
  transform: scale(1.05);
}

.recipe-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.recipe-item {
  padding: 1.5rem;
  background: #ffffff;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.recipe-item:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.recipe-item p {
  color: var(--medium-text);
  font-size: 0.9rem;
  line-height: 1.6;
}

.disclaimer-section {
  background-color: rgba(173, 216, 230, 0.15);
  border-left: 4px solid var(--accent-red);
  padding: 2rem;
  border-radius: 4px;
  margin: 3rem 0;
}

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

.disclaimer-section p {
  color: var(--medium-text);
  line-height: 1.8;
  font-size: 0.95rem;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

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

.form-submit {
  background-color: var(--accent-gold);
  color: var(--dark-text);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
}

.form-submit:hover {
  background-color: var(--dark-text);
  color: var(--accent-gold);
  transform: scale(1.02);
}

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

.thank-you-container {
  max-width: 600px;
  margin: 3rem auto;
  padding: 3rem;
  text-align: center;
  background: var(--light-bg);
  border-radius: 8px;
  border: 2px solid var(--accent-green);
}

.thank-you-container h1 {
  color: var(--accent-green);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.thank-you-container p {
  color: var(--medium-text);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.thank-you-container .cta-link {
  margin-top: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-text);
  color: #ffffff;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  border-top: 4px solid var(--accent-gold);
  display: none;
}

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

.cookie-banner-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--accent-gold);
  text-decoration: none;
}

.cookie-banner-text a:hover {
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 300px;
}

.cookie-banner-buttons button {
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--accent-gold);
  background: transparent;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-banner-buttons button:hover {
  background-color: var(--accent-gold);
  color: var(--dark-text);
}

.cookie-banner-buttons .accept {
  background-color: var(--accent-gold);
  color: var(--dark-text);
  border-color: var(--accent-gold);
}

.cookie-banner-buttons .accept:hover {
  background-color: #FFD700;
  opacity: 0.9;
}

@media (max-width: 768px) {
  header .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  header .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-section {
    height: 350px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .list-section ul {
    grid-template-columns: 1fr;
  }

  .recipe-list {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3rem 1rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  table {
    font-size: 0.9rem;
  }

  table th,
  table td {
    padding: 0.75rem 0.5rem;
  }

  footer .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .cookie-banner-buttons {
    justify-content: space-between;
  }

  .cookie-banner-buttons button {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  section h3 {
    font-size: 1.2rem;
  }

  table {
    font-size: 0.8rem;
  }

  .two-column p,
  .card p {
    font-size: 0.9rem;
  }

  header .nav-links {
    gap: 0.75rem;
  }

  header .nav-links a {
    font-size: 0.85rem;
  }
}
