:root {
  --primary-color: #00FF7F;
  --bg-tint: #f8fff9;
  --text-dark: #1a1a1a;
  --text-gray: #4a4a4a;
  --border-light: #e8f5ed;
  --white: #ffffff;
  --transition: 0.28s ease;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

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

.logo {
  font-size: 26px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

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

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, var(--bg-tint), var(--white));
  padding: 120px 30px 80px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--text-dark);
}

.hero-highlight {
  color: var(--primary-color);
}

.hero p {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 35px;
}

.section {
  padding: 100px 30px;
}

.section-alt {
  background: var(--bg-tint);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 50px;
  line-height: 1.7;
}

.content-with-image {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 50px;
}

.content-text {
  flex: 1;
}

.content-image {
  flex: 0 0 400px;
  border-radius: 12px;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-image-left {
  order: -1;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.section-alt .card {
  background: var(--white);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 255, 127, 0.1);
}

.card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

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

.icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.table-responsive {
  overflow-x: auto;
  margin: 40px 0;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

.info-table th,
.info-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.info-table th {
  background: var(--bg-tint);
  font-weight: 600;
  color: var(--text-dark);
}

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

.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
}

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

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

.disclaimer-box {
  background: #fff8e1;
  border-left: 4px solid var(--primary-color);
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
}

.disclaimer-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.disclaimer-box p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.cta-section {
  text-align: center;
  padding: 80px 30px;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #00e070;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 255, 127, 0.3);
}

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

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

.form-control {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: 15px;
  transition: var(--transition);
  font-family: inherit;
}

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

.contact-section {
  background: var(--bg-tint);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.contact-info p {
  color: var(--text-gray);
  margin-bottom: 12px;
  line-height: 1.7;
}

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 30px 30px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

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

.footer p,
.footer a {
  color: #b0b0b0;
  line-height: 1.8;
  text-decoration: none;
  font-size: 14px;
}

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

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

.footer-links li {
  margin-bottom: 12px;
}

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

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

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 50px;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.close {
  position: absolute;
  right: 25px;
  top: 20px;
  color: var(--text-gray);
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  transition: var(--transition);
}

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

.modal-content h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.modal-content h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.modal-content p,
.modal-content ul {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 15px;
}

.modal-content ul {
  padding-left: 25px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 25px;
  z-index: 1500;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #d0d0d0;
}

.success-message {
  display: none;
  background: var(--primary-color);
  color: var(--text-dark);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

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

  .hero p {
    font-size: 17px;
  }

  .section {
    padding: 60px 20px;
  }

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

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

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

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .modal-content {
    padding: 30px 25px;
    margin: 10% auto;
  }

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