/* Base styles */
.about-us-header-section {
  background-color: rgb(245, 245, 245);
}
.about-us-header-section h2 {
  text-align: center;
  font-weight: 700;
  font-size: 65px !important;
  color: rgb(27, 57, 93);
  padding: 30px 0 !important;
}

.about-us-header-section span {
  color: rgb(78, 165, 219);
}

.about-us-text-section {
  text-align: center;
  padding-top: 20px;
}

.about-us-text-section h6 {
  font-size: 20px;
  font-weight: 400;
  padding-top: 20px;
}

.about-us-text-section h1 {
  font-size: 40px;
  font-weight: 800;
  color: rgb(78, 165, 219);
  font-family: Arial, Helvetica, sans-serif;
  padding: 10px 0;
}

.about-us-text-section h1 span {
  color: rgb(27, 57, 93);
}

.about-us-text-section p {
  font-size: 20px;
  font-weight: 400;
  padding: 5px 20px;
  margin: 0 auto;
  max-width: 800px;
}

.aboutus-section02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0px;
}

.aboutus-section02-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgb(245, 245, 245);
  text-align: center;
  height: 494px !important;
}

.aboutus-section02-text h2 {
  font-size: 40px;
  font-weight: 700;
  color: rgb(16, 21, 27);
  margin-bottom: 20px;
}

.aboutus-section02-text p {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 15px;
  padding: 0 20px;
}

.aboutus-section02-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.aboutus-section02-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.promise-images {
  width: 100px;
  height: 80px;
  padding: 5px 5px;
}

.aboutus-section03-text {
  text-align: center;
  padding: 60px 20px;
}

.aboutus-section03-text h2 {
  font-size: 2rem;
  font-weight: bold;
}

.aboutus-section03-text p {
  font-size: 1rem;
  padding: 10px 20px;
  margin: 0 auto;
  max-width: 800px;
}

.aboutus-success-section04 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
  justify-content: center;
  background-color: rgb(245, 245, 245);
}

.aboutus-success-section04 div {
  text-align: center;
  padding: 20px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 calc(50% - 20px);
  max-width: 300px;
}

.aboutus-success-section04 div:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.aboutus-success-section04 h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgb(17, 104, 210);
  margin-bottom: 10px;
}

.aboutus-success-section04 h2 {
  font-size: 1.2rem;
  font-weight: bold;
  color: rgb(16, 21, 27);
  margin-bottom: 15px;
}

.aboutus-success-section04 p {
  font-size: 1rem;
  color: rgb(70, 70, 70);
  line-height: 1.5;
}

.aboutus-promise-section {
  text-align: center;
  padding: 60px 20px;
  background-color: rgb(245, 245, 245);
}

.aboutus-promise-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: rgb(17, 104, 210);
}

.aboutus-promise-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.aboutus-promise-items div {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  flex: 1 1 calc(50% - 20px);
  max-width: 300px;
}

.aboutus-promise-items div:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.aboutus-promise-items h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: rgb(16, 21, 27);
  margin-bottom: 15px;
}

.aboutus-promise-items p {
  font-size: 1rem;
  color: rgb(70, 70, 70);
  line-height: 1.5;
}

/* Responsive styles */
@media (min-width: 768px) {
  .aboutus-section02 {
    flex-direction: row;
    /* padding: 60px 40px; */
  }

  .aboutus-section02-text {
    height: auto;
  }

  .aboutus-success-section04 div,
  .aboutus-promise-items div {
    flex: 1 1 calc(25% - 20px);
  }
  .about-us-header-section h2 {
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    color: rgb(27, 57, 93);
    padding: 15px 0;
  }
}

@media (max-width: 480px) {
  .about-us-header-section h2 {
    font-size: 40px;
  }

  .about-us-text-section h1 {
    font-size: 30px;
  }

  .about-us-text-section p {
    font-size: 16px;
    padding: 5px 10px;
  }

  .aboutus-section02-text h2 {
    font-size: 28px;
  }

  .aboutus-section02-text p {
    font-size: 14px;
  }

  .aboutus-success-section04 div {
    flex: 1 1 100%;
  }

  .aboutus-promise-items div {
    flex: 1 1 100%;
  }
  .about-us-header-section h2 {
    text-align: center;
    font-weight: 700;
    font-size: 40px !important;
    color: rgb(27, 57, 93);
    padding: 15px 0 !important;
  }
}
