:root {
  --color-primary: #fdf2f8;
  --color-accent-dark: #d81b60;
  --color-accent-darker: #880e4f;
  --color-white: #ffffff;
  --color-light-pink: #fff0f5;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Lora', 'Georgia', serif;
  font-size: 18px;
  line-height: 1.8;
  color: #2c2c2c;
  background-color: var(--color-white);
  overflow-x: hidden;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Didot', serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.05);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.4rem;
  }
}

header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease-out;
  padding: 1rem 0;
}

header.scrolled {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

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

@media (max-width: 768px) {
  .header-container {
    padding: 0 28px;
  }
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  color: var(--color-accent-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-menu a {
  text-decoration: none;
  color: #2c2c2c;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.nav-menu a:hover {
  color: var(--color-accent-dark);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 72px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 28px;
  }
}

section {
  padding: 120px 0;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

section:nth-child(odd) {
  background-color: var(--color-white);
}

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

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

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

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

.hero h1 {
  font-size: 3.2rem;
  color: var(--color-white);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero {
    height: 400px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

.text-block {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.text-block p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

@media (max-width: 768px) {
  .row {
    flex-direction: column;
    gap: 2rem;
  }
}

.row.reversed {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .row.reversed {
    flex-direction: column;
  }
}

.col-60 {
  flex: 0 0 60%;
}

.col-40 {
  flex: 0 0 40%;
}

.col-70 {
  flex: 0 0 70%;
}

.col-30 {
  flex: 0 0 30%;
}

.col-50 {
  flex: 0 0 50%;
}

@media (max-width: 768px) {
  .col-60, .col-40, .col-70, .col-30, .col-50 {
    flex: 0 0 100%;
  }
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.4s ease-out;
}

.image-wrapper:hover img {
  transform: scale(1.035);
  filter: overlay;
}

.image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(216, 27, 96, 0.08);
  opacity: 0;
  transition: opacity 0.4s ease-out;
  border-radius: 8px;
}

.image-wrapper:hover::after {
  opacity: 1;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

thead {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent-darker) 100%);
  color: var(--color-white);
}

th {
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.05em;
}

td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #e0e0e0;
}

tbody tr:hover {
  background-color: var(--color-primary);
  transition: background-color 0.3s ease;
}

tbody tr:last-child td {
  border-bottom: none;
}

ul, ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-light-pink) 100%);
  padding: 1.5rem;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--color-light-pink) 0%, var(--color-primary) 100%);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #1a1a1a;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--color-accent-dark);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  background: var(--color-white);
  border-top: 2px solid #f0f0f0;
}

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

.faq-answer p {
  margin: 0;
  line-height: 1.8;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

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

.comparison-col {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-accent-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-col h3 {
  margin-top: 0;
  color: var(--color-accent-dark);
}

.comparison-col ul {
  padding-left: 1.5rem;
}

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

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

.plant-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--color-accent-dark);
}

.plant-card h3 {
  margin-top: 0;
  color: var(--color-accent-dark);
}

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

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

.food-item {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.food-item:hover {
  transform: translateY(-8px);
}

.food-item-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.food-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.food-item:hover .food-item-image img {
  transform: scale(1.05);
}

.food-item-content {
  padding: 1.5rem;
}

.food-item-content h3 {
  margin-top: 0;
  color: var(--color-accent-dark);
  font-size: 1.3rem;
}

.food-item-content p {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: #555;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent-darker) 100%);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(216, 27, 96, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(216, 27, 96, 0.4);
}

footer {
  background: #1a1a1a;
  color: var(--color-white);
  padding: 3rem 0;
  font-size: 0.95rem;
  border-top: 2px solid var(--color-accent-dark);
}

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

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

.footer-section h4 {
  color: var(--color-accent-dark);
  margin-bottom: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

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

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #999;
}

.footer-message {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  margin-bottom: 1rem;
}

.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-y: auto;
}

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

.modal-content {
  background-color: var(--color-white);
  margin: 0 auto;
  padding: 2rem;
  border-radius: 8px;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease-out;
}

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

.modal-close {
  float: right;
  font-size: 2rem;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.modal-content h2 {
  clear: both;
  margin-top: 0;
}

.modal-content p, .modal-content li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #2c2c2c;
}

.modal-content ul, .modal-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: var(--color-white);
  padding: 1.5rem;
  z-index: 1500;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-content {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 72px;
}

@media (max-width: 768px) {
  .cookie-content {
    padding: 0 28px;
  }
}

.cookie-text {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

form {
  max-width: 600px;
  margin: 2rem 0;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a1a1a;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  transition: border 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent-dark);
  box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-disclaimer {
  font-size: 0.9rem;
  color: #555;
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--color-primary);
  border-left: 3px solid var(--color-accent-dark);
  border-radius: 4px;
}

.success-message {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #2e7d32;
  display: none;
}

.success-message.show {
  display: block;
}

.infographic {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-light-pink) 100%);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid var(--color-accent-dark);
}

.infographic img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1rem 0;
}

.disclaimer-block {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #ff9800;
  margin: 2rem 0;
}

.disclaimer-block h2 {
  color: #e65100;
  margin-top: 0;
}

.disclaimer-block p {
  color: #4e342e;
  margin: 0.8rem 0;
  line-height: 1.8;
}

.closing-section {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-light-pink) 100%);
  border-radius: 8px;
  margin: 2rem 0;
}

.closing-section h2 {
  margin-top: 0;
}

.closing-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .closing-links {
    flex-direction: column;
    gap: 1rem;
  }
}
