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

:root {
  --accent-color: #3B6A4F;
  --text-primary: #2C3E2F;
  --text-secondary: #5A6B5C;
  --background-light: #F9FAFA;
  --background-white: #FFFFFF;
  --border-light: #E5E9E6;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-primary);
  background-color: var(--background-white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.75rem;
  font-weight: 700;
}

h2 {
  font-size: 2.25rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.75rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(59, 106, 79, 0.08);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--accent-color);
  transform: scale(1.04);
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: 40px;
  margin-right: 12px;
  border-radius: 8px;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.nav a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

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

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

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/hero-plants.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 70px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 106, 79, 0.85), rgba(59, 106, 79, 0.65));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.hero-content .disclaimer {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2rem;
  font-style: italic;
}

.section {
  padding: 80px 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--accent-color);
}

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

.content-with-image.reverse {
  flex-direction: row-reverse;
}

.content-text {
  flex: 1;
}

.content-image {
  flex: 0 0 45%;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(59, 106, 79, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(59, 106, 79, 0.25);
}

.btn-custom {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(59, 106, 79, 0.2);
}

.btn-custom:hover {
  background-color: #2F5640;
  color: white;
  text-decoration: none;
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(59, 106, 79, 0.3);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(59, 106, 79, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(59, 106, 79, 0.2);
}

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

.product-card-body {
  padding: 2rem;
}

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

.product-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.product-card ul li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.product-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.faq-item {
  background: white;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 2px 15px rgba(59, 106, 79, 0.08);
}

.faq-item h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  margin-top: 0;
  font-size: 1.25rem;
}

.disclaimer-box {
  background: #FFF9E6;
  border: 2px solid #E8D49C;
  border-radius: 10px;
  padding: 2.5rem;
  margin: 3rem 0;
}

.disclaimer-box h3 {
  color: #C4941F;
  margin-top: 0;
}

.disclaimer-box p {
  color: #8B7840;
  margin-bottom: 0.75rem;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(59, 106, 79, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(59, 106, 79, 0.1);
}

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

.contact-info {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-info h3 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.footer {
  background: var(--text-primary);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-section h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  margin-top: 0;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 9999;
  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: 2rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.modal.show {
  display: block;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 3rem;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

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

.modal-content h2 {
  color: var(--accent-color);
  margin-top: 0;
}

.modal-content h3 {
  color: var(--text-primary);
  margin-top: 2rem;
  font-size: 1.5rem;
}

.modal-content p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.modal-content ul {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-left: 1.5rem;
}

.success-popup {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

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

.success-content {
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.success-content h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  margin-top: 0;
  font-size: 2rem;
}

.success-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .content-with-image {
    flex-direction: column;
  }
  
  .content-with-image.reverse {
    flex-direction: column;
  }
  
  .content-image {
    flex: 0 0 100%;
  }
  
  .section {
    padding: 50px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.35rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    margin: 10% auto;
    padding: 2rem;
    width: 95%;
  }
}
