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

:root {
  --primary-bg: #F8FAF9;
  --primary-accent: #2E6B5A;
  --secondary-accent: #7AB8A9;
  --tertiary-accent: #D9C041;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --border-color: #e0e0e0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-dark);
  line-height: 1.75;
  font-size: 16.5px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 300;
  color: var(--text-dark);
}

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

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

h2 {
  font-size: 36px;
  margin-bottom: 1.5rem;
  color: var(--primary-accent);
}

h3 {
  font-size: 24px;
  color: var(--primary-accent);
  margin-bottom: 1rem;
}

header {
  background-color: rgba(248, 250, 249, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
  box-shadow: none;
}

header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background-color: rgba(248, 250, 249, 0.98);
}

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

.logo {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--primary-accent);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 1rem;
}

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

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}

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

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-accent);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .header-container {
    padding: 0 1rem;
  }
}

.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
}

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

section {
  padding: 130px 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

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

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-content.reverse {
  direction: rtl;
}

.section-content.reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .section-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.section-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 4px;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.intro-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  border-radius: 50%;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 30px rgba(46, 107, 90, 0.15);
  border-color: var(--primary-accent);
}

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

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

.card p {
  color: var(--text-light);
  font-size: 15px;
}

.nutrients-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
}

.nutrients-table th {
  background-color: var(--primary-accent);
  color: white;
  padding: 1rem;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}

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

.nutrients-table tr:hover {
  background-color: rgba(122, 184, 169, 0.1);
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-left: 3px solid var(--primary-accent);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(46, 107, 90, 0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

.faq-toggle {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--primary-accent);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  margin-top: 1rem;
  color: var(--text-light);
  display: none;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.disclaimer {
  background-color: rgba(217, 192, 65, 0.1);
  border-left: 4px solid var(--tertiary-accent);
  padding: 2rem;
  border-radius: 2px;
  margin: 2rem 0;
  color: var(--text-dark);
}

.disclaimer h3 {
  color: var(--primary-accent);
  margin-bottom: 1rem;
}

.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 130px 2rem;
}

@media (max-width: 768px) {
  .form-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.form-container {
  background: white;
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

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

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

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(46, 107, 90, 0.1);
}

.form-disclaimer {
  background-color: rgba(46, 107, 90, 0.05);
  padding: 1rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
  font-size: 13px;
  color: var(--text-light);
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  transition: all 0.4s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 107, 90, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-accent);
  border: 1px solid var(--primary-accent);
}

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

footer {
  background-color: var(--primary-accent);
  color: white;
  padding: 3rem 2rem 1.5rem;
  margin-top: 6rem;
}

.footer-content {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

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

.modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 60px;
}

.modal-content {
  background-color: white;
  padding: 2.5rem;
  border-radius: 4px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease;
}

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

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

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

.modal h2 {
  margin-bottom: 1.5rem;
}

.modal h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-accent);
  color: white;
  padding: 1.5rem 2rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

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

.cookie-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--tertiary-accent);
  color: var(--primary-accent);
  font-weight: 600;
}

.cookie-accept:hover {
  box-shadow: 0 4px 12px rgba(217, 192, 65, 0.4);
}

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

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

.cookie-learn {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
  }
}

.success-message {
  background-color: rgba(122, 184, 169, 0.2);
  border: 1px solid var(--secondary-accent);
  color: var(--primary-accent);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  text-align: center;
  display: none;
}

.success-message.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.role-list {
  list-style: none;
  margin: 1.5rem 0;
}

.role-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  color: var(--text-light);
  position: relative;
}

.role-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--primary-accent);
  font-weight: bold;
}

.quote-section {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(122, 184, 169, 0.05);
  border-radius: 4px;
  margin: 3rem 0;
}

.quote-section p {
  font-size: 18px;
  color: var(--primary-accent);
  font-style: italic;
  line-height: 1.8;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

.info-box {
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  border-left: 3px solid var(--primary-accent);
}

.info-box h3 {
  margin-bottom: 0.75rem;
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.contact-info p {
  margin-bottom: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info strong {
  color: var(--primary-accent);
}
