@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #222;
}

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

.site-header {
  background: #ffffff;
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 10;
}
.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.site-header .logo {
  font-size: 26px;
  font-weight: 800;
  color: #0c7d6d;
}
.site-header .logo a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.site-header .logo a:hover {
  opacity: 0.8;
}
.site-header .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.site-header .menu-toggle span {
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  transition: 0.3s ease;
}
@media (max-width: 768px) {
  .site-header .menu-toggle {
    display: flex;
  }
}
.site-header .nav-menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
}
.site-header .nav-menu ul li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
  position: relative;
  transition: color 0.3s ease;
}
.site-header .nav-menu ul li a:hover {
  color: #0c7d6d;
}
.site-header .nav-menu ul li a:hover::after {
  width: 100%;
}
.site-header .nav-menu ul li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #0c7d6d;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -4px;
  left: 0;
}
@media (max-width: 768px) {
  .site-header .nav-menu ul {
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    width: 200px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: none;
  }
  .site-header .nav-menu ul.active {
    display: flex;
  }
}

.hero-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
  background: linear-gradient(135deg, #0c7d6d, #0f4b4b);
  /* Градиент от зелёного к тёмно-зелёному */
}
.hero-section .hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}
.hero-section .hero-overlay .container {
  max-width: 800px;
  margin: 0 auto;
}
.hero-section .hero-overlay h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-section .hero-overlay p {
  font-size: 18px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero-section {
    height: 500px;
  }
  .hero-section .hero-overlay h1 {
    font-size: 28px;
  }
  .hero-section .hero-overlay p {
    font-size: 16px;
  }
}

.services-section {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #f8fdfd, #e6f4f1);
}
.services-section .container {
  max-width: 1800px;
  margin: 0 auto;
}
.services-section .section-heading {
  text-align: center;
  margin-bottom: 60px;
}
.services-section .section-heading h4 {
  font-size: 14px;
  color: #0c7d6d;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.services-section .section-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
}
.services-section .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
@media (max-width: 768px) {
  .services-section .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .services-section .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.services-section .service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  transform: translateY(0);
}
.services-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.08);
}
.services-section .service-card .img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.services-section .service-card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.services-section .service-card .img-wrapper img:hover {
  transform: scale(1.05);
}
.services-section .service-card .card-content {
  padding: 25px;
  text-align: center;
}
.services-section .service-card .card-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0c7d6d;
  margin-bottom: 12px;
}
.services-section .service-card .card-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}
.services-section .service-card .card-content .btn {
  display: inline-block;
  padding: 10px 22px;
  background-color: #0c7d6d;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.services-section .service-card .card-content .btn:hover {
  background-color: #095d50;
}
@media (max-width: 768px) {
  .services-section .section-heading h2 {
    font-size: 30px;
  }
  .services-section .service-card .card-content {
    padding: 20px;
  }
  .services-section .service-card h3 {
    font-size: 18px;
  }
  .services-section .service-card p {
    font-size: 14px;
  }
  .services-section .service-card .btn {
    padding: 8px 18px;
  }
}
@media (max-width: 480px) {
  .services-section .section-heading h2 {
    font-size: 24px;
  }
  .services-section .service-grid {
    gap: 20px;
  }
  .services-section .service-card .card-content {
    padding: 15px;
  }
  .services-section .service-card h3 {
    font-size: 16px;
  }
  .services-section .service-card p {
    font-size: 14px;
  }
  .services-section .service-card .btn {
    padding: 8px 16px;
  }
}

.contact-section {
  background: linear-gradient(to bottom right, #f7fdfa, #ecf4f3);
  padding: 100px 20px;
  position: relative;
}
.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-section .contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .contact-section .contact-wrapper {
    flex-direction: column;
  }
}
.contact-section .contact-info {
  flex: 1;
  color: #222;
}
.contact-section .contact-info h4 {
  font-size: 14px;
  color: #0c7d6d;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-section .contact-info h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-section .contact-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}
.contact-section .contact-form {
  flex: 1;
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}
.contact-section .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-section .contact-form form .input-group {
  display: flex;
  gap: 20px;
}
@media (max-width: 600px) {
  .contact-section .contact-form form .input-group {
    flex-direction: column;
  }
}
.contact-section .contact-form form .input-group input {
  flex: 1;
}
.contact-section .contact-form form input,
.contact-section .contact-form form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  background: #f9f9f9;
  transition: all 0.3s ease;
}
.contact-section .contact-form form input:focus,
.contact-section .contact-form form textarea:focus {
  border-color: #0c7d6d;
  background: #fff;
  outline: none;
}
.contact-section .contact-form form button {
  align-self: flex-start;
  padding: 12px 28px;
  background-color: #0c7d6d;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-section .contact-form form button:hover {
  background-color: #095d50;
}
.contact-section .thank-you-popup {
  display: none;
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0c7d6d;
  color: #fff;
  padding: 16px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.contact-section .thank-you-popup.show {
  display: block;
  opacity: 1;
}

.about-section {
  padding: 100px 20px;
  background-color: #ffffff;
}
.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.about-section .about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-section .about-grid {
    flex-direction: column;
    gap: 30px;
  }
}
.about-section .about-text {
  flex: 1;
}
.about-section .about-text h4 {
  font-size: 14px;
  text-transform: uppercase;
  color: #0c7d6d;
  font-weight: 600;
  margin-bottom: 10px;
}
.about-section .about-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}
.about-section .about-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.6;
}
.about-section .about-text .about-icons {
  list-style: none;
  margin-top: 20px;
  padding-left: 0;
}
.about-section .about-text .about-icons li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 12px;
  color: #0c7d6d;
}
.about-section .about-text .about-icons li i {
  font-size: 18px;
}
.about-section .about-image {
  flex: 1;
}
.about-section .about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .about-section .about-image img {
    width: 100%;
    border-radius: 12px;
  }
}
@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }
  .about-section .about-text h2 {
    font-size: 28px;
  }
  .about-section .about-text p {
    font-size: 14px;
  }
}

