:root {
  --primary-green: #5F9F5F;
  --soft-white: #FDFDFB;
  --light-gray: #F5F5F3;
  --text-dark: #333333;
  --text-medium: #666666;
  --border-soft: #E8E8E6;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--soft-white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-medium);
}

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

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

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.45s;
}

.logo-link:hover {
  opacity: 0.8;
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-green);
  letter-spacing: -0.3px;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.45s;
  padding: 0.5rem 1rem;
  border-radius: 12px;
}

.nav-link:hover {
  color: var(--primary-green);
  background-color: var(--light-gray);
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

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

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

.hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.btn-soft {
  display: inline-block;
  background-color: var(--primary-green);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.45s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(95, 159, 95, 0.3);
}

.btn-soft:hover {
  background-color: #4F8F4F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(95, 159, 95, 0.4);
  color: white;
}

.section-main {
  padding: 5rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-light {
  background-color: var(--soft-white);
}

.section-gray {
  background-color: var(--light-gray);
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.content-with-image.reverse {
  direction: rtl;
}

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

.content-text h2 {
  margin-bottom: 1.5rem;
}

.content-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s;
}

.content-image:hover img {
  transform: scale(1.03);
}

.info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
  transition: all 0.45s;
}

.info-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-green);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.disclaimer-box h3 {
  color: #C9A236;
  margin-bottom: 1.5rem;
}

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

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

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

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.45s;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(95, 159, 95, 0.1);
}

.footer-main {
  background-color: #2C3E2C;
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

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

.footer-grid {
  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.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.45s;
  cursor: pointer;
}

.footer-link:hover {
  color: var(--primary-green);
}

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

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--light-gray);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-dark);
  transition: all 0.45s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--primary-green);
  color: white;
}

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

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

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-medium);
}

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

.success-message {
  display: none;
  background: #E8F5E9;
  border: 2px solid var(--primary-green);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  color: var(--primary-green);
  text-align: center;
}

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

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .content-with-image {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-with-image.reverse {
    direction: ltr;
  }
  
  .section-main {
    padding: 3rem 0;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .modal-content {
    padding: 2rem;
  }
}
