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

:root {
  --primary-bg: #e8f0f5;
  --accent-blue: #4a90e2;
  --accent-green: #50c878;
  --accent-orange: #f4a261;
  --accent-purple: #9b59b6;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --light-gray: #ecf0f1;
  --border-color: #bdc3c7;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
  color: var(--text-dark);
  text-transform: capitalize;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 30px;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 25px;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
  line-height: 1.75;
  color: var(--text-dark);
}

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

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

button, .btn {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  color: var(--white);
}

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
  background-color: var(--light-gray);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--primary-bg);
  border-color: var(--accent-blue);
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 15px 0;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--accent-blue);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

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

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

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(74, 144, 226, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.6;
  z-index: 1;
  animation: parallax 0.5s ease-out;
}

@keyframes parallax {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-20px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  animation: fadeIn 0.8s ease-out;
}

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

.hero h1 {
  font-size: 64px;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero p {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

section {
  padding: 120px 120px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-alt {
  background-color: var(--primary-bg);
  background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(80, 200, 120, 0.08) 100%);
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.section-heading p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.two-column.reverse {
  grid-template-columns: 45% 55%;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.two-column img:hover {
  transform: translateY(-10px);
}

.two-column-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.two-column-text p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
}

.accent-quote {
  font-style: italic;
  color: var(--accent-blue);
  border-left: 4px solid var(--accent-blue);
  padding-left: 20px;
  margin: 30px 0;
  font-weight: 500;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.product-card-content {
  padding: 30px;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.product-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

th {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  color: var(--white);
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--light-gray);
  font-size: 14px;
}

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

tr:hover {
  background-color: var(--primary-bg);
}

.food-list {
  list-style: none;
  margin: 30px 0;
}

.food-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 15px;
}

.food-list li:last-child {
  border-bottom: none;
}

.food-list li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: bold;
  margin-right: 12px;
}

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

.accordion {
  margin-bottom: 20px;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.1);
}

.accordion-header {
  background-color: var(--white);
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
  user-select: none;
}

.accordion-header:hover {
  background-color: var(--primary-bg);
  color: var(--accent-blue);
}

.accordion-header.active {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(80, 200, 120, 0.1));
  color: var(--accent-blue);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  font-weight: bold;
  color: var(--accent-blue);
}

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

.accordion-body {
  display: none;
  padding: 24px;
  background-color: rgba(232, 240, 245, 0.5);
  border-top: 1px solid var(--border-color);
  line-height: 1.8;
  animation: slideDown 0.3s ease-out;
}

.accordion-body.active {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.closing-section {
  text-align: center;
  padding: 80px 40px;
}

.closing-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.closing-section p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 40px;
}

.contact-section {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: center;
}

.contact-info {
  padding: 40px;
  background: linear-gradient(135deg, var(--primary-bg), rgba(74, 144, 226, 0.08));
  border-radius: 12px;
}

.contact-info h3 {
  margin-bottom: 30px;
  font-size: 24px;
}

.contact-item {
  margin-bottom: 25px;
}

.contact-label {
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 5px;
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 16px;
  color: var(--text-dark);
  word-break: break-word;
}

.contact-value a {
  color: var(--accent-blue);
  font-weight: 500;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
  background-color: rgba(74, 144, 226, 0.02);
}

.form-disclaimer {
  background-color: var(--primary-bg);
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text-dark);
  border-left: 4px solid var(--accent-blue);
  line-height: 1.6;
}

footer {
  background: linear-gradient(180deg, var(--text-dark) 0%, rgba(44, 62, 80, 0.95) 100%);
  color: var(--white);
  padding: 60px 120px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  cursor: pointer;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: var(--accent-blue);
  text-decoration: underline;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 10px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--primary-bg);
  padding-bottom: 20px;
}

.modal-header h2 {
  margin: 0;
  font-size: 28px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.3s ease;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  color: var(--text-dark);
}

.modal-body {
  line-height: 1.8;
  font-size: 15px;
  color: var(--text-dark);
}

.modal-body h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 18px;
}

.modal-body ul, .modal-body ol {
  margin: 15px 0;
  margin-left: 30px;
}

.modal-body li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--primary-bg);
  padding: 25px 40px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1500;
  animation: slideUp 0.4s ease-out;
  max-height: 180px;
  overflow-y: auto;
}

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

.cookie-text {
  flex: 1;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  white-space: nowrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  color: var(--white);
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.cookie-reject {
  background-color: var(--light-gray);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.cookie-reject:hover {
  background-color: var(--primary-bg);
  border-color: var(--accent-blue);
}

.cookie-more {
  background-color: transparent;
  color: var(--accent-blue);
  border: 1px solid var(--accent-blue);
  text-decoration: underline;
}

.cookie-more:hover {
  background-color: rgba(74, 144, 226, 0.05);
}

.success-message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 50px 60px;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 2500;
  animation: slideUp 0.4s ease-out;
}

.success-message.show {
  display: block;
}

.success-message h2 {
  color: var(--accent-green);
  margin-bottom: 15px;
  font-size: 32px;
}

.success-message p {
  color: var(--text-dark);
  margin-bottom: 25px;
  font-size: 16px;
}

.success-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2450;
}

.success-overlay.show {
  display: block;
}

.health-disclaimer {
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.1), rgba(155, 89, 182, 0.1));
  border-left: 4px solid var(--accent-orange);
  padding: 20px;
  border-radius: 6px;
  margin: 40px 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  nav ul {
    gap: 15px;
  }

  nav a {
    font-size: 12px;
  }

  section {
    padding: 60px 20px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .two-column.reverse {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  footer {
    padding: 40px 20px;
  }

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

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

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .modal-content {
    width: 95%;
    margin: 20% auto;
  }
}
