body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
  }
  
  .header__top {
    background: #f2f4f5;
    font-size: 12px;
    color: #333;
  }
  
  .header__top a {
    color: #84b441;
    text-decoration: none;
    font-weight: 500;
  }
  
  .header__contacts {
    display: flex;
    gap: 15px;
    font-size: 13px;
    align-items: center;
  }
  .header__contacts i {
    margin-right: 5px;
    color: #84b441;
  }
  
  .header__main {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    position: relative;
    z-index: 100;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #7cb342;
  }
  .logo span {
    color: #333;
  }
  
  .nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding-left: 0;
    margin: 0;
  }
  .nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
  }
  
  .header__icons {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
  }
  .header__icons a {
    color: #333;
    font-size: 16px;
    position: relative;
  }
  .cart-count {
    background: #7cb342;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -10px;
  }
  
  .burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 1px;
  }
  
  @media (max-width: 768px) {
    .nav
   
     {
            display: none;
            position: absolute;
            top: 52px;
            width: 68%;
            height: 100vh;
            right: 0px;
            background: white;
            border: 1px solid #eee;
            padding: 15px;
        }
    .nav.active {
      display: block;
    }
    .nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .burger {
      display: flex;
    }
  }
  
  /* Sticky */
  .sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  @keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
  }
  .hero {
   background-attachment: fixed !important;
    position: relative;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 0 20px;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3); /* полупрозрачный фильтр */
    z-index: 1;
  }
  
  .hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
  }
  
  .hero__content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  
  .hero__content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #ddd;
  }
  
  .hero__btn {
    display: inline-block;
    background-color: #8bc34a;
    color: #fff;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .hero__btn:hover {
    background-color: #7cb342;
  }
  .features {
    padding: 50px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
  }
  .features__image {
    width: 100%;
}
  .features__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 40px;
  }
  
  .features__icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .feature {
    flex: 1 1 150px;
    max-width: 160px;
  }
  
  .feature i {
    font-size: 56px;
    color: #7bb231;
    margin-bottom: 10px;
  }
  
  .feature h4 {
    font-size: 16px;
    color: #333;
  }
  
  .features__about {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 40px;
  }
  
  .features__text {
    flex: 1 1 60%;
    text-align: left;
  }
  
  .features__text small {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #777;
  }
  
  .features__text h2 {
    font-size: 28px;
    margin: 10px 0;
    color: #222;
  }
  
  .features__text h2 span {
    color: #7bb231;
  }
  
  .features__text p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
  }
  
  .features__text .btn {
    background: #7bb231;
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .features__video {
    flex: 1 1 35%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .video-circle {
    position: relative;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .video-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
 .features .container{
    max-width: 1170px;
    margin: 0 auto;
    flex-direction: column;
    padding: 0 15px;
  }
  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
  }

  .produce {
    background-color: #f5f7f6;
    padding: 70px 0px;
  
  }
  
  .produce__container {
    display: flex;
  

    margin: auto;
    align-items: center;
    gap: 30px;
  }
  
  .produce__image {
  flex: 1;
  background-attachment: fixed!important;
  position: relative;
height: 500px;
  }
  
  .produce__image img {
    width: 100%;
    height: 100%;
    position: fixed;
    border-radius: 6px;
    object-fit: cover;
  }
  
  .produce__content {
   flex: 1;
    padding: 30px;
  }
  
  .produce__content small {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #777;
  }
  
  .produce__content h2 {
    font-size: 28px;
    margin: 10px 0 20px;
    color: #222;
  }
  
  .produce__content h2 span {
    color: #7bb231;
  }
  
  .produce__content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
  }
  
  .produce__features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
  }
  
  .produce__features  .feature {
    display: flex;
    align-items: flex-start;
    gap: 0px;
    flex-direction: column;
    width: 45%;
    flex: 1 1 250px;
    max-width: 100%;
  }
  .feature__content{
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .produce__features .feature i {
    font-size: 36px;
    color: #7bb231;
    margin-top: 6px;
  }
  
  .produce__features .feature h4 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
  }
  
 .produce__features .feature p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
  }
  .farming-practices {
    padding: 60px 20px;
    background-color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
  }
  
  .farming-practices__header small {
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
  }
  
  .farming-practices__header h2 {
    margin: 10px 0;
    font-size: 26px;
    color: #222;
  }
  
  .farming-practices__header h2 span {
    color: #7bb231;
  }
  
  .farming-practices__header .divider {
    margin-top: 10px;
    color: #7bb231;
    font-size: 20px;
  }
  
  .farming-practices__grid

   {
      display: grid
  ;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 30px;
      margin-top: 40px;
      width: 100%;
  }
  
  .farming-practices__item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .farming-practices__item:hover {
    transform: translateY(-5px);
  }
  
  .farming-practices__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .farming-practices__item .icon {
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    padding: 12px;
    margin-top: -20px;
    margin-bottom: 10px;
    border: 2px solid #e6e6e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .farming-practices__item .icon i {
    font-size: 30px;
    color: #7bb231;
  }
  
  .farming-practices__item h4 {
    font-size: 16px;
    margin: 10px 0 5px;
    color: #333;
  }
  
  .farming-practices__item p {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
  }
  .farming-practices .container{
    flex-direction: column;
  }
  .subscribe-block {
  background-attachment: fixed!important;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    color: #fff;
  }
  
  .subscribe-block::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
  }
  
  .subscribe-block__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .subscribe-block__label {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #ccc;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .subscribe-block__title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .subscribe-block__divider {
    font-size: 22px;
    color: #7bb231;
    margin-bottom: 20px;
  }
  
  .subscribe-block__text {
    font-size: 15px;
    line-height: 1.7;
    color: #eee;
    margin-bottom: 30px;
  }
  
  .subscribe-block__form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .subscribe-block__form input {
    padding: 14px 20px;
    width: 70%;
    max-width: 400px;
    border: none;
    outline: none;
    font-size: 16px;
    border-radius: 3px 0 0 3px;
  }
  a{
    text-decoration: none;
    color: inherit;
  }
  .subscribe-block__form a {
    
    background-color: #7bb231;
    color: white;
    padding: 14px 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 3px 3px 0;
    transition: background 0.3s ease;
  }
  
  .subscribe-block__form a:hover {
    background-color: #679c2b;
  }
  .contact-us{
    padding: 80px 0px;
    background: #fafafa;
  }
  
  .contact-us__container {
    display: flex;
 
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: stretch;
  }
  
  .contact-us__form {
    flex: 1 1 50%;
    max-width: 600px;
  }
  
  .contact-us__form .contact-us__label {
    font-size: 13px;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .contact-us__form h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  
  .contact-us__form .green {
    color: #7bb231;
  }
  
  .contact-us__icon {
    font-size: 22px;
    color: #7bb231;
    margin-bottom: 30px;
  }
  .contact-us__form{
    display: flex
;
    flex-direction: column;
}
  .contact-us__form form input,
  .contact-us__form form textarea {
    width: auto;
    padding: 14px 18px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    font-size: 15px;
    border-radius: 3px;
  }
  
  .contact-us__form .contact-us__row {
    display: flex;
    gap: 20px;
  }
  
  .contact-us__form .contact-us__row input {
    flex: 1;
  }
  
  .contact-us__form textarea {
    resize: vertical;
    height: 120px;
  }
  
  .contact-us__form button {
    background: #7bb231;
    color: #fff;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }
  
  .contact-us__form button:hover {
    background: #679c2b;
  }
  
  .contact-us__map {
    flex: 1 1 50%;
    min-height: 400px;
  }
  .contact-us__map img{
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  .testimonial-slider {
  
    padding: 100px 20px;
    color: #fff;
    position: relative;
    text-align: center;
  }
  
  .testimonial-slide {

    margin: 0 auto;
    position: relative;
  }
  
  .testimonial__quote {
    font-size: 40px;
    color: #7bb231;
    margin-bottom: 20px;
  }
  
  .testimonial__text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
  }
  
  .testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
  }
  
  .testimonial__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #7bb231;
    object-fit: cover;
  }
  
  .testimonial__author h4 {
    font-weight: bold;
    margin: 0;
  }
  
  .testimonial__author span {
    color: #7bb231;
    font-size: 14px;
  }
  
  .testimonial__nav .swiper-button-next,
  .testimonial__nav .swiper-button-prev {
    color: #fff;
    font-size: 20px;
  }
  
  .testimonial__nav {
    margin-top: 40px;
  }
  .news {
    padding: 60px 20px;
    background: #f5f6f7;
    font-family: 'Arial', sans-serif;
  }
  
  .news__container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .news__left {
    flex: 1 1 45%;
  
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    position: relative;
    color: #fff;
  }
  
  .news__banner {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    width: 100%;
  }
  
  .news__banner__meta {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
  }
  
  .news__banner__title {
    font-size: 24px;
    font-weight: bold;
  }
  
  .news__right {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .news__card {
    background: #fff;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
  }
  
  .news__meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
  }
  
  .news__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
  }
  
  .news__text {
    font-size: 14px;
    color: #555;
  }
  .footer {
    background: #111;
    color: #ccc;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
  }
  
  .footer__top {
    background-blend-mode: multiply;
  background-color: #222!important;
    padding: 60px 20px;
  }
  
  .footer__container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .footer__col {
    flex: 1 1 200px;
  }
  
  .footer__logo {
    font-size: 24px;
    color: #fff;
  }
  
  .footer__logo .green {
    color: #7bb420;
  }
  
  .footer__info li {
    list-style: none;
    margin: 8px 0;
  }
  
  .footer__info li i {
    color: #7bb420;
    margin-right: 8px;
  }
  
  .footer__links {
    display: flex;
    gap: 20px;
  }
  
  .footer__links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer__links ul li {
    margin: 6px 0;
  }
  
  .footer__links a {
    color: #ccc;
    text-decoration: none;
  }
  
  .footer__news-item {
    display: flex;
    margin-bottom: 15px;
  }
  
  .footer__news-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 5px;
  }
  
  .footer__news-item p {
    margin: 0;
    color: #fff;
    font-size: 14px;
  }
  
  .footer__news-item span {
    font-size: 12px;
    color: #999;
  }
  
  .footer__socials {
    list-style: none;
    padding: 0;
  }
  
  .footer__socials li {
    margin: 10px 0;
  }
  .footer__socials li a{
    display: flex;
    align-items: center;
    gap: 10px;
  }
  ul.footer__info

 {
    padding: 0;
}
  .footer__socials i {
    background: #7bb420;
    color: #fff;
    padding: 6px;
    border-radius: 50%;
    display: flex
;
    margin-right: 8px;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 16px;
    align-items: center;
    justify-content: center;
}
  
  .footer__bottom {
    background: #000;
    padding: 20px;
    text-align: center;
    font-size: 13px;
  }
  
  .footer__bottom a {
    color: #7bb420;
    text-decoration: none;
  }
  
  .footer__bottom-links {
    margin-top: 10px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #7bb420;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    text-align: center;
  }
  
  .scroll-top a {
    color: white;
    font-size: 16px;
    line-height: 35px;
  }
  .produce-block {
    padding: 60px 20px;
    background-color: #fff;
  }
  
  .produce-block__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    gap: 40px;
  }
  
  .produce-block__content {
    flex: 1;
    min-width: 300px;
  }
  
  .produce-block__subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
  }
  
  .produce-block__title {
    font-size: 32px;
    font-weight: 600;
    margin: 10px 0;
    color: #333;
  }
  
  .produce-block__title span {
    color: #79bc26;
  }
  
  .produce-block__icon {
    margin: 10px 0 20px;
  }
  
  .produce-block__description {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
  }
  
  .produce-block__btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #79bc26;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .produce-block__btn:hover {
    background-color: #5a9a1d;
  }
  
  .produce-block__image {
    flex: 1;
    text-align: center;
    min-width: 300px;
  }
  
  .produce-block__image img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    height: 400px;
    border-radius: 8px;
  }
  .news-post {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
  }
  
  .news-post__breadcrumbs {
    font-size: 14px;
    margin-bottom: 10px;
    color: #666;
  }
  
  .news-post__breadcrumbs a {
    text-decoration: none;
    color: #444;
  }
  .news-post__items{
    display: flex;
    margin-top: 50px;
    flex-direction: column;
    gap: 50px;
  }
  .news-post__breadcrumbs i {
    margin-right: 5px;
    color: #444;
  }
  
  .news-post__meta small {
    color: #999;
    display: block;
    margin-bottom: 10px;
  }
  
  .news-post__meta h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #222;
  }
  
  .news-post__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
  }
  
  .news-post__content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
  }
  .post-page {
    max-width: 850px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
  }
  
  .breadcrumbs {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
  }
  
  .breadcrumbs a {
    color: #444;
    text-decoration: none;
  }
  
  .post-header h1 {
    font-size: 28px;
    margin: 10px 0;
  }
  
  .post-header small {
    color: #999;
  }
  
  .post-body {
    margin-top: 20px;
  }
  
  .post-body p {
    line-height: 1.8;
    margin-bottom: 15px;
  }
  
  .post-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    margin: 20px 0;
  }
  
  blockquote {
    background: #f6f6f6;
    border-left: 4px solid #6cbe45;
    padding: 15px 20px;
    font-style: italic;
    color: #444;
    margin: 20px 0;
  }
  
  .post-tags span {
    background: #eee;
    padding: 5px 10px;
    margin-right: 8px;
    border-radius: 3px;
    font-size: 13px;
  }
  
  .post-author {
    display: flex;
    margin-top: 40px;
    gap: 20px;
    align-items: flex-start;
  }
  
  .post-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
  }
  
  .post-author h4 {
    margin: 0 0 5px;
  }
  
  .post-comments {
    margin-top: 50px;
  }
  
  .post-comments h3 {
    margin-bottom: 20px;
  }
  
  .comment {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .comment img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  
  .comment h4 {
    margin: 0 0 5px;
    font-size: 16px;
  }
  
  .comment h4 span {
    color: #999;
    font-size: 13px;
    margin-left: 10px;
  }
  
  .post-reply {
    margin-top: 40px;
  }
  
  .post-reply form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .post-reply input,
  .post-reply textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    font-size: 15px;
  }
  
  .post-reply textarea {
    min-height: 120px;
  }
  
  .post-reply button {
    width: fit-content;
    background: #7cb518;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
  }
  .contact-info__subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #888;
    text-align: center;
  }
  .contact-info__title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 40px;
  }
  .contact-info__title .highlight {
    color: #7ac142;
    font-weight: bold;
  }
  .contact-info__icons {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  .contact-info__item i {
    font-size: 36px;
    background: #7ac142;
    color: white;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  .contact-info__item h4 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .contact-form__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
  }
  .contact-form__info {
    flex: 1 1 50%;
  }
  .contact-form__info h5 {
    text-transform: uppercase;
    font-size: 12px;
    color: #888;
  }
  .contact-form__info h2 {
    font-size: 28px;
    margin: 10px 0 20px;
  }
  .contact-form__info h2 .highlight {
    color: #7ac142;
    font-weight: bold;
  }
  .contact-form__info form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .form-row {
    display: flex;
    gap: 15px;
  }
  .form-row input {
    flex: 1;
  }
  input, textarea {
    padding: 10px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    border-radius: 4px;
  }
  textarea {
    min-height: 120px;
    resize: vertical;
  }
  .btn-green {
    background: #7ac142;
    border: none;
    padding: 12px 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
  }
  .btn-green:hover {
    background: #689e36;
  }
  .contact-form__map iframe {
    width: 100%;
    min-height: 350px;
    border: none;
  }
  .contact-form__map {
    flex: 1 1 45%;
  }
  .contact-info .container,
.contact-form .container{
    display: flex;
    flex-direction: column;
}
.tes {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
  }
  .tes__subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #888;
  }
  .tes__title {
    font-size: 28px;
    margin: 10px 0 40px;
  }
  .tes__title .highlight {
    color: #7ac142;
    font-weight: bold;
  }
  .tes__items {
    display: flex;
    gap: 30px;
    flex-direction: column;
    justify-content: center;
  }
  .tes__item {
    max-width: 700px;
    background: white;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 8px;
  }
  .tes__text {
    font-size: 16px;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
  }
  .tes__author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
  }
  .tes__author img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
  }
  .tes__author strong {
    font-size: 16px;
  }
  .tes__author p {
    margin: 0;
    font-size: 14px;
    color: #777;
  }
  .tes .container{
    align-items: flex-start;
  }
  .faq {
    padding: 60px 20px;
    background: #fff;
    max-width: 800px;
    margin: auto;
  }
  .faq__subtitle {
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: #888;
  }
  .faq__title {
    text-align: center;
    font-size: 28px;
    margin: 10px 0 30px;
  }
  .faq__title .highlight {
    color: #7ac142;
  }
  .faq__item {
    border-bottom: 1px solid #eee;
  }
  .faq__question {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .faq__item.active .faq__question {
    color: #7ac142;
  }
  .faq__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    font-size: 15px;
    color: #555;
    transition: all 0.3s ease;
  }
  .faq__item.active .faq__answer {
    padding: 15px;
    max-height: 300px;
  }
  .faq .container{
    flex-direction: column;

}
.terms{
    padding: 90px 0;

}
.terms .container{
    align-items: flex-start;
    flex-direction: column;
}
@media screen and (max-width:768px) {
  .container{
    flex-direction: column;
  }  
  .hero {
    background-attachment: fixed !important;
    position: relative;
    height: 100%;
    color: #fff;
    display: flex
;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 40px 20px;
}
.produce__container {
    display: flex
;
    margin: auto;
    align-items: center;
    gap: 30px;
    flex-direction: column;
}
.contact-us__form

 {
    flex: 1;
    max-width: 100%;
}
.contact-us__form .contact-us__row {
    display: flex
;
    gap: 20px;
    flex-direction: column;
}
.contact-us__container {
    display: flex
;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: stretch;
    flex-direction: column;
}
.swiper.mySwiper.swiper-initialized.swiper-horizontal.swiper-ios.swiper-backface-hidden {
    width: 100%;
}
.contact-us {
    padding: 80px 10px;
    background: #fafafa;
}
.contact-form__info {
    flex: 1;
    padding: 10px;
}
.form-row {
    display: flex
;
    gap: 15px;
    flex-direction: column;
}
}
.cookie__banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    color: #333;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    z-index: 1000;
    gap: 20px;
  }
  .cookie__banner__btn {
    background-color: #7ac142;
    border: none;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .cookie__banner__btn:hover {
    background-color: #6cb035;
  }
  .cookie__banner__link {
    color: #7ac142;
    text-decoration: underline;
    font-weight: 500;
  }
  @media (max-width: 600px) {
    .cookie__banner {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    .cookie__banner__btn {
      align-self: flex-end;
    }
  }