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

body {
  font-family: system-ui, -apple-system, 'Open Sans', sans-serif;
  color: #2d3436;
  line-height: 1.6;
  background: #fafaf9;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
}

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: #4a5568;
  font-size: 1.05rem;
}

.accent-color {
  color: #388E3C;
}

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

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #388E3C;
  text-decoration: none;
  transition: all 0.35s ease;
}

.logo:hover {
  opacity: 0.8;
}

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

.nav-menu a {
  color: #2d3436;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.35s ease;
}

.nav-menu a:hover {
  color: #388E3C;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(rgba(56, 142, 60, 0.1), rgba(250, 250, 249, 0.95)), url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.3rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.section {
  padding: 100px 0;
  transition: all 0.35s ease;
}

.section-light {
  background: #ffffff;
}

.section-soft {
  background: #f8faf8;
}

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

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

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

.text-content {
  flex: 1;
}

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

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.image-content img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.12);
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

table {
  width: 100%;
  background: white;
  border-collapse: collapse;
}

table th {
  background: #388E3C;
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid #e8e8e8;
}

table tr:last-child td {
  border-bottom: none;
}

table tr:hover {
  background: #f8faf8;
}

.faq-item {
  background: white;
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: #388E3C;
  margin-bottom: 0.5rem;
}

.disclaimer-box {
  background: #fff8e1;
  border-left: 4px solid #ffa726;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: #f57c00;
  margin-bottom: 1rem;
}

.cta-box {
  background: linear-gradient(135deg, #388E3C 0%, #2e7d32 100%);
  border-radius: 14px;
  padding: 3rem;
  text-align: center;
  color: white;
  margin: 3rem 0;
  box-shadow: 0 6px 12px rgba(56, 142, 60, 0.2);
}

.cta-box h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #388E3C;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.35s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: #2e7d32;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(56, 142, 60, 0.3);
  color: white;
}

.btn-light {
  background: white;
  color: #388E3C;
}

.btn-light:hover {
  background: #f8faf8;
  color: #2e7d32;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2d3436;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.35s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #388E3C;
  box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.1);
}

.contact-info {
  background: white;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  color: #388E3C;
  margin-bottom: 1.5rem;
}

.contact-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.contact-item strong {
  color: #2d3436;
  min-width: 80px;
}

footer {
  background: #1a1a1a;
  color: #e8e8e8;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

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

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

.footer-section h4 {
  color: #388E3C;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
  color: #b8b8b8;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.35s ease;
}

.footer-section a:hover {
  color: #388E3C;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.educational-notice {
  background: #e8f5e9;
  border: 2px solid #388E3C;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.educational-notice p {
  color: #2e7d32;
  font-weight: 600;
  margin: 0;
}

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

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

.close-modal {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: #888;
  cursor: pointer;
  transition: color 0.35s ease;
}

.close-modal:hover {
  color: #388E3C;
}

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

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

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

.success-popup h3 {
  color: #388E3C;
  margin-bottom: 1rem;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2400;
}

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

  h2 {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.3rem;
  }

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

  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .content-with-image {
    flex-direction: column;
  }

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

  .image-content {
    flex: 1;
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  table {
    font-size: 0.9rem;
  }

  table th,
  table td {
    padding: 0.7rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .header-container {
    padding: 0 1rem;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .modal-content {
    padding: 2rem 1.5rem;
    margin: 10% 1rem;
  }
}
