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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.btn.btn-primary {
  background-color: #ff9d42;
  color: #fff;
}

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

.btn.btn-text {
  background: transparent;
  color: #333;
}

.btn.btn-text:hover {
  color: #2e3a8e;
}

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

.privacy .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

header {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  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 img {
  height: 35px;
}

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

header nav ul li a {
  color: #333;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #2e3a8e;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background-color: #fff;
  border-radius: 10px;
  -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;
  display: none;
}

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

.cookie-popup .cookie-content {
  padding: 30px;
  text-align: center;
}

.cookie-popup .cookie-content .cookie-icon {
  margin-bottom: 10px;
}

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

.cookie-popup .cookie-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.cookie-popup .cookie-content p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666666;
}

.cookie-popup .cookie-content .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

@media (min-width: 576px) {
  .cookie-popup .cookie-content .cookie-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.hero {
  padding: 60px 0;
  background-color: #f5f6f8;
}

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

@media (min-width: 992px) {
  .hero .hero-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hero .hero-content .hero-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.hero .hero-content .hero-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.hero .hero-content .hero-text h1 {
  font-size: 32px;
  color: #2e3a8e;
  margin-bottom: 20px;
  line-height: 1.3;
}

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

.testimonials {
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
  color: #2e3a8e;
}

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

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

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

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

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

.testimonials .testimonial-card .testimonial-name {
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonials .testimonial-card .testimonial-stars {
  color: #ff9d42;
  margin-bottom: 15px;
}

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

.solutions {
  padding: 80px 0;
  background-color: #f5f6f8;
}

.solutions h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
  color: #2e3a8e;
}

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

@media (min-width: 992px) {
  .solutions .solutions-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

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

.solutions .solutions-content .solutions-text p {
  font-size: 18px;
  max-width: 500px;
}

.solutions .solutions-content .solutions-checklist {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.solutions .solutions-content .solutions-checklist .checklist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.solutions .solutions-content .solutions-checklist .checklist-item .checklist-icon {
  margin-right: 15px;
  background-color: #2e3a8e;
  color: #fff;
  width: 30px;
  height: 30px;
  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;
}

.solutions .solutions-content .solutions-checklist .checklist-item .checklist-content h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.solutions .solutions-content .solutions-checklist .checklist-item .checklist-content p {
  color: #666666;
}

.about {
  padding: 80px 0;
}

.about h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
  color: #2e3a8e;
}

.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-content .about-text p {
  margin-bottom: 15px;
  font-size: 16px;
}

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

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

.about .about-content .features-grid .feature-card {
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  height: 100%;
}

.about .about-content .features-grid .feature-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.about .about-content .features-grid .feature-card.feature-orange {
  background-color: #ff9d42;
}

.about .about-content .features-grid .feature-card.feature-blue {
  background-color: #4285f4;
}

.about .about-content .features-grid .feature-card.feature-green {
  background-color: #3db683;
}

.about .about-content .features-grid .feature-card.feature-pink {
  background-color: #f24b88;
}

.future {
  padding: 80px 0;
  background-color: #f5f6f8;
}

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

@media (min-width: 992px) {
  .future .future-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.future .future-content .future-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.future .future-content .future-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.future .future-content .future-text h2 {
  font-size: 28px;
  color: #2e3a8e;
  margin-bottom: 20px;
}

.future .future-content .future-text p {
  color: #666666;
}

.contact {
  padding: 80px 0;
}

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

@media (min-width: 992px) {
  .contact .contact-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

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

.contact .contact-content .contact-text h2 {
  font-size: 28px;
  color: #2e3a8e;
  margin-bottom: 20px;
}

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

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

.contact .contact-content .contact-text .contact-info p {
  margin-bottom: 10px;
}

.contact .contact-content .contact-text .contact-info p a {
  color: #2e3a8e;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.contact .contact-content .contact-text .contact-info p a:hover {
  color: #3b4aa8;
}

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

.contact .contact-content .contact-form form {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.contact .contact-content .contact-form form .form-group input:focus {
  outline: none;
  border-color: #2e3a8e;
}

.contact .contact-content .contact-form form button {
  width: 100%;
}

footer {
  background-color: #2e3a8e;
  color: #fff;
  padding: 40px 0;
}

footer .footer-content {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 20px;
}

footer .footer-content .footer-logo img {
  height: 35px;
}

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

footer .footer-content .footer-links a {
  color: #fff;
  font-size: 14px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

footer .footer-content .footer-links a:hover {
  opacity: 0.8;
}

footer .footer-content .footer-copyright {
  font-size: 14px;
  opacity: 0.8;
}

.success-page {
  background-color: #f5f6f8;
  min-height: 100vh;
  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;
}

.success-page .success-container {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}

.success-page .success-container .success-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 50px 30px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.success-page .success-container .success-card .logo {
  margin-bottom: 30px;
}

.success-page .success-container .success-card .logo img {
  height: 40px;
}

.success-page .success-container .success-card h1 {
  font-size: 28px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  header .header-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  header nav ul {
    gap: 15px;
  }
  .hero .hero-text h1 {
    font-size: 28px;
  }
  .contact .contact-form form {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  header nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*# sourceMappingURL=style.css.map */