:root {
  --primary: #60B0E5;
  --accent1: #F5E0A9;
  --accent2: #8CC060;
  --accent3: #E88D70;
  --dark: #1a1a1a;
  --light: #f5f5f5;
  --white: #ffffff;
  --gray: #6c757d;
  --border: #e0e0e0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Lato', sans-serif;
  color: var(--dark);
  background-color: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark);
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  height: 35px;
  width: 35px;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

nav a:hover {
  border-bottom: 2px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
}

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

.hero-section {
  width: 100%;
  height: 600px;
  background: linear-gradient(135deg, rgba(96, 176, 229, 0.1) 0%, rgba(140, 192, 96, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-section img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  color: var(--dark);
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.hero-section p {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 1rem;
}

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

.section-full-width {
  padding: 5rem 20px;
  background-color: var(--light);
}

.section-full-width .section-content {
  max-width: 1400px;
  margin: 0 auto;
}

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

.two-column-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.two-column-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.two-column-image:hover img {
  transform: scale(1.05);
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.card h3 {
  margin-top: 1rem;
  color: var(--primary);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

.ingredient-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ingredient-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-color: var(--accent2);
}

.ingredient-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
}

.ingredient-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredient-content {
  padding: 1.5rem;
  text-align: center;
}

.ingredient-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.ingredient-content p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 0;
}

.table-section {
  overflow-x: auto;
  margin-top: 2rem;
}

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

thead {
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  color: var(--white);
}

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

td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
}

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

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

.highlight-box {
  background: linear-gradient(135deg, rgba(96, 176, 229, 0.1), rgba(140, 192, 96, 0.1));
  border-left: 4px solid var(--primary);
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.highlight-box h3 {
  color: var(--primary);
  margin-top: 0;
}

.text-block {
  max-width: 900px;
  margin: 2rem 0;
  padding: 1.5rem;
}

.text-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark);
}

.text-block ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.text-block li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  line-height: 1.8;
}

.text-block li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent2);
  font-weight: bold;
  font-size: 1.2rem;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(96, 176, 229, 0.3);
}

.cta-button:hover {
  background: var(--accent2);
  box-shadow: 0 6px 15px rgba(140, 192, 96, 0.4);
  transform: translateY(-2px);
  color: var(--white);
}

.cta-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cta-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 20px 1rem;
  margin-top: 5rem;
  font-size: 0.95rem;
}

footer a {
  color: var(--accent1);
  text-decoration: none;
}

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

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.footer-section h4 {
  color: var(--accent1);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.contact-info p {
  margin-bottom: 0.5rem;
}

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  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(--primary);
  box-shadow: 0 0 0 3px rgba(96, 176, 229, 0.1);
}

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

.form-disclaimer {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark);
  border-left: 4px solid var(--accent3);
}

.disclaimer-section {
  background: var(--light);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid var(--accent3);
  font-size: 0.95rem;
  line-height: 1.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 2rem;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  max-width: 100%;
}

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

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

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

.cookie-buttons button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-accept:hover {
  background: var(--accent2);
}

.cookie-decline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-decline:hover {
  background: rgba(255,255,255,0.1);
}

.cookie-learn {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cookie-learn:hover {
  background: var(--primary);
  color: var(--white);
}

.hidden {
  display: none !important;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  nav a {
    display: block;
    padding: 0.5rem 0;
  }

  .hero-section {
    height: 400px;
  }

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

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

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

  .two-column.reverse > * {
    direction: ltr;
  }

  .section {
    padding: 3rem 20px;
  }

  .section-full-width {
    padding: 3rem 20px;
  }

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

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

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

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }

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

  .table-section {
    font-size: 0.9rem;
  }

  th, td {
    padding: 0.8rem;
  }

  .text-block {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
  }

  .hero-section {
    height: 300px;
  }

  .hero-section h1 {
    font-size: 1.5rem;
  }

  .hero-section p {
    font-size: 0.95rem;
  }

  nav {
    gap: 0.5rem;
  }

  .section {
    padding: 2rem 15px;
  }

  .section-full-width {
    padding: 2rem 15px;
  }

  .cta-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }

  .cookie-text {
    font-size: 0.9rem;
  }

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

  .cookie-buttons button {
    width: 100%;
  }
}
