:root {
  --primary-green: #27AE60;
  --cream-bg: #FBF8F3;
  --light-green-bg: #F0F7F4;
  --text-dark: #2C3E50;
  --text-medium: #5A6C7D;
  --text-light: #7F8C8D;
  --white: #FFFFFF;
  --border-light: #E8EDE9;
  --shadow-soft: rgba(0, 0, 0, 0.05);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--cream-bg);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

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

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: all 0.45s ease;
}

a:hover {
  color: #1E8449;
  text-decoration: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 10px var(--shadow-soft);
  z-index: 1000;
  transition: all 0.45s ease;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
  transition: all 0.45s ease;
}

.logo:hover {
  color: #1E8449;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.45s ease;
}

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

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(251, 248, 243, 0.95), rgba(240, 247, 244, 0.9));
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.section {
  padding: 120px 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.content-block {
  margin-bottom: 3rem;
}

.image-left, .image-right {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
}

.image-left img, .image-right img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 7px 25px var(--shadow-soft);
}

.image-left img {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.image-right img {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-green);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.45s ease;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.btn-primary:hover {
  background-color: #1E8449;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
  color: var(--white);
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow-soft);
}

thead {
  background-color: var(--primary-green);
  color: var(--white);
}

th, td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

tbody tr:hover {
  background-color: var(--light-green-bg);
  transition: all 0.45s ease;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.45s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px var(--shadow-soft);
  transform: translateY(-3px);
}

.faq-item h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.disclaimer-box {
  background: #FFF9E6;
  border-left: 4px solid var(--primary-green);
  padding: 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.disclaimer-box h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 7px 25px var(--shadow-soft);
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

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

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

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

.footer h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer p, .footer a {
  color: #BDC3C7;
  font-size: 0.95rem;
}

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

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

.educational-notice {
  background: var(--light-green-bg);
  border: 2px solid var(--primary-green);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
  text-align: center;
  font-weight: 600;
  color: var(--primary-green);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.98);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px var(--shadow-soft);
  z-index: 9999;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
}

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

.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);
  backdrop-filter: blur(5px);
}

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

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

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

.close {
  color: var(--text-light);
  float: right;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  transition: all 0.45s ease;
}

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

.success-popup {
  text-align: center;
  padding: 2rem;
}

.success-popup h2 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.icon-checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 3rem;
  color: var(--white);
}

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

  h2 {
    font-size: 1.7rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .section {
    padding: 80px 0;
  }

  .image-left, .image-right {
    flex-direction: column;
  }

  .image-left img, .image-right img {
    float: none;
    margin: 0 0 1.5rem 0;
    max-width: 100%;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 2rem;
  }
}

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

  .hero p {
    font-size: 1.1rem;
  }

  .modal-content {
    padding: 2rem;
    width: 95%;
  }
}
