:root {
  --primary-color: #E0F2F1;
  --accent-1: #80CBC4;
  --accent-2: #4DB6AC;
  --accent-3: #26A69A;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --white: #ffffff;
  --border-radius: 8px;
}

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

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

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

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

header {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-3);
  text-decoration: none;
}

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

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-3);
}

.nav-links a.active {
  color: var(--accent-3);
  font-weight: 600;
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }
}

footer {
  background-color: var(--primary-color);
  padding: 2rem 1rem;
  margin-top: 4rem;
  border-top: 1px solid var(--accent-1);
}

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

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

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

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

.footer-section a {
  color: var(--text-light);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--accent-1);
  margin-top: 2rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section {
  padding: 4rem 1rem;
}

.section:nth-child(even) {
  background-color: var(--primary-color);
}

.hero {
  position: relative;
  min-height: 500px;
  background-image: url('images/hero-fresh-ingredients.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.two-column img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  max-width: 500px;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
}

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

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

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  margin-bottom: 0.5rem;
  color: var(--accent-3);
}

.card-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-3);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.button:hover {
  background-color: var(--accent-2);
  box-shadow: 0 4px 12px rgba(38,166,154,0.3);
}

.button.secondary {
  background-color: transparent;
  color: var(--accent-3);
  border: 2px solid var(--accent-3);
}

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

.list-section {
  margin: 2rem 0;
}

.list-section ul {
  list-style: none;
  margin-left: 0;
}

.list-section li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.8;
}

.list-section li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-3);
  font-weight: bold;
  font-size: 1.2rem;
}

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

.table-section table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.table-section th {
  background-color: var(--accent-1);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--accent-3);
}

.table-section td {
  padding: 1rem;
  border-bottom: 1px solid var(--primary-color);
}

.table-section tr:hover {
  background-color: var(--primary-color);
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 50px;
  width: 2px;
  height: 100%;
  background-color: var(--accent-1);
}

.timeline-marker {
  width: 50px;
  height: 50px;
  background-color: var(--accent-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.timeline-content h3 {
  margin-top: 0;
  color: var(--accent-3);
}

.disclaimer {
  background-color: var(--primary-color);
  border-left: 4px solid var(--accent-3);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.disclaimer p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  background-color: var(--white);
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
}

.faq-question {
  cursor: pointer;
  font-weight: 600;
  color: var(--accent-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--primary-color);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
}

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

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
  background-color: var(--accent-2);
}

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

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

.cookie-btn.info {
  background-color: transparent;
  color: var(--white);
  text-decoration: underline;
  padding: 0;
  border: none;
}

@media (max-width: 768px) {
  .cookie-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  .section {
    padding: 2rem 1rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}
