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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

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

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner .cookie-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.cookie-banner .cookie-content p {
  margin-bottom: 20px;
}

.cookie-banner .cookie-content .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.btn-primary {
  display: inline-block;
  background-color: #00b2a3;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #00998c;
}

.btn-secondary {
  display: inline-block;
  background-color: #004d49;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #003431;
}

header {
  background-color: #004d49;
  color: #fff;
  padding: 15px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .nav-wrapper {
  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;
}

header .logo h1 {
  font-size: 24px;
  font-weight: 700;
}

header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

header nav ul li a {
  font-weight: 500;
}

header nav ul li a:hover {
  color: #00b2a3;
}

.hero {
  background: linear-gradient(135deg, #004d49 0%, #000100 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
}

.hero:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0);
          clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero .hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero .hero-content div {
  max-width: 700px;
}

.hero .hero-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero .hero-content .hero-text {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero .hero-content p {
  margin-bottom: 20px;
}

.hero .hero-content .btn-primary {
  margin-top: 15px;
}

.services {
  padding: 80px 0;
}

.services h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 700;
}

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

.services .service-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.services .service-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.services .service-card .service-icon {
  margin-bottom: 20px;
}

.services .service-card .service-icon img {
  width: 60px;
  height: 60px;
}

.services .service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #004d49;
}

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

.about h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 700;
}

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

.about .about-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about .about-text p {
  margin-bottom: 20px;
}

.about .about-text p:last-child {
  margin-bottom: 0;
}

.about .about-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about .about-image img {
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials {
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 700;
}

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

.testimonials .testimonial-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonials .testimonial-card .testimonial-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.testimonials .testimonial-card .testimonial-header .testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonials .testimonial-card .testimonial-header h3 {
  font-size: 18px;
  font-weight: 600;
}

.testimonials .testimonial-card p {
  font-style: italic;
}

.advantages {
  background-color: #f7f7f7;
  padding: 80px 0;
}

.advantages h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 700;
}

.advantages .advantages-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.advantages .advantage-card {
  background-color: #004d49;
  color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
}

.advantages .advantage-card h3 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.advantages .advantage-card p {
  font-size: 14px;
}

.contact {
  padding: 80px 0;
}

.contact h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact .contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.contact .contact-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact .contact-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact .contact-info p {
  margin-bottom: 15px;
}

.contact form {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

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

.contact form .form-group input,
.contact form .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
}

.contact form .form-group input:focus,
.contact form .form-group textarea:focus {
  outline: none;
  border-color: #00b2a3;
}

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

footer {
  background-color: #004d49;
  color: #fff;
  padding: 30px 0;
}

footer .footer-content {
  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;
}

footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

footer .footer-links a:hover {
  color: #00b2a3;
}

.success-message {
  background: #004d49;
  padding-top: 150px;
  padding-bottom: 150px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.success-message h1 {
  margin-bottom: 20px;
}

.privacy {
  padding-top: 100px;
  padding-bottom: 100px;
}

.privacy h2 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .services .services-grid,
  .testimonials .testimonials-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 20px;
  }
  .advantages .advantages-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .about .about-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact .contact-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 768px) {
  header nav ul {
    gap: 15px;
  }
  .hero .hero-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero .hero-content h2 {
    font-size: 28px;
  }
  .advantages .advantages-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  header .nav-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  header nav {
    display: none;
  }
  .hero {
    padding: 50px 0;
  }
  .services,
  .about,
  .testimonials,
  .advantages,
  .contact {
    padding: 50px 0;
  }
}
/*# sourceMappingURL=style.css.map */