.site-footer {
  background-color: #0d0d11;
  color: #ccc;
  padding: 60px 20px 30px;
}
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .site-footer .footer-grid {
    flex-direction: column;
  }
}
.site-footer .footer-grid .footer-column {
  flex: 1;
}
.site-footer .footer-grid .footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.site-footer .footer-grid .footer-column ul {
  list-style: none;
  padding: 0;
}
.site-footer .footer-grid .footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
}
.site-footer .footer-grid .footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer .footer-grid .footer-column ul li a:hover {
  color: #0c7d6d;
}
.site-footer .footer-grid .footer-column ul li i {
  margin-right: 8px;
  color: #0c7d6d;
}
.site-footer .footer-grid .footer-column .footer-socials {
  margin-top: 15px;
}
.site-footer .footer-grid .footer-column .footer-socials a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  font-size: 16px;
  transition: color 0.3s;
}
.site-footer .footer-grid .footer-column .footer-socials a:hover {
  color: #0c7d6d;
}
.site-footer .footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #777;
}
.site-footer .footer-bottom strong {
  color: #fff;
}

.privacy-policy-section {
  padding: 80px 20px;
  background-color: #fdfdfd;
  color: #222;
  font-family: "Poppins", sans-serif;
}
.privacy-policy-section .container {
  max-width: 900px;
  margin: 0 auto;
}
.privacy-policy-section h1 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #0c7d6d;
}
.privacy-policy-section h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #0c7d6d;
}
.privacy-policy-section p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
  color: #444;
}
.privacy-policy-section ul {
  padding-left: 20px;
  margin-bottom: 24px;
}
.privacy-policy-section ul li {
  font-size: 15px;
  margin-bottom: 10px;
  list-style-type: disc;
  color: #333;
}
.privacy-policy-section a {
  color: #0c7d6d;
  text-decoration: underline;
}
.privacy-policy-section a:hover {
  color: #095d50;
}

.terms-section {
  padding: 80px 20px;
  background-color: #ffffff;
  color: #222;
  font-family: "Poppins", sans-serif;
}
.terms-section .container {
  max-width: 900px;
  margin: 0 auto;
}
.terms-section h1 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #0c7d6d;
}
.terms-section h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #0c7d6d;
}
.terms-section p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
  color: #444;
}
.terms-section ul {
  padding-left: 20px;
  margin-bottom: 24px;
}
.terms-section ul li {
  font-size: 15px;
  margin-bottom: 10px;
  list-style-type: disc;
  color: #333;
}
.terms-section a {
  color: #0c7d6d;
  text-decoration: underline;
}
.terms-section a:hover {
  color: #095d50;
}

.cookies-section {
  padding: 80px 20px;
  background-color: #fcfcfc;
  color: #222;
  font-family: "Poppins", sans-serif;
}
.cookies-section .container {
  max-width: 900px;
  margin: 0 auto;
}
.cookies-section h1 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #0c7d6d;
}
.cookies-section h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #0c7d6d;
}
.cookies-section p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
  color: #444;
}
.cookies-section ul {
  padding-left: 20px;
  margin-bottom: 24px;
}
.cookies-section ul li {
  font-size: 15px;
  margin-bottom: 10px;
  list-style-type: disc;
  color: #333;
}
.cookies-section a {
  color: #0c7d6d;
  text-decoration: underline;
}
.cookies-section a:hover {
  color: #095d50;
}

.service-hero {
  position: relative;
  background: url("/assets/img/hero.webp") center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  z-index: 1;
}
.service-hero .overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.service-hero .container {
  position: relative;
  z-index: 2;
}
.service-hero .container h1 {
  font-size: 48px;
  font-weight: 800;
}

.service-details {
  padding: 80px 20px;
  background: #fefefe;
}
.service-details .service-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}
@media (max-width: 768px) {
  .service-details .service-layout {
    flex-direction: column;
  }
}
.service-details .service-layout .service-image {
  flex: 1;
}
.service-details .service-layout .service-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}
.service-details .service-layout .service-text {
  flex: 1;
}
.service-details .service-layout .service-text h4 {
  color: #0c7d6d;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}
.service-details .service-layout .service-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}
.service-details .service-layout .service-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
}
.service-details .service-layout .service-text .service-benefits {
  margin-top: 20px;
  list-style: none;
}
.service-details .service-layout .service-text .service-benefits li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #0c7d6d;
}
.service-details .service-layout .service-text .service-benefits li i {
  margin-right: 8px;
}

.how-it-works {
  padding: 80px 20px;
  background: #f4f9f9;
  text-align: center;
}
.how-it-works h4 {
  color: #0c7d6d;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.how-it-works h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}
.how-it-works .steps-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.how-it-works .steps-grid .step-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  width: 280px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.how-it-works .steps-grid .step-box:hover {
  transform: translateY(-6px);
}
.how-it-works .steps-grid .step-box i {
  font-size: 28px;
  color: #0c7d6d;
  margin-bottom: 16px;
}
.how-it-works .steps-grid .step-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.how-it-works .steps-grid .step-box p {
  font-size: 14px;
  color: #555;
}/*# sourceMappingURL=style.css.map */