:root {
  --primary: #3F6A55;
  --primary-dark: #2d4d3d;
  --light-bg: #FAF8F5;
  --warm-white: #FFF9F3;
  --text-dark: #2C2C2C;
  --text-muted: #6B6B6B;
  --border-light: #E8E3DC;
}

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

body {
  font-family: system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--light-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 249, 243, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.35s ease;
}

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

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

.logo:hover {
  color: var(--primary-dark);
}

.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
}

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

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem;
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin: 1rem 0;
}

.mobile-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1.1rem;
}

.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(63, 106, 85, 0.4), rgba(250, 248, 245, 0.3));
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  font-weight: 300;
  letter-spacing: 1px;
}

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

.section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.section:nth-child(even) {
  background: var(--warm-white);
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

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

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

.content-text {
  flex: 1;
  min-width: 300px;
}

.content-image {
  flex: 1;
  min-width: 300px;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 9px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.1);
  transition: transform 0.35s ease;
}

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

.content-text h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.content-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.content-text ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.content-text li {
  margin: 0.8rem 0;
  color: var(--text-dark);
}

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

.card {
  background: white;
  padding: 2rem;
  border-radius: 9px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(63, 106, 85, 0.15);
}

.card h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.card p {
  color: var(--text-dark);
  line-height: 1.7;
}

.faq-item {
  background: white;
  padding: 2rem;
  margin: 1.5rem 0;
  border-radius: 9px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  border-left: 4px solid var(--primary);
}

.faq-item h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.faq-item p {
  color: var(--text-dark);
  line-height: 1.7;
}

.disclaimer-box {
  background: #FFF9F3;
  border: 2px solid var(--primary);
  border-radius: 9px;
  padding: 2.5rem;
  margin: 3rem 0;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.disclaimer-box h3 {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.disclaimer-box p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 4rem 2rem;
  border-radius: 9px;
  text-align: center;
  margin: 3rem 0;
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 9px;
  font-weight: 500;
  transition: all 0.35s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid var(--border-light);
  border-radius: 9px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.35s ease;
}

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

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

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

.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 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  text-decoration: none;
  display: block;
  margin: 0.5rem 0;
  transition: color 0.35s ease;
}

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

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

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

.footer-links a {
  cursor: pointer;
}

.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);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

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

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.35s ease;
}

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

.modal-content h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.modal-content h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  font-weight: 500;
}

.modal-content p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

.modal-content li {
  margin: 0.5rem 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 2px solid var(--border-light);
  padding: 1.5rem;
  box-shadow: 0 -3px 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;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  color: var(--text-dark);
  line-height: 1.6;
  min-width: 250px;
}

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

.success-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 3rem;
  border-radius: 9px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.3);
  z-index: 2100;
  text-align: center;
  max-width: 500px;
  width: 90%;
}

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

.success-popup h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.success-popup p {
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2050;
}

.overlay.active {
  display: block;
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
  
  .nav-links {
    display: flex;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .section-header h2 {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .content-with-image {
    gap: 2rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}
