@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');


    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #fff;
      color: #000;
      font-family: 'Poppins', sans-serif;
    }
    header {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
    }
    .logo {
      font-size: 24px;
      font-weight: bold;
    }
    .logo span {
      color: #3347bd;
    }
    .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }
    .nav-links a, .nav-links button {
      font-weight: bold;
    }
    .nav-links.ust {
        color: #fff;
    }

    .nav-links a {
      text-decoration: none;
      color: #000;
    }
    .button-red a {
        color: #fff !important;
    }
    
    .button-red {
      background-color: #3347bd;
      color: #fff;
      padding: 10px 20px;
      border: none;
      text-decoration: none;
      border-radius: 6px;
      cursor: pointer;
    }
    .button-outline {
      background-color: #fff;
      border: 0.5px solid #000;
      font-size: 0.8rem !important;
      text-decoration: none;
      color: #000;
      padding: 10px 20px;
      border-radius: 6px;
      cursor: pointer;
    }
    .hero {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: 60px 20px;
      flex-wrap: wrap;
    }
    .hero-text {
      max-width: 600px;
      flex: 1 1 300px;
    }
    .hero-text h1 {
      font-size: 42px;
    }
    .hero-text p {
      margin-top: 20px;
      font-size: 18px;
    }
    .hero-buttons {
      margin-top: 30px;
    }
    .hero-buttons button {
      margin-right: 10px;
      margin-top: 10px;
    }
    .hero-image {
      position: relative;
      flex: 1 1 300px;
      text-align: center;
      margin-top: 30px;
    }
    .hero-image img {
      max-width: 100%;
      height: auto;
    }

    .testimonials {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      padding: 60px 20px;
      text-align: center;
    }
    .testimonial {
      max-width: 300px;
      flex: 1 1 250px;
    }
    .stars {
      font-size: 20px;
      color: black;
    }
    .testimonial p {
      font-size: 16px;
      margin: 20px 0;
    }
    .testimonial h4 {
      margin: 0;
      font-weight: bold;
    }
    .testimonial span {
      font-size: 14px;
      color: gray;
    }

    @media (max-width: 768px) {
      .hero-text h1 {
        font-size: 28px;
      }
      .hero-text p {
        font-size: 16px;
      }
      header {
        flex-direction: column;
        align-items: flex-start;
      }
      .nav-links {
        margin-top: 10px;
      }
    }

        .services {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
      padding: 60px 20px;
    }
    .service {
      max-width: 300px;
      flex: 1 1 250px;
    }
    .service h3 {
      font-size: 18px;
    }
    .highlight {
      width: 30px;
      height: 6px;
      background-color: #3347bd;
      margin-bottom: 10px;
    }
    .service ul {
      margin-top: 10px;
      padding-left: 20px;
    }

    @media (max-width: 768px) {
      .hero-text h1 {
        font-size: 28px;
      }
      .hero-text p {
        font-size: 16px;
      }
      header {
        flex-direction: column;
        align-items: flex-start;
      }
      .nav-links {
        margin-top: 10px;
      }
    }

    h2 {
        justify-content: center;
        text-align: center;
        font-weight: 400;
    }

    .logo {
        margin-top: 20px;
    }

    .fr {
        background-color: rgb(231, 231, 231);
    }

    .stars {
        color: #3347bd;
    }

    h3 {
        font-weight: 300;
    }
    p,li {
        font-weight: 300;
    }

    .service {
        margin: 2px;
    }


    .site-footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  font-size: 14px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-section {
  flex: 1 1 200px;
}
.footer-section h4 {
  color: #5f71d8;
  font-size: 18px;
  margin-bottom: 10px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin: 5px 0;
}
.footer-section a {
  color: #fff;
  text-decoration: none;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 15px;
  margin-top: 30px;
  color: #ccc;
}
.social-icons {
  margin-top: 10px;
}
.social-icons a {
  margin: 0 8px;
  display: inline-block;
}
.social-icons img {
  filter: brightness(0) invert(1);
  transition: 0.3s;
}
.social-icons img:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}
