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

:root {
  --accent-color: #4B6F3E;
  --text-primary: #2C2C2C;
  --text-secondary: #5A5A5A;
  --bg-light: #FAF8F5;
  --bg-white: #FFFFFF;
  --border-light: #E8E4DF;
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  padding: 18px 0;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--accent-color);
  cursor: pointer;
}

section {
  padding: 85px 0;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding-top: 120px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(75, 111, 62, 0.85), rgba(75, 111, 62, 0.65));
  z-index: 1;
}

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

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.7;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: var(--accent-color);
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 45px;
  line-height: 1.6;
}

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

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

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

.content-text h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 18px;
}

.content-text p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.content-text ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.content-text ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.75;
}

.content-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 18px;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.card {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(75, 111, 62, 0.15);
}

.card h3 {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
}

.faq-item {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  font-size: 20px;
  color: var(--accent-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
}

.disclaimer-box {
  background: #FFF9E6;
  border-left: 4px solid var(--accent-color);
  border-radius: 10px;
  padding: 32px;
  margin: 40px 0;
}

.disclaimer-box h3 {
  font-size: 22px;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.disclaimer-box p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-form {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 40px auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-light);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

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

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

.submit-button {
  width: 100%;
  background-color: var(--accent-color);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(75, 111, 62, 0.3);
}

footer {
  background-color: var(--text-primary);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

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

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-section p,
.footer-section a {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 44, 44, 0.98);
  color: white;
  padding: 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.cookie-button:hover {
  transform: scale(1.04);
}

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

.modal.show {
  display: block;
}

.modal-content {
  background-color: var(--bg-white);
  margin: 60px auto;
  padding: 50px;
  max-width: 800px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 36px;
  font-weight: 300;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

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

.modal-content h2 {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.modal-content h3 {
  font-size: 22px;
  color: var(--accent-color);
  margin-top: 28px;
  margin-bottom: 14px;
}

.modal-content p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.success-message {
  display: none;
  background-color: #E8F5E9;
  border-left: 4px solid #4CAF50;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

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

.success-message p {
  margin: 0;
  color: #2E7D32;
  font-size: 16px;
  font-weight: 600;
}

.educational-notice {
  background: #E3F2FD;
  border: 2px solid #2196F3;
  border-radius: 10px;
  padding: 20px;
  margin: 30px 0;
  text-align: center;
}

.educational-notice p {
  margin: 0;
  color: #1565C0;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  nav ul.show {
    display: flex;
  }

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

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .section-title {
    font-size: 30px;
  }

  .content-with-image {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .card-grid {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .modal-content {
    margin: 20px;
    padding: 30px 20px;
  }

  section {
    padding: 60px 0;
  }
}
