:root {
  --primary-color: #4B6F5E;
  --spring-bg: #F7FCF8;
  --summer-bg: #FFF9F0;
  --autumn-bg: #FFF5EB;
  --winter-bg: #F5F7FA;
  --text-color: #2C3E35;
  --text-muted: #6B7D75;
  --border-color: #E5EBE8;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #FAFBFA;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(75, 111, 94, 0.05);
  z-index: 1000;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

main {
  margin-top: 80px;
}

section {
  padding: 4rem 0;
  position: relative;
}

section:nth-child(even) {
  background-color: #FFFFFF;
}

h1, h2, h3 {
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), #6B8E7D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2rem;
  color: var(--primary-color);
}

h3 {
  font-size: 1.5rem;
  color: var(--text-color);
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero {
  background: linear-gradient(135deg, var(--spring-bg) 0%, var(--summer-bg) 50%, var(--autumn-bg) 100%);
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(75, 111, 94, 0.15);
  margin-top: 2rem;
}

.content-section {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.content-section img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(75, 111, 94, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-section img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(75, 111, 94, 0.15);
}

.content-section.reverse {
  flex-direction: row-reverse;
}

.text-content {
  flex: 1;
}

.card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(75, 111, 94, 0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(75, 111, 94, 0.12);
}

.season-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 5px 20px rgba(75, 111, 94, 0.1);
}

.season-card.spring {
  border-top: 4px solid #8BC34A;
  background: var(--spring-bg);
}

.season-card.summer {
  border-top: 4px solid #FFC107;
  background: var(--summer-bg);
}

.season-card.autumn {
  border-top: 4px solid #FF9800;
  background: var(--autumn-bg);
}

.season-card.winter {
  border-top: 4px solid #2196F3;
  background: var(--winter-bg);
}

.ingredient-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.ingredient-list li {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.ingredient-list li:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateX(5px);
}

.disclaimer {
  background: #FFF9E6;
  border-left: 4px solid #FFB300;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: #5D4E37;
}

.faq-item {
  margin-bottom: 1.5rem;
  background: #FFFFFF;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(75, 111, 94, 0.05);
}

.faq-item h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.contact-form {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(75, 111, 94, 0.1);
  max-width: 600px;
  margin: 2rem auto;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.btn-submit {
  background: var(--primary-color);
  color: #FFFFFF;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background: #3D5A4C;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(75, 111, 94, 0.2);
}

.cta-text {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

footer {
  background: var(--text-color);
  color: #FFFFFF;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  color: #FFFFFF;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: #B8C5BF;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.8;
  display: block;
  margin-bottom: 0.5rem;
}

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

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #E5EBE8;
}

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

.policy-link {
  cursor: pointer;
  color: #B8C5BF;
  text-decoration: underline;
}

.policy-link:hover {
  color: #FFFFFF;
}

.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: #FFFFFF;
  margin: 5% auto;
  padding: 3rem;
  border-radius: 20px;
  max-width: 800px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 1500;
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
}

.cookie-banner button {
  background: var(--primary-color);
  color: #FFFFFF;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-banner button:hover {
  background: #3D5A4C;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  
  nav.active {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .content-section {
    flex-direction: column;
    gap: 2rem;
  }
  
  .content-section.reverse {
    flex-direction: column;
  }
  
  .content-section img {
    max-width: 100%;
  }
  
  .ingredient-list {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .modal-content {
    margin: 10% 5%;
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  section {
    padding: 2rem 0;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .card,
  .season-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}
