.about-us {
  max-width: 1680px;
  margin: 0 auto;
}

.about-us .about-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: 100px;
  padding: 50px 0;
  width: 85%;
  margin: 0 auto;
}

.about-us .about-container .about-first {
  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;
  gap: 100px;
}

.about-us .about-container .about-first .left {
  width: 50%;
}

.about-us .about-container .about-first .left .bigtitle {
  font-size: 40px;
  font-weight: 500;
  color: #202124;
}

.about-us .about-container .about-first .left .smalltitle {
  font-size: 20px;
  font-weight: 500;
  color: #202124;
  margin-top: 10px;
}

.about-us .about-container .about-first .left .text {
  font-size: 17px;
  color: #222222;
}

.about-us .about-container .about-first .left .text ul {
  list-style: disc;
  padding-left: 20px;
}

.about-us .about-container .about-first .left .text ul li {
  margin-top: 10px;
  font-size: 17px;
  color: #222222;
}

.about-us .about-container .about-first .left .link {
  margin-top: 20px;
}

.about-us .about-container .about-first .left .link a {
  background-color: transparent;
  border: 2px solid #03429f;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #03429f;
  font-weight: 500;
}

.about-us .about-container .about-first .right {
  width: 50%;
}

.about-us .about-container .about-first .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-us .about-container .about-second .bigtitle {
  font-size: 40px;
  font-weight: 500;
  color: #202124;
}

.about-us .about-container .about-second .boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 10px;
}

.about-us .about-container .about-second .boxes .box {
  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;
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 10px;
  width: 350px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100px;
}

.about-us .about-container .about-second .boxes .box .text {
  font-size: 16px;
  font-weight: 300;
  color: #696969;
}

.about-us .about-container .about-second .boxes .box .author {
  font-size: 18px;
  margin: 0;
  font-weight: 400;
  line-height: 1.3;
  color: #202124;
  margin-top: 10px;
}

@media (max-width: 720px) {
  .about-us .about-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: 100px;
    padding: 50px 0;
    width: 90%;
    margin: 0 auto;
  }
  .about-us .about-container .about-first {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .about-us .about-container .about-first .left {
    width: 100%;
  }
  .about-us .about-container .about-first .left .bigtitle {
    font-size: 30px;
    font-weight: 500;
    color: #202124;
  }
  .about-us .about-container .about-first .left .smalltitle {
    font-size: 18px;
    font-weight: 500;
    color: #202124;
    margin-top: 10px;
  }
  .about-us .about-container .about-first .left .text {
    font-size: 15px;
    color: #222222;
  }
  .about-us .about-container .about-first .left .text ul {
    list-style: disc;
    padding-left: 20px;
  }
  .about-us .about-container .about-first .left .text ul li {
    margin-top: 10px;
    font-size: 15px;
    color: #222222;
  }
  .about-us .about-container .about-first .left .link {
    margin-top: 20px;
  }
  .about-us .about-container .about-first .left .link a {
    background-color: transparent;
    border: 2px solid #03429f;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: #03429f;
    font-weight: 500;
  }
  .about-us .about-container .about-first .right {
    width: 100%;
  }
  .about-us .about-container .about-first .right img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about-us .about-container .about-second .bigtitle {
    font-size: 30px;
    font-weight: 500;
    color: #202124;
  }
  .about-us .about-container .about-second .boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    width: 100%;
    margin-top: 10px;
  }
  .about-us .about-container .about-second .boxes .box {
    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;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100px;
  }
  .about-us .about-container .about-second .boxes .box .text {
    font-size: 15px;
    font-weight: 300;
    color: #696969;
  }
  .about-us .about-container .about-second .boxes .box .author {
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    line-height: 1.3;
    color: #202124;
    margin-top: 10px;
  }
}

/* Services Section */
.about-services-section {
  width: 100%;
  padding: 40px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.service-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #03429f;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #03429f 0%, #0173CF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon i {
  font-size: 2.5rem;
  color: white;
}

.service-title {
  font-size: 24px;
  font-weight: 600;
  color: #202124;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 16px;
  color: #222222;
  line-height: 1.6;
}

.service-list li i {
  color: #03429f;
  margin-right: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}

.service-link a {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #03429f;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  color: #03429f;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link a:hover {
  background-color: #03429f;
  color: white;
}

/* Trust & Compliance Section */
.about-trust-section {
  width: 100%;
  padding: 40px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.trust-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 35px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #03429f;
}

.trust-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #03429f 0%, #0173CF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.trust-icon i {
  font-size: 2rem;
  color: white;
}

.trust-title {
  font-size: 22px;
  font-weight: 600;
  color: #202124;
  margin-bottom: 15px;
}

.trust-text {
  font-size: 16px;
  color: #222222;
  line-height: 1.6;
  margin-bottom: 20px;
}

.trust-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #03429f;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.trust-link:hover {
  color: #0173CF;
  gap: 12px;
}

.trust-link i {
  font-size: 0.9rem;
}

/* Contact Section */
.about-contact-section {
  width: 100%;
  padding: 40px 0;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.contact-item i {
  font-size: 1.5rem;
  color: #03429f;
  margin-right: 15px;
  margin-top: 3px;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}

.contact-item div {
  flex: 1;
}

.contact-item div strong {
  display: block;
  font-size: 16px;
  color: #202124;
  margin-bottom: 5px;
}

.contact-item div p,
.contact-item div a {
  font-size: 16px;
  color: #222222;
  margin: 0;
  line-height: 1.6;
}

.contact-item div a {
  color: #03429f;
  text-decoration: none;
}

.contact-item div a:hover {
  text-decoration: underline;
}

.additional-links a {
  transition: all 0.3s ease;
}

.additional-links a:hover {
  background: #03429f !important;
  color: white !important;
  border-color: #03429f !important;
}

@media (max-width: 768px) {
  .services-grid,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .service-card,
  .trust-card {
    padding: 25px;
  }
  
  .contact-item {
    padding: 15px;
  }
}
/*# sourceMappingURL=about.css.map */