body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #333333;
    position: relative;
    min-height: 100vh;
    background: url('../images/potato-field1.jpg') no-repeat center center fixed;
    background-size: cover;
  }

  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 245, 0.75);
    z-index: -1;
  }

  .background-video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }

  .background-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    opacity: 0.2;
  }

  .background-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 248, 245, 0.3);
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  header {
    background: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #6BAA75;
  }
  
  nav {
    position: relative;
  }

  .mobile-menu-button {
    display: none;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6BAA75;
    padding: 10px;
    transition: transform 0.3s ease;
    z-index: 100;
  }

  .nav-links {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }

  .nav-links a:hover {
    color: #6BAA75;
  }

  .banner-buttons {
    display: flex;
    gap: 20px;
  }

  .button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #6BAA75;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    border: 2px solid #6BAA75;
  }

  .button:hover {
    background-color: #558b5e;
    border-color: #558b5e;
  }

  .button.button-outline {
    background-color: transparent;
    color: #6BAA75;
  }

  .button.button-outline:hover {
    background-color: #6BAA75;
    color: white;
  }

  .banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-color: #333; /* Фоновый цвет, пока не загрузится видео или изображение */
  }

  .background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
  }

  .banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  .banner .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .banner-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
  }

  .banner h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
  }

  .banner p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #fff;
  }

  .catalog, .why, .potato, .reviews, .contact {
    padding: 50px 0;
  }
  
  h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
  }
  
  .product {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .product:hover {
    transform: translateY(-5px);
  }
  
  .product img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }
  
  .product h3 {
    font-size: 1.5em;
    margin: 15px 20px;
    color: #333;
  }
  
  .product p {
    margin: 0 20px 15px;
    color: #666;
    line-height: 1.4;
  }
  
  .product .button {
    display: inline-block;
    margin: 0 20px 20px;
    padding: 10px 25px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .product .button:hover {
    background-color: #45a049;
  }
  
  .product-card {
    background: #EFE6DA;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }
  
  .card-buttons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .advantages {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .review {
    background: #EFE6DA;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
  }
  
  .contact form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
  }

  .contact input[type="text"],
  .contact input[type="email"],
  .contact textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s;
  }

  .contact textarea {
    min-height: 150px;
    resize: vertical;
  }

  .contact input[type="text"]:focus,
  .contact input[type="email"]:focus,
  .contact textarea:focus {
    outline: none;
    border-color: #6BAA75;
  }

  .contact form .button {
    align-self: flex-start;
    padding: 15px 40px;
    font-size: 16px;
    cursor: pointer;
  }

  footer {
    background-color: #f8f8f8;
    padding: 30px 0;
    margin-top: 50px;
  }

  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  footer p {
    margin: 0;
    color: #666;
  }

  .social-links {
    display: flex;
    gap: 20px;
  }

  .social-link img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
  }

  .social-link:hover img {
    transform: scale(1.2);
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
  }
  
  .social-link {
    display: block;
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
    background: #fff;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .social-link:hover {
    transform: translateY(-5px);
  }
  
  .social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.7);
    transition: filter 0.3s ease;
  }
  
  .social-link:hover img {
    filter: brightness(1);
  }
  
  .price-table table {
    width: 100%;
    border-collapse: collapse;
    background: #EFE6DA;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .price-table th, .price-table td {
    padding: 12px;
    border: 1px solid #ccc;
    text-align: center;
  }
  
  .price-table th {
    background: #6BAA75;
    color: white;
  }
  
  .price-table td {
    background: #FAF8F5;
  }
  
  .benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 40px 0;
  }
  
  .benefit {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .benefit:hover {
    transform: translateY(-5px);
  }
  
  .benefit img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  
  .benefit h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 15px;
  }
  
  .benefit p {
    color: #666;
    line-height: 1.6;
  }
  
  .view-more {
    text-align: center;
    margin-top: 40px;
  }

  .view-more .button {
    font-size: 1.1em;
    padding: 12px 30px;
    transition: all 0.3s ease;
  }

  .view-more .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Общие стили для мобильных устройств */
  @media (max-width: 768px) {
    .background-video-wrapper video {
      display: none;
    }
    
    .background-video-wrapper {
      background: url('../images/potato-field1.jpg') no-repeat center center;
      background-size: cover;
      position: fixed;
      height: 100vh;
      height: -webkit-fill-available;
      width: 100%;
      overflow: hidden;
      z-index: -1;
    }

    .background-video-wrapper video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translateX(-50%) translateY(-50%);
      object-fit: cover;
      opacity: 0.2;
    }

    /* Стили для баннерного видео */
    .banner {
      position: relative;
      overflow: hidden;
      min-height: 100vh;
    }

    .banner video.background-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translateX(-50%) translateY(-50%);
      object-fit: cover;
    }

    .banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    .banner .container {
      position: relative;
      z-index: 2;
    }

    /* Адаптация шапки */
    .header {
      flex-direction: column;
      gap: 20px;
      padding: 20px 0;
      position: relative;
    }

    .mobile-menu-button {
      display: block;
    }

    .mobile-menu-button.active {
      transform: translateY(-50%) rotate(90deg);
    }

    nav {
      width: 100%;
    }

    .nav-links {
      display: none;
      width: 100%;
      flex-direction: column;
      gap: 0;
      text-align: center;
      background: rgba(255, 255, 255, 0.95);
      padding: 0;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 99;
    }

    .nav-links.active {
      display: flex;
    }

    .nav-links li {
      margin: 0;
      padding: 0;
      border-bottom: 1px solid rgba(107, 170, 117, 0.1);
    }

    .nav-links li:last-child {
      border-bottom: none;
    }

    .nav-links a {
      display: block;
      padding: 15px 20px;
      font-size: 16px;
      color: #333;
      transition: all 0.3s ease;
    }

    .nav-links a:hover {
      background-color: rgba(107, 170, 117, 0.1);
      color: #6BAA75;
    }

    /* Адаптация видео */
    .background-video-wrapper video,
    .banner video {
      object-fit: cover;
      height: 100%;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0.6;
    }

    .banner {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: rgba(0, 0, 0, 0.4);
    }

    .banner-content {
      padding: 40px 0;
      text-align: center;
    }

    /* Остальные мобильные стили */
    .banner .container {
      flex-direction: column;
      text-align: center;
    }

    .banner-content {
      text-align: center;
    }

    .banner-buttons {
      justify-content: center;
    }

    .banner h1 {
      font-size: 2.5em;
    }

    .banner p {
      font-size: 1.1em;
    }

    .banner-buttons {
      flex-direction: column;
      gap: 15px;
    }

    .banner .button {
      width: 100%;
      text-align: center;
    }

    .banner-buttons {
      flex-direction: column;
      gap: 15px;
      width: 100%;
    }

    .banner-buttons .button {
      display: block;
      text-align: center;
      padding: 12px 20px;
      font-size: 16px;
      width: 100%;
      box-sizing: border-box;
    }

    /* Адаптация каталога */
    .products {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .product {
      margin: 0 auto;
      max-width: 400px;
    }

    /* Адаптация прайс-листа */
    .price-table {
      overflow-x: auto;
    }

    .price-table table {
      min-width: 600px;
    }

    /* Адаптация формы */
    .contact form {
      gap: 15px;
      padding: 0;
      width: 100%;
    }

    .contact input[type="text"],
    .contact input[type="email"],
    .contact textarea {
      padding: 12px;
      width: 100%;
      box-sizing: border-box;
    }

    .contact textarea {
      min-height: 120px;
    }

    .contact form .button {
      width: 100%;
      padding: 12px 20px;
      align-self: stretch;
    }

    /* Адаптация футера */
    footer .container {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }

    .social-links {
      justify-content: center;
    }

    /* Адаптация для маленьких экранов */
    .banner h1 {
      font-size: 2em;
    }

    .banner p {
      font-size: 1em;
    }

    .product img {
      height: 180px;
    }

    .benefits {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .benefit {
      padding: 15px;
    }

    .benefit img {
      width: 60px;
      height: 60px;
      margin-bottom: 15px;
    }
  }

  @media (max-width: 768px) {
    .banner video {
      display: none;
    }
    
    .banner {
      background: url('../images/potato-field.jpg') no-repeat center center;
      background-size: cover;
      min-height: 500px;
      background-position: center;
      background-size: cover;
    }

    .background-video {
      display: none; /* Скрываем видео на мобильных устройствах */
    }

    .banner-content {
      width: 100%;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

    .banner h1 {
      font-size: 2em;
      margin-bottom: 15px;
    }

    .banner p {
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    .banner-buttons {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
  }

  /* Стили для планшетов */
  @media (min-width: 769px) and (max-width: 1024px) {
    .container {
      padding: 0 30px;
    }

    .banner h1 {
      font-size: 3em;
    }

    .products {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Responsive design */
  @media (max-width: 968px) {
    .banner .container {
      flex-direction: column;
      text-align: center;
    }

    .banner-content {
      text-align: center;
    }

    .banner-buttons {
      justify-content: center;
    }
  }