      :root {
        --primary: #006400; /* Dark Green */
        --secondary: #32cd32; /* Lime Green */
        --accent: #ffd700; /* Gold */
        --light: #f0f8f0; /* Soft Green-White */
        --dark: #013220; /* Deep Forest */
        --text: #2f4f4f; /* Dark Teal */
        --white: #ffffff;
        --gray: #e0e0e0;
      }

      * {
        margin: 0;
        padding: 0;
        scroll-behavior: smooth;
        box-sizing: border-box;
      }

      body {
        font-family: "Roboto", sans-serif;
        color: var(--text);
        background-color: var(--light);
        line-height: 1.8;
        scroll-behavior: smooth;

      }

      h1,
      h2,
      h3,
      h4 {
        font-family: "Oswald", sans-serif;
        font-weight: 700;
        margin-bottom: 1.2rem;
        color: var(--primary);
      }

      h1 {
        font-size: 3rem;
        text-align: center;
        margin: 2rem 0;
        margin-top: 0;
        color: var(--white);
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
      }

      h2 {
        font-size: 2.2rem;
        color: var(--primary);
        border-bottom: 4px solid var(--secondary);
        padding-bottom: 0.6rem;
        margin-top: 3.5rem;
        display: flex;
        align-items: center;
        gap: 12px;
      }

      h2 i {
        background: var(--primary);
        color: var(--white);
        padding: 10px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        text-align: center;
        font-size: 1.2rem;
      }

      h3 {
        font-size: 1.6rem;
        color: var(--dark);
        /* margin-top: 1.5rem; */
      }

      p {
        margin-bottom: 1rem;
      }
      li{
        list-style: none;
      }

      a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
      }

      a:hover {
        text-decoration: none;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Header & Navigation */
      header {
        background: linear-gradient(135deg, var(--primary), var(--dark));
        color: var(--white);
        padding: 1rem 0;
        /* position: fixed; */
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      }

      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-size: 1.9rem;
        font-weight: 700;
        color: var(--accent);
        letter-spacing: 1px;
        position: relative;
        z-index: 2000;
      }

      .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
      }

      .nav-links a {
        color: var(--white);
        font-weight: 500;
        transition: color 0.3s, transform 0.2s;
        position: relative;
      }

      .nav-links a:hover {
        color: var(--accent);
        transform: scale(1.05);
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: width 0.3s;
      }

      .nav-links a:hover::after {
        width: 100%;
      }





      /* .hero::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 50, 0, 0.7);
        z-index: 1;
      } */

      .hero-content {
        z-index: 2;
        max-width: 800px;
        padding: 2rem;
      }

      .hero-content p {
        font-size: 1.3rem;
        margin-top: 1rem;
      }

      /* Badges */
      .badge {
        display: inline-block;
        background: var(--accent);
        color: var(--dark);
        padding: 0.4rem 1rem;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.9rem;
        margin: 0.5rem 0;
      }

      /* Cards & Grids */
      .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
      }

      .card {
        background: var(--white);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        transition: transform 0.4s, box-shadow 0.4s;
        position: relative;
      }

      .card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      }

      .card-img {
        height: 180px;
        background-size: cover;
        background-position: center;
        position: relative;
      }

      .card-ribbon {
        position: absolute;
        top: 10px;
        right: 10px;
        background: var(--accent);
        color: var(--dark);
        font-size: 0.8rem;
        font-weight: 700;
        padding: 5px 10px;
        border-radius: 5px;
        z-index: 2;
      }

      .card-body {
        padding: 1.6rem;
      }

      .btn {
        display: inline-block;
        background: var(--primary);
        color: var(--white);
        padding: 0.8rem 1.6rem;
        border-radius: 30px;
        font-weight: 600;
        margin-top: 1rem;
        transition: all 0.3s;
        box-shadow: 0 4px 10px rgba(0, 100, 0, 0.3);
      }

      .btn:hover {
        background: var(--dark);
        transform: scale(1.05);
        text-decoration: none;
      }

      .icon-list {
        margin: 1rem 0;
        list-style: none;
      }

      .icon-list li {
        margin-bottom: 0.6rem;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .icon-list i {
        color: var(--secondary);
        font-size: 1.1rem;
      }

      /* Divider */
      .divider {
        height: 3px;
        background: linear-gradient(
          to right,
          transparent,
          var(--secondary),
          transparent
        );
        margin: 2.5rem 0;
        border-radius: 2px;
      }

      /* FAQ */
      .faq-container {
        margin: 2rem 0;
      }

      .faq-item {
        background: var(--white);
        padding: 1.2rem;
        border-radius: 12px;
        margin-bottom: 1.2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        transition: all 0.3s;
      }

      .faq-item:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      }

      .faq-question {
        font-weight: 600;
        color: var(--dark);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.2rem;
      }

      .faq-question i {
        color: var(--secondary);
        transition: transform 0.3s;
      }

      .faq-answer {
        margin-top: 0.8rem;
        color: var(--text);
        display: none;
      }

      .faq-answer.active {
        display: block;
      }

      /* Footer */
      footer {
        background: var(--dark);
        color: var(--white);
        padding: 2.5rem 0;
        padding-bottom: 0;
        margin-top: 4rem;
        text-align: center;
        p{
          margin-bottom: 0;
          padding-bottom: 10px;
        }
      }

      .footer-links {
        display: flex;
        justify-content: center;
        gap: 2.5rem;
        margin: 2rem 0;
        flex-wrap: wrap;
        font-size: 1rem;
      }

      .footer-links a {
        color: var(--accent);
        transition: color 0.3s;
      }

      .footer-links a:hover {
        color: var(--secondary);
      }

  

      .social-icons a {
        color: var(--white);
        font-size: 1.6rem;
        margin: 0 1rem;
        transition: color 0.3s, transform 0.2s;
      }

      .social-icons a:hover {
        color: var(--accent);
        transform: translateY(-3px);
      }

      .copyright {
        font-size: 0.9rem;
        color: #aaa;
        margin-top: 1.5rem;
      }

      /* Responsive */
      @media (max-width: 768px) {
        h1 {
          font-size: 2.4rem;
        }

        h2 {
          font-size: 1.8rem;
        }

        h2 i {
          width: 36px;
          height: 36px;
          font-size: 1.1rem;
          padding: 8px;
        }

        .nav-links {
          position: fixed;
          top: 70px;
          left: -100%;
          width: 100%;
          height: calc(100vh - 70px);
          background: var(--dark);
          flex-direction: column;
          align-items: center;
          padding-top: 3rem;
          transition: left 0.5s ease;
          z-index: 999;
        }

        .nav-links.active {
          left: 0;
        }

     

        .hero {
          height: 45vh;
        }

        .hero-content h1 {
          font-size: 2.2rem;
        }

        .card-grid {
          grid-template-columns: 1fr;
        }
      }


      /* === Burger Menu (Mobile) === */
