:root {
  --primary-green: #32CD32;
  --text-dark: #2c3e50;
  --text-light: #5a6c7d;
  --bg-light: #fafff5;
  --bg-white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background: linear-gradient(135deg, #fafff5 0%, #f0fff0 100%);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: Verdana, sans-serif;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

h1 {
  font-size: 2.8rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  color: var(--primary-green);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.38s ease;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: transform 0.38s ease;
}

.logo:hover {
  transform: scale(1.05);
  text-decoration: none;
  color: var(--primary-green);
}

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

.nav-menu li a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.38s ease;
  font-size: 1rem;
}

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

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.7) 0%, rgba(34, 139, 34, 0.6) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1s ease;
}

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

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

.btn-primary {
  background: white;
  color: var(--primary-green);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.38s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: var(--primary-green);
}

.section {
  padding: 110px 0;
  position: relative;
}

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

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

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

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

.content-text {
  flex: 1;
}

.content-image {
  flex: 0 0 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

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

.table-responsive {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

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

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

th {
  font-weight: bold;
  font-size: 1.1rem;
}

tbody tr:hover {
  background: #f9fff9;
}

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

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.38s ease;
  border-left: 4px solid var(--primary-green);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.faq-item {
  background: white;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-green);
  transition: all 0.38s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
}

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

.disclaimer-box {
  background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
  border: 2px solid #ffd966;
  border-radius: 12px;
  padding: 2.5rem;
  margin: 3rem 0;
  box-shadow: var(--shadow);
}

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

.disclaimer-box ul {
  list-style: none;
  padding-left: 0;
}

.disclaimer-box ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.disclaimer-box ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #d4a017;
  font-weight: bold;
}

.info-banner {
  background: linear-gradient(135deg, var(--primary-green) 0%, #28a745 100%);
  color: white;
  padding: 1.5rem;
  text-align: center;
  border-radius: 12px;
  margin: 2rem 0;
  font-weight: 500;
  box-shadow: var(--shadow);
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 2rem 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: 0.8rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.38s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
}

.btn-submit {
  background: var(--primary-green);
  color: white;
  padding: 1rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.38s ease;
  width: 100%;
}

.btn-submit:hover {
  background: #28a745;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(50, 205, 50, 0.3);
}

.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

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

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

.footer-section 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: #bdc3c7;
  font-size: 0.9rem;
}

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

.cookie-banner.show {
  display: block;
  animation: slideUp 0.5s ease;
}

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.btn-cookie {
  background: var(--primary-green);
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.38s ease;
  white-space: nowrap;
}

.btn-cookie:hover {
  background: #28a745;
  transform: scale(1.05);
}

.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);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: block;
}

.modal-content {
  background-color: white;
  margin: 3% auto;
  padding: 3rem;
  border-radius: 12px;
  max-width: 800px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease;
}

.modal-close {
  color: #aaa;
  float: right;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.modal-content h2 {
  margin-bottom: 1.5rem;
  color: var(--primary-green);
}

.modal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.success-message {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border: 2px solid #28a745;
  color: #155724;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  display: none;
  animation: fadeIn 0.5s ease;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

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

  h2 {
    font-size: 1.8rem;
  }

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

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

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

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

  .content-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }

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

  .section {
    padding: 80px 0;
  }

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

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