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

html {
  scroll-behavior: smooth;
}

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

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

a:hover {
  color: #163f7e;
}

ul {
  list-style: none;
}

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

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

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

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

.btn-primary:hover {
  background-color: #163f7e;
  color: #fff;
}

.header {
  padding: 20px 0;
  background-color: #fff;
  -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;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #1E55A9;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links li:last-child {
  margin-left: 40px;
}

.nav-links li a {
  color: #333;
  font-weight: 500;
}

.nav-links li a:hover {
  color: #1E55A9;
}

.nav-links li a.btn {
  color: #fff;
}

.hero {
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #1E55A9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #666;
}

.stats {
  background-color: #1E55A9;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.stats h2 {
  margin-bottom: 40px;
  font-size: 32px;
}

.stats .stats-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.stats .stat-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
}

.stats .stat-item h3 {
  font-size: 36px;
  margin-bottom: 10px;
}

.stats .stat-item p {
  font-size: 16px;
}

.about {
  padding: 80px 0;
}

.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 h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

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

.about .about-text .btn {
  margin-top: 20px;
}

.about .about-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

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

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

.services .services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #666;
}

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

.services .service-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px 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 {
  margin-bottom: 20px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services .service-item .service-icon img {
  max-height: 50px;
}

.services .service-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1E55A9;
}

.services .service-item p {
  color: #666;
  font-size: 15px;
}

.testimonials {
  padding: 80px 0;
}

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

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

.testimonials .testimonial-item {
  background-color: #f5f7fa;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item .testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #333;
}

.testimonials .testimonial-item .testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonials .testimonial-item .testimonial-author .author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

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

.testimonials .testimonial-item .testimonial-author .author-info h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.testimonials .testimonial-item .testimonial-author .author-info p {
  font-size: 14px;
  color: #666;
}

.contact {
  padding: 80px 0;
  background-color: #f5f7fa;
}

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

.contact .contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #666;
}

.contact .contact-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

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

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

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

.contact .contact-form .form-group input,
.contact .contact-form .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
}

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

.contact .contact-form .form-group.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact .contact-form .form-group.checkbox input {
  width: auto;
  margin-top: 5px;
  margin-right: 10px;
}

.contact .contact-form .form-group.checkbox label {
  font-size: 14px;
  font-weight: normal;
}

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

.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 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;
  margin-bottom: 20px;
}

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

.footer .footer-links a {
  color: #fff;
  margin-left: 20px;
  opacity: 0.8;
}

.footer .footer-links a:hover {
  opacity: 1;
}

.footer .footer-copyright {
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.95);
  color: #fff;
  padding: 20px;
  z-index: 1000;
  display: none;
}

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

.cookie-popup .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  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;
  gap: 20px;
}

.cookie-popup .cookie-content p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
}

.cookie-popup .cookie-content button {
  min-width: 150px;
}

.success-page {
  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;
  background-color: #fff;
}

.success-page .success-container {
  text-align: center;
  max-width: 600px;
  padding: 40px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.success-page .success-logo {
  font-size: 30px;
  font-weight: 700;
  color: #1E55A9;
  margin-bottom: 30px;
}

.success-page h1 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.success-page .btn {
  text-transform: uppercase;
  font-weight: 700;
}

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

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  .nav-links li {
    margin-left: 15px;
  }
  .nav-links li:last-child {
    margin-left: 20px;
  }
  .cookie-popup .cookie-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .cookie-popup .cookie-content button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 20px;
  }
  .nav-links li:not(:last-child) {
    display: none;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 16px;
  }
  .stats .stat-item {
    width: 100%;
  }
  .about,
  .services,
  .testimonials,
  .contact {
    padding: 50px 0;
  }
}
/*# sourceMappingURL=style.css.map */