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

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

ul {
  list-style: none;
}

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

a:hover {
  color: #00A651;
}

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

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

.button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.button.primary {
  background-color: #FFD100;
  color: #333333;
}

.button.primary:hover {
  background-color: #cca700;
}

.button.secondary {
  background-color: #FFFFFF;
  color: #333333;
  border: 1px solid #E0E0E0;
}

.button.secondary:hover {
  background-color: #F5F5F5;
}

header {
  padding: 20px 0;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .header-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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

header .logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

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

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

.hero {
  background: -webkit-gradient(linear, left top, right top, from(#00A651), to(#009DC4));
  background: linear-gradient(90deg, #00A651 0%, #009DC4 100%);
  color: #FFFFFF;
  padding: 60px 0;
}

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

@media (max-width: 992px) {
  .hero .hero-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.hero .hero-image img {
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.hero .hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero .hero-text p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.about {
  padding: 80px 0;
}

.about h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.about .about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

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

.about .stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 40px 0;
}

@media (max-width: 992px) {
  .about .stats {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about .stats {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.about .stat-item {
  text-align: center;
}

.about .stat-item h3 {
  font-size: 2.5rem;
  color: #00A651;
  margin-bottom: 10px;
}

.about .stat-item p {
  font-weight: 500;
}

.about .button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.services {
  padding: 80px 0;
  background-color: #F5F5F5;
}

.services h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

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

@media (max-width: 992px) {
  .services .services-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services .services-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.services .service-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

.services .service-item .service-icon {
  width: 60px;
  height: 60px;
  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;
}

.services .service-item .service-icon img {
  width: 30px;
  height: 30px;
}

.services .service-item .service-icon.blue {
  background-color: rgba(30, 136, 229, 0.2);
}

.services .service-item .service-icon.green {
  background-color: rgba(0, 166, 81, 0.2);
}

.services .service-item .service-icon.orange {
  background-color: rgba(255, 152, 0, 0.2);
}

.services .service-item .service-icon.yellow {
  background-color: rgba(255, 209, 0, 0.2);
}

.services .service-item .service-icon.purple {
  background-color: rgba(156, 39, 176, 0.2);
}

.services .service-item h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.why-us {
  padding: 80px 0;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.why-us .why-us-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media (max-width: 992px) {
  .why-us .why-us-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.why-us .why-us-image img {
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.why-us .why-us-reasons {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.why-us .reason {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.why-us .reason .reason-icon {
  width: 50px;
  height: 50px;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.why-us .reason .reason-icon img {
  width: 25px;
  height: 25px;
}

.why-us .reason .reason-icon.green {
  background-color: rgba(0, 166, 81, 0.2);
}

.why-us .reason .reason-icon.orange {
  background-color: rgba(255, 152, 0, 0.2);
}

.why-us .reason .reason-icon.blue {
  background-color: rgba(30, 136, 229, 0.2);
}

.why-us .reason .reason-icon.yellow {
  background-color: rgba(255, 209, 0, 0.2);
}

.why-us .reason .reason-text h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.contact {
  padding: 80px 0;
  background: -webkit-gradient(linear, left top, right top, from(#00A651), to(#009DC4));
  background: linear-gradient(90deg, #00A651 0%, #009DC4 100%);
  color: #FFFFFF;
}

.contact .contact-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .contact .contact-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.contact .contact-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact .contact-text p {
  margin-bottom: 30px;
}

.contact .contact-text .contact-info {
  margin-top: 30px;
}

.contact .contact-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact .contact-form .form-group input, .contact .contact-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

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

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

.contact .contact-form button {
  margin-top: 10px;
}

.contact .contact-image {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / span 2;
}

@media (max-width: 992px) {
  .contact .contact-image {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }
}

.contact .contact-image img {
  border-radius: 8px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  padding: 40px 0;
  background-color: #FFFFFF;
}

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;
  margin-bottom: 20px;
}

footer .logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

footer nav ul a {
  font-weight: 500;
}

footer .copyright {
  text-align: center;
  color: #666666;
  font-size: 0.9rem;
}

.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 500px;
  width: calc(100% - 60px);
  background-color: #FFFFFF;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  z-index: 1000;
  display: none;
}

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

.cookie-popup .cookie-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: -webkit-gradient(linear, left top, right top, from(#00A651), to(#009DC4));
  background: linear-gradient(90deg, #00A651 0%, #009DC4 100%);
  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;
}

.cookie-popup .cookie-icon img {
  width: 25px;
  height: 25px;
}

.cookie-popup h3 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.cookie-popup p {
  margin-bottom: 20px;
  text-align: center;
  font-size: 0.9rem;
}

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

.cookie-popup .cookie-buttons .button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  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;
  z-index: 1000;
  display: none;
}

.success-popup.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.success-popup .success-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  max-width: 800px;
  width: calc(100% - 40px);
  padding: 40px;
  text-align: center;
}

.success-popup .success-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00A651;
}

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

.success-popup .success-content .button {
  margin-top: 20px;
}

.success-page {
  padding: 60px 0;
}

.success-page .success-page-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

@media (max-width: 992px) {
  .success-page .success-page-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.success-page .success-image img {
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.success-page .success-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #00A651;
}

.success-page .success-text p {
  margin-bottom: 30px;
}

.success-page .success-text .button {
  margin-top: 20px;
}

html {
  scroll-behavior: smooth;
}
/*# sourceMappingURL=style.css.map */