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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  background-color: #F8F8F8;
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #F8F8F8;
  border-bottom: 1px solid #E0E0E0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  color: #5D9C59;
  font-family: 'Montserrat', sans-serif;
}

.logo img {
  height: 40px;
  width: 40px;
  margin-right: 10px;
}

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

nav a {
  text-decoration: none;
  color: #5D9C59;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #C2DEDC;
}

body {
  padding-top: 80px;
}

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

section {
  padding: 80px 0;
}

.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
  text-align: center;
}

section h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #5D9C59;
}

.intro-section {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.intro-content p {
  margin-bottom: 20px;
}

.pillars {
  background-color: #F8F8F8;
  padding: 80px 0;
}

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

.pillar-card {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  text-align: center;
}

.pillar-card:hover {
  border-color: #C2DEDC;
}

.pillar-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  max-height: 200px;
}

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

.pillar-card p {
  color: #666;
  line-height: 1.6;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.two-column img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  max-height: 400px;
}

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

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

.text-content {
  padding: 20px 0;
}

.text-content h3 {
  margin-bottom: 20px;
}

.text-content p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.8;
}

.nutrients-section {
  background-color: #FFFFFF;
}

.nutrients-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.nutrient-item {
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #5D9C59;
}

.nutrient-item h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #5D9C59;
  margin-bottom: 10px;
}

.nutrient-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.energy-section {
  background-color: #F8F8F8;
  padding: 80px 0;
}

.energy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.energy-text h3 {
  margin-bottom: 20px;
}

.energy-text p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.8;
}

.faq-section {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  margin-bottom: 30px;
  background-color: #F8F8F8;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: #F8F8F8;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #5D9C59;
  border-bottom: 2px solid #C2DEDC;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #E8F5E9;
}

.faq-answer {
  padding: 20px;
  display: none;
  background-color: #FFFFFF;
  color: #666;
  line-height: 1.8;
}

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

.themes-section {
  background-color: #F8F8F8;
  padding: 80px 0;
}

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

.theme-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.theme-card:hover {
  border-color: #5D9C59;
  transform: translateY(-5px);
}

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

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

.theme-card h3 {
  margin-bottom: 15px;
  text-align: left;
}

.theme-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.ingredients-section {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

.ingredients-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ingredient-item {
  background-color: #F8F8F8;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #5D9C59;
}

.ingredient-item h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #5D9C59;
  margin-bottom: 8px;
}

.ingredient-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.ingredients-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.contact-section {
  background-color: #F8F8F8;
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-form {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
}

.contact-form h3 {
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #C2DEDC;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

.form-disclaimer {
  font-size: 12px;
  color: #999;
  margin-bottom: 20px;
  background-color: #F8F8F8;
  padding: 10px;
  border-radius: 4px;
  border-left: 3px solid #FFD4B2;
}

.btn {
  background-color: #5D9C59;
  color: #F8F8F8;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
}

.btn:hover {
  background-color: #C2DEDC;
  color: #333;
  transform: scale(1.02);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #5D9C59;
  margin-bottom: 10px;
}

.contact-info-item p {
  color: #666;
  line-height: 1.8;
}

.cta-section {
  background: linear-gradient(135deg, #5D9C59 0%, #C2DEDC 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.cta-section h2 {
  color: white;
  margin-bottom: 30px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background-color: #FFD4B2;
  color: #333;
  padding: 14px 40px;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.cta-btn:hover {
  background-color: #FFE4C4;
}

footer {
  background-color: #333;
  color: #F8F8F8;
  padding: 40px 0 20px;
  margin-top: 80px;
  border-top: 1px solid #555;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #5D9C59;
}

.footer-section p {
  font-size: 13px;
  line-height: 1.8;
  color: #CCC;
}

.footer-section a {
  color: #5D9C59;
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
  margin-bottom: 8px;
  display: block;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #C2DEDC;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #555;
  font-size: 12px;
  color: #999;
}

.footer-bottom p {
  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);
  overflow: auto;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #F8F8F8;
  margin: auto;
  padding: 40px;
  border-radius: 8px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.close-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #000;
}

.modal h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.modal h3 {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 10px;
}

.modal p {
  text-align: left;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.modal ul, .modal ol {
  text-align: left;
  color: #666;
  line-height: 1.8;
  margin-left: 20px;
  margin-bottom: 15px;
}

.modal li {
  margin-bottom: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #F8F8F8;
  padding: 20px;
  display: none;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

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

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-accept {
  background-color: #5D9C59;
  color: #F8F8F8;
}

.cookie-accept:hover {
  background-color: #4A8349;
}

.cookie-reject {
  background-color: #999;
  color: #F8F8F8;
}

.cookie-reject:hover {
  background-color: #777;
}

.cookie-more {
  background-color: #C2DEDC;
  color: #333;
}

.cookie-more:hover {
  background-color: #B0D4D0;
}

.thank-you-message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  z-index: 2500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.thank-you-message.show {
  display: block;
}

.thank-you-message h2 {
  color: #5D9C59;
  margin-bottom: 15px;
}

.thank-you-message p {
  color: #666;
  font-size: 16px;
}

.disclaimer-box {
  background-color: #FFF9E6;
  border-left: 4px solid #FFD4B2;
  padding: 20px;
  margin: 30px 0;
  border-radius: 4px;
}

.disclaimer-box h4 {
  color: #5D9C59;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.disclaimer-box p {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

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

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

  section h2 {
    font-size: 28px;
  }

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

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

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

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

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

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

  nav ul {
    gap: 15px;
  }

  nav a {
    font-size: 12px;
  }

  .header-content {
    height: 60px;
  }

  body {
    padding-top: 60px;
  }

  .logo {
    font-size: 18px;
  }

  .logo img {
    height: 30px;
    width: 30px;
    margin-right: 8px;
  }

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .modal-content {
    padding: 20px;
  }

  .modal h2 {
    font-size: 22px;
  }

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

  section {
    padding: 40px 0;
  }
}
