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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0c3c0c;
}

.btn {
  display: inline-block;
  background-color: #2c752c;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: #1e501e;
}

.btn--submit {
  width: 100%;
  font-size: 16px;
}

.btn--cookie {
  font-size: 14px;
  padding: 8px 16px;
}

.header {
  background-color: #0c3c0c;
  color: #fff;
  padding: 20px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.nav__link:hover {
  color: #d9d9d9;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hero {
  padding: 80px 0;
}

.hero .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.hero__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hero__title {
  font-size: 40px;
  font-weight: 700;
  color: #0c3c0c;
  margin-bottom: 20px;
}

.hero__text {
  margin-bottom: 30px;
  color: #666;
}

.hero__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero__image img {
  display: block;
  width: 100%;
  height: auto;
}

.about {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.about .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.about__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about__image img {
  display: block;
  width: 100%;
  height: auto;
}

.about__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about__text {
  color: #666;
}

.testimonials {
  padding: 80px 0;
}

.testimonials__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.testimonial {
  background-color: #f5f5f5;
  padding: 25px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}

.testimonial__image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
}

.testimonial__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.testimonial__name {
  font-weight: 600;
}

.testimonial__location {
  color: #666;
  font-size: 14px;
}

.testimonial__rating {
  margin-left: auto;
  color: gold;
}

.testimonial__text {
  font-style: italic;
  color: #666;
}

.courses {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.courses__intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: #666;
}

.courses__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.course {
  background-color: #fff;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.course:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.course__icon {
  width: 60px;
  height: 60px;
  background-color: rgba(44, 117, 44, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.course__icon img {
  width: 30px;
  height: 30px;
}

.course__title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #0c3c0c;
}

.course__description {
  color: #666;
}

.features {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature {
  background-color: #fff;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.feature:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.feature__icon {
  width: 60px;
  height: 60px;
  background-color: rgba(44, 117, 44, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.feature__icon img {
  width: 30px;
  height: 30px;
}

.feature__title {
  font-size: 18px;
  margin-bottom: 15px;
  color: #0c3c0c;
}

.feature__description {
  color: #666;
}

.benefits {
  padding: 80px 0;
}

.benefits__intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: #666;
}

.benefits__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.benefit {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.benefit:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.benefit__icon {
  width: 60px;
  height: 60px;
  background-color: rgba(44, 117, 44, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.benefit__icon img {
  width: 30px;
  height: 30px;
}

.benefit__title {
  font-size: 18px;
  margin-bottom: 15px;
  color: #0c3c0c;
}

.benefit__description {
  color: #666;
}

.importance {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.importance .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.importance__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.importance__text {
  margin-bottom: 30px;
  color: #666;
}

.importance__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.importance__image img {
  display: block;
  width: 100%;
  height: auto;
}

.contact {
  padding: 80px 0;
}

.contact__intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: #666;
}

.contact__wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact__form {
  background-color: #f5f5f5;
  padding: 40px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #eee;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #2c752c;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.success {
  padding: 120px 0;
  text-align: center;
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.success__content {
  max-width: 600px;
  margin: 0 auto;
}

.success__title {
  font-size: 36px;
  font-weight: 700;
  color: #2c752c;
  margin-bottom: 20px;
}

.success__message {
  font-size: 24px;
  margin-bottom: 40px;
  color: #0c3c0c;
}

.footer {
  background-color: #0c3c0c;
  color: #fff;
  padding: 60px 0 20px;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.footer__link:hover {
  color: #d9d9d9;
}

.footer__info {
  margin-bottom: 30px;
}

.footer__address {
  font-style: normal;
}

.footer__address a {
  color: #fff;
}

.footer__address a:hover {
  color: #d9d9d9;
}

.footer__bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__bottom .copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(12, 60, 12, 0.95);
  color: #fff;
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-popup.show {
  display: block;
  -webkit-animation: slideUp 0.5s forwards;
          animation: slideUp 0.5s forwards;
}

.cookie-popup__content {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cookie-popup__content p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 30px;
  font-size: 14px;
}

@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .section-title {
    font-size: 28px;
  }
  .hero__title {
    font-size: 32px;
  }
  .testimonials__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #0c3c0c;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 101;
  }
  .nav.active {
    right: 0;
  }
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 100px 30px 30px;
    gap: 20px;
  }
  .nav__link {
    display: block;
    font-size: 18px;
  }
  .hero .container,
  .about .container,
  .importance .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero {
    padding: 60px 0;
  }
  .hero__image {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .courses__grid,
  .benefits__grid,
  .features {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .testimonials__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .cookie-popup__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookie-popup__content p {
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 15px 0;
  }
  .logo {
    font-size: 20px;
  }
  .section-title {
    font-size: 24px;
  }
  .hero__title {
    font-size: 28px;
  }
  .hero__text {
    font-size: 14px;
  }
  .contact__form {
    padding: 25px;
  }
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
/*# sourceMappingURL=style.css.map */