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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #192f5d;
}

h1 {
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

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

@media (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

p {
  margin-bottom: 15px;
}

p:last-child {
  margin-bottom: 0;
}

.btn-primary, .btn-outlined {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #192f5d;
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background-color: #0e1b35;
}

.btn-outlined {
  background-color: transparent;
  color: #192f5d;
  border: 2px solid #192f5d;
}

.btn-outlined:hover {
  background-color: #192f5d;
  color: #ffffff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 15px 0;
}

.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;
}

.header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #192f5d;
}

.header .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .nav ul li {
  margin-right: 20px;
}

.header .nav ul li:last-child {
  margin-right: 0;
}

.header .nav ul li a {
  color: #1a1a1a;
  font-weight: 500;
}

.header .nav ul li a:hover {
  color: #0057ff;
}

@media (max-width: 768px) {
  .header .nav {
    display: none;
  }
}

@media (max-width: 576px) {
  .header .contact-btn {
    display: none;
  }
}

.hero {
  background-color: #192f5d;
  color: #ffffff;
  padding: 120px 0 80px;
  background-image: url("./assets/1.png");
  background-size: cover;
  background-position: center;
}

.hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero .hero-content h1 {
  color: #ffffff;
  margin-bottom: 30px;
}

.hero .hero-content p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials {
  padding: 80px 0;
  background-color: #f5f7ff;
}

.testimonials .testimonials-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .testimonials .testimonials-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .testimonials .testimonials-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.testimonials .testimonial-card {
  background-color: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
}

.testimonials .testimonial-card .testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
}

.testimonials .testimonial-card .testimonial-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonials .testimonial-card h3 {
  margin-bottom: 5px;
}

.testimonials .testimonial-card .testimonial-position {
  color: #616161;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

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

.features {
  padding: 80px 0;
  background-color: #ffffff;
}

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

@media (min-width: 768px) {
  .features .features-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .features .features-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.features .feature-card {
  background-color: #f5f7ff;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.features .feature-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.features .feature-card .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.features .feature-card .feature-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.features .feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
}

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

.about-us .about-header {
  text-align: center;
  margin-bottom: 40px;
}

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

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

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

.about-us .stat-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-us .stat-card h3 {
  color: #0057ff;
  font-size: 2rem;
  margin-bottom: 10px;
}

.about-us .stat-card p {
  font-size: 0.9rem;
  color: #616161;
}

.about-us .about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

.contact {
  padding: 80px 0;
  background-image: url(./assets/6.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
}

.contact h2, .contact p {
  text-align: center;
  color: #ffffff;
}

.contact p {
  max-width: 700px;
  margin: 0 auto 40px;
}

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

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

.contact form .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.contact form .form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #aeaeae;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact form .form-group input:focus {
  outline: none;
  border-color: #0057ff;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 87, 255, 0.2);
          box-shadow: 0 0 0 2px rgba(0, 87, 255, 0.2);
}

.contact form button {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

.footer {
  background-color: #192f5d;
  color: #ffffff;
  padding: 50px 0 30px;
}

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

.footer .footer-content .footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .footer .footer-content .footer-logo {
    width: 100%;
    text-align: center;
  }
}

.footer .footer-content .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .footer-content .footer-links a {
  margin-right: 20px;
}

.footer .footer-content .footer-links a:last-child {
  margin-right: 0;
}

.footer .footer-content .footer-links a:hover {
  color: #0057ff;
}

@media (max-width: 576px) {
  .footer .footer-content .footer-links {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer .copyright {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  z-index: 999;
  display: none;
}

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

.cookie-consent .cookie-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;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-consent .cookie-content p {
  margin: 0 20px 0 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 576px) {
  .cookie-consent .cookie-content p {
    margin: 0 0 15px 0;
    width: 100%;
  }
}

.cookie-consent .cookie-content button {
  white-space: nowrap;
}

@media (max-width: 576px) {
  .cookie-consent .cookie-content button {
    width: 100%;
  }
}

input:invalid {
  border-color: #ff3860 !important;
}

input:valid {
  border-color: #23d160 !important;
}

.privacy-content {
  min-height: 80dvh;
  padding-top: 150px;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.thx-content {
  min-height: 80dvh;
  padding-top: 50px;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
/*# sourceMappingURL=style.css.map */