.burger {
  width: 30px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
}

.burger span {
  display: block;
  height: 4px;
  background: white;
  border-radius: 2px;
  transition: 0.3s ease;
}


.burger:hover {
  transform: scale(1.1);
}

/* Show burger only on mobile */
@media (max-width: 768px) {
  .burger {
    display: flex;
    z-index: 1100;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    gap: 1.5rem;
    transition: left 0.4s ease, opacity 0.3s ease;
    list-style: none;
    margin: 0;
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }

  .nav-links.active {
    left: 0;
    opacity: 1;
  }

  .nav-links a {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    padding: 0.8rem 2rem;
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
  }

  .nav-links a:hover {
    color: var(--accent);
    background: rgba(255, 215, 0, 0.15);
    transform: scale(1.05);
  }

  .nav-links a i {
    margin-right: 10px;
    width: 24px;
    text-align: center;
  }
}





/*   НАСТРОЙКА SCROLL-BAR   */
::-webkit-scrollbar {
    width: 0.7em;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 100vw;
    margin: 10px 0;
}

::-webkit-scrollbar-thumb {
    border-radius: 100vw;
    background-color: green;
}


::-webkit-scrollbar-thumb:active {
    background-color: black;
}


/* === RESPONSIVE === */
      @media (max-width: 768px) {
        .hero-content h1 {
          font-size: 2.4rem;
        }
        .hero-subtitle {
          font-size: 1.1rem;
        }
        .hero-buttons {
          flex-direction: column;
          align-items: center;
        }
        .btn {
          width: 80%;
          text-align: center;
        }
      }


.tableWrapper {
  overflow-x: auto; /* Добавляем горизонтальный скролл */
  -webkit-overflow-scrolling: touch; /* Поддержка для мобильных устройств */
  margin-top: 1.25rem; /* Если нужно, можно подогнать отступ */
}

.table {
  width: 100%;
  border-collapse: collapse;
}

/* Если нужно: таблица будет адаптивной */
@media (max-width: 768px) {
  .table {
    min-width: 600px;  /* Устанавливаем минимальную ширину для таблицы */
  }
}

      /* === HERO СЕКЦИЯ === */
      .hero {
        position: relative;
        height: 80vh;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--white);
      }
      /* .hero::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        inset: 0;
        background-image: url("../images/hero.webp");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
      } */
      .heroBG{
        position: absolute;
        width: 100%;
        height: inherit;
        inset: 0;
        object-fit: cover;
        object-position: center;
      }

      .hero-content {
        z-index: 2;
        max-width: 900px;
        padding: 2rem;
        animation: fadeInUp 1s ease;
      }

      .hero-content h1 {
        margin-bottom: 1rem;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
      }

      .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-buttons {
        display: flex;
        gap: 1.2rem;
        justify-content: center;
        flex-wrap: wrap;
      }

      .btn {
        display: inline-block;
        padding: 0.9rem 2rem;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 0.95rem;
        letter-spacing: 0.8px;
        transition: all 0.3s;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
      }

      .btn-primary {
        background: var(--accent);
        color: var(--dark);
      }

      .btn-primary:hover {
        background: #e6c200;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(230, 194, 0, 0.3);
      }

      .btn-secondary {
        background: transparent;
        color: var(--white);
        border: 2px solid var(--secondary);
      }

      .btn-secondary:hover {
        background: rgba(50, 205, 50, 0.2);
        transform: translateY(-3px);
      }
      .stopScroll{
        overflow: hidden;
      }

      /* Анимация для hero */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }