:root {
  --primary: #00BFA5;
  --secondary: #EC407A;
  --accent: #FFB300;
  --light: #FFFDE7;
  --dark: #1a1a1a;
  --gray-light: #f5f5f5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: var(--dark);
  line-height: 1.85;
  font-size: 16px;
  font-weight: 400;
}

h1 {
  font-size: 62px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--dark);
}

h1.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--dark);
}

h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  margin-bottom: 20px;
  color: var(--dark);
}

.blockquote {
  font-size: 27px;
  font-weight: 700;
  font-style: italic;
  color: var(--primary);
  margin: 40px 0;
  padding-left: 30px;
  border-left: 4px solid var(--secondary);
}

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

a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 15px 0;
}

header.scroll-bg {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--primary);
  text-decoration: none;
}

main {
  margin-top: 80px;
  padding: 0;
}

.hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--light) 0%, #f0f9f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero-vegetables.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.95;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  padding: 40px;
}

.hero-content h1 {
  color: white;
  font-size: 72px;
  margin-bottom: 20px;
}

.hero-content p {
  color: white;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 40px;
}

section {
  width: 100%;
  padding: 120px 40px;
}

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

.container-wide {
  max-width: 1750px;
  margin: 0 auto;
}

.container-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-intro {
  text-align: center;
  margin-bottom: 80px;
}

.section-intro h2 {
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.two-column {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  max-height: 500px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.two-column.reverse {
  grid-template-columns: 35% 65%;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
  text-decoration: none;
}

.card h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

.card p {
  flex-grow: 1;
  font-size: 15px;
  color: #666;
}

.card-link {
  color: var(--secondary);
  font-weight: 600;
  margin-top: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #009688 100%);
  color: white;
  box-shadow: 0 5px 20px rgba(0, 191, 165, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 191, 165, 0.4);
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background: var(--secondary);
  color: white;
  box-shadow: 0 5px 20px rgba(236, 64, 122, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236, 64, 122, 0.4);
  color: white;
  text-decoration: none;
}

.btn.small {
  padding: 12px 30px;
  font-size: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

table thead {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
}

table td {
  padding: 20px;
  border-top: 1px solid #e0e0e0;
  font-size: 15px;
}

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

form {
  max-width: 600px;
  margin: 40px auto;
  background: var(--gray-light);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

form .form-group {
  margin-bottom: 25px;
}

form label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 14px;
}

form input,
form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 191, 165, 0.1);
}

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

form button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 191, 165, 0.3);
}

form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 191, 165, 0.4);
}

.disclaimer {
  background: linear-gradient(135deg, rgba(0, 191, 165, 0.05) 0%, rgba(236, 64, 122, 0.05) 100%);
  border-left: 4px solid var(--primary);
  padding: 25px;
  border-radius: 8px;
  margin: 40px 0;
  font-size: 14px;
  color: #555;
}

.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 30px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 25px;
  background: linear-gradient(135deg, var(--light) 0%, #f0f9f8 100%);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.faq-answer {
  padding: 25px;
  display: none;
  border-top: 1px solid #e0e0e0;
}

.faq-answer.show {
  display: block;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

footer {
  background: var(--dark);
  color: white;
  padding: 80px 40px 40px;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer-section h4 {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 15px;
}

.footer-section a {
  color: #ccc;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary);
  text-decoration: none;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: white;
  padding: 25px 40px;
  z-index: 999;
  display: none;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-text {
  font-size: 14px;
  flex: 1;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary);
  font-weight: 600;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 25px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-btn-accept:hover {
  background: #009688;
}

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

.cookie-btn-decline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

@media (max-width: 768px) {
  h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    gap: 20px;
    font-size: 12px;
  }

  .hero {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }

  section {
    padding: 80px 20px;
  }

  .two-column,
  .two-column.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  form {
    padding: 25px;
  }
}

.hidden-text {
  display: none;
}

.section-decoration {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  background: linear-gradient(135deg, var(--light) 0%, rgba(0, 191, 165, 0.1) 100%);
  border-radius: 12px;
  font-size: 80px;
  color: var(--primary);
  opacity: 0.3;
  margin: 60px 0;
}
