@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Merriweather:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary: #3A8B5D;
  --accent-yellow: #F9D749;
  --accent-blue: #6AABD2;
  --accent-peach: #E0A891;
  --text-dark: #1A1A1A;
  --text-light: #666666;
  --bg-light: #F9F9F9;
  --bg-white: #FFFFFF;
  --border-light: #E5E5E5;
}

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

html {
  scroll-behavior: smooth;
}

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

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 30px;
}

h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

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

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

header {
  position: sticky;
  top: 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin-left: 30px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
}

.hero-section {
  background: linear-gradient(135deg, rgba(58, 139, 93, 0.1) 0%, rgba(106, 171, 210, 0.05) 100%);
  padding: 80px 0;
  text-align: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-section h1 {
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-disclaimer {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  background-color: rgba(58, 139, 93, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
  border-left: 4px solid var(--primary);
}

.section {
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-full {
  width: 100%;
  padding: 80px 0;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-light);
}

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

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 15px;
}

.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-header {
  background-color: var(--bg-light);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
}

.accordion-header:hover {
  background-color: rgba(58, 139, 93, 0.1);
}

.accordion-body {
  display: none;
  padding: 20px;
  background-color: var(--bg-white);
  color: var(--text-light);
  line-height: 1.8;
}

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

.accordion-icon {
  transition: transform 0.3s ease;
  font-size: 1.5rem;
  color: var(--primary);
}

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

.btn-primary {
  background-color: var(--primary);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.btn-primary:hover {
  background-color: var(--accent-yellow);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(58, 139, 93, 0.3);
}

.nutrition-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.nutrition-card {
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(106, 171, 210, 0.05) 100%);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
}

.nutrition-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(58, 139, 93, 0.15);
}

.nutrition-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.css-grid-pattern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.grid-item {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
  padding: 40px 20px;
  border-radius: 12px;
  color: white;
  text-align: center;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.grid-item:hover {
  transform: scale(1.05);
}

.form-section {
  background: linear-gradient(135deg, rgba(58, 139, 93, 0.05) 0%, rgba(106, 171, 210, 0.05) 100%);
  padding: 60px 0;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--bg-white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  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(58, 139, 93, 0.1);
}

.form-disclaimer {
  background-color: rgba(58, 139, 93, 0.1);
  border-left: 4px solid var(--primary);
  padding: 15px;
  border-radius: 4px;
  margin: 20px 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

footer {
  background-color: var(--text-dark);
  color: white;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.footer-column h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

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

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

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent-yellow);
}

.footer-info {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

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

.close {
  color: var(--text-light);
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: var(--primary);
}

.modal h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--primary);
}

.modal-content ul {
  list-style-position: inside;
  margin: 20px 0;
}

.modal-content li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: white;
  padding: 25px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  display: none;
}

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

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

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

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

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

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

.cookie-accept:hover {
  background-color: var(--accent-yellow);
  color: var(--text-dark);
}

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

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

.cookie-info {
  background-color: transparent;
  color: white;
  border: none;
  padding: 10px 25px;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-info:hover {
  color: var(--accent-yellow);
}

.thank-you-modal {
  text-align: center;
}

.thank-you-modal .modal-content {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.thank-you-modal h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

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

  h2 {
    font-size: 1.8rem;
  }

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

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

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

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

  .navbar-nav .nav-link {
    margin-left: 15px;
  }

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

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

  .cookie-button {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 50px 0;
  }

  .section-full {
    padding: 50px 0;
  }

  .hero-section {
    padding: 50px 0;
  }
}
