
body {
 
        margin: 0;
        padding-top: 0px; 
        font-family: 'Manrope', sans-serif;
        color: #13751E;
        background-color: #fff;
      }
      
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  

  .main-header {
    background: transparent; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
  }
  
  
    .header__container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        justify-content: space-between;
      }
      
      .nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
      
      
  }
  
  .logo img {
    height: 80px;
  }
  
  .nav__menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
  }
  
  .nav__menu li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
  }
  
  .nav__menu li a:hover,
.nav__menu li a.active {
  color: #80C342;
}
  .header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px; 
  }
  
  .nav__lang a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    font-size: 14px;
  }
  .hero__title {
    font-size: 80px;
    font-weight: 400;
    color: white;
    margin-bottom: 10px;
  }
  .hero__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: rgb(209, 207, 207);
    margin-bottom: 40; 
  }
  
  .nav__btn {
    padding: 10px 20px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
  }
  
  .nav__btn:hover {
    background-color: white;
    color: #13751E;
  }
  
  .btn-icon {
    width: 16px;
    height: 16px;
    filter: invert(1);
  }
  
  .hero {
    display:flex; 
    background: #27b738;
    background-size: cover;
    height: 500px;
    position: relative;
    color: #13751E;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
  }
  
  .hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .btn {
    padding: 10px 20px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
  }

      
  .nav__btn {
    padding: 10px 20px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
  }
  
  .nav__btn:hover {
    background-color: white;
    color: #2c5e3d;
  }
  
  .btn-icon {
    width: 16px;
    height: 16px;
    filter: invert(1); 
  }
  .curve-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
  }
  .logo img {
    height: 80px; 
  }
  .center-icon {
    display: flex;
    justify-content: center;
    margin-top: -35px;
    position: relative;
    z-index: 5;
  }
  
  .center-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: white;
    padding: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .white-arc {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 10; 
    pointer-events: none;
  }
  
  .flower-icon {
    position: absolute;
    left: 50%;
    top: calc(100% - 95px);
    transform: translateX(-50%);
    width: 60px;
    height: auto;
    z-index: 20;
    pointer-events: none;
  }
  body {
    background-color: #fff;
  }

.contact-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}


.contact-left {
    flex-basis: 35%;
    min-width: 300px;
    padding-left: 20px;
}

.contact-left h2 {
    color: #13751E;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}


.contact-right {
    flex-basis: 60%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px; 
     
}

.contact-row {
    display: flex;
    gap: 40px;
    flex-wrap: nowrap;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    flex: 1;
}


.contact-item img {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 12px;
}


.contact-item h4 {
    color: #ffffff;
    font-size: 18px;
    margin: 0 0 5px 0;
    font-weight: 500;
}

.contact-item p {
    color: #333;
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
}

.contact-form-section {
    background-color: #ffffff;
    padding: 80px 0;
}


.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
    padding: 0 40px;
}


.contact-form-left {
    flex-basis: 40%;
    min-width: 300px;
}

.contact-form-left h2 {
    color: #13751E;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.contact-form-left p {
    color: #7d7d7d;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}


.contact-form-right {
    flex-basis: 55%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}


.contact-form-right label {
    color: #555;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.contact-form-right input,
.contact-form-right textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid #ccc;
    background-color: #f4f4f4;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form-right input::placeholder,
.contact-form-right textarea::placeholder {
    color: #ccc;
}

.contact-form-right input:focus,
.contact-form-right textarea:focus {
    border-bottom: 2px solid #13751E;
}

.contact-form-right textarea {
    min-height: 120px;
    resize: none;
}


.contact-form-right button {
    background-color: #13751E;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
    width: fit-content;
}

.contact-form-right button:hover {
    background-color: #0f5d18;
}
.footer {
    position: relative;
    background-color: #092810;
    color: white;
    padding-top: 0px; 
    padding-bottom: 30px;
    font-family: 'Manrope', sans-serif;
  }
  
  .footer-arc {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  .footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .footer-col h4 {
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .footer-col p {
    margin: 5px 0;
    font-size: 14px;
    color: #ccc;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
  }
 .footer-col a {
    color: #fff;
    text-decoration: none;
}

.footer-col a:hover {
    color: #80C342; 
    } 





/* 🌐 ОБЩИЕ СТИЛИ */
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: #13751E;
  background-color: #fff;
}

/* 📦 КОНТЕЙНЕР */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 🌐 ГЛАВНОЙ ХЕДЕР */
.main-header {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ЛОГОТИП */
.logo img {
  height: 80px;
  transition: height 0.3s;
}

/* 🌐 МЕНЮ */
.nav__menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav__menu li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
}

.nav__menu li a:hover {
  color: #80C342;
}

/* 🌐 ПРАВЫЙ БЛОК */
.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__lang a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
  font-size: 14px;
}

.nav__btn {
  padding: 10px 20px;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.nav__btn:hover {
  background-color: white;
  color: #13751E;
}

.btn-icon {
  width: 16px;
  height: 16px;
  filter: invert(1);
}

/* 🌐 БУРГЕР-МЕНЮ */
.burger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 200;
    margin-left: auto;
}

.burger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 4px 0;
  transition: all 0.3s;
}

/* Бургер активный */
.burger.active span:nth-child(1) {
  transform: rotate(0) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(0deg) translate(5px, -5px);
}

/* 📱 МЕДИАЗАПРОСЫ ДЛЯ МОБИЛЬНЫХ */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav__menu {
    position: absolute;
    top: 80px;
    right: 20px;
    flex-direction: column;
    gap: 20px;
    background-color: #ffffff;
    width: 250px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    z-index: 100;
  }

  .nav__menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__menu li a {
    color: #13751E;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s;
  }

  .nav__menu li a:hover {
    background-color: #f4f4f4;
  }

  .header__right {
    display: none;
  }

  /* Логотип */
  .logo img {
    height: 60px;
  }

  /* Текст заголовка */
  .hero__title {
    font-size: 48px;
    line-height: 1.2;
  }

  .hero__subtitle {
    font-size: 16px;
  }
} 
@media (max-width: 768px) {
    .contact-left {
        flex-basis: 100%;
        text-align: center;
        padding-left: 0;
        margin-bottom: 40px;
    }

    .contact-right {
        flex-basis: 100%;
        flex-direction: column;
    }

    .contact-row {
        flex-direction: column;
        gap: 20px;
    }

    .contact-item {
        flex-basis: 100%;
        width: 100%;
    }
} 

