.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-logo img {
  width: 100px;
}

.navbar-menu .menu-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
}

.menu-list li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.background-blur-right {
  position: absolute;
  top: 120px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #FBB03B 0%, transparent 30%);
  filter: blur(100px);
  z-index: 0;
}

.background-blur-left {
  position: absolute;
  top: 800px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #FBB03B 0%, transparent 30%);
  filter: blur(100px);
  z-index: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 165px;
}

.custom-banner h1 {
  font-size: 95px;
}

.circle-image {
  height: 214px;
  width: 117px;
  object-fit: cover;
  border-radius: 100px;
  background-color: #ECF1F2;
}

.circle-wrapper {
  width: 45px;
  height: 45px;
}

.outer-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-circle.bg-blue {
  background-color: #C4D0D8;
}

.outer-circle.bg-beige {
  background-color: #F0E4C7;
}

.inner-circle {
  width: 28px;
  height: 28px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-circle img {
  width: 16px;
  height: 16px;
}


.with-margin {
  margin-right: 20px;
}

.row-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-left {
  text-align: left;
}

.highlight {
  color: #E92F05;
}

.content-wrapper {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
}

.image-text-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.images-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image img {
  width: 553px;
  height: 561px;
  object-fit: cover;
  border-radius: 20px;
}

.small-images {
  display: flex;
  gap: 20px;
}

.small-images img:first-child {
  width: 256px;
  height: 160px;
  object-fit: cover;
  border-radius: 20px;
}

.small-images img:last-child {
  width: 277px;
  height: 160px;
  object-fit: cover;
  border-radius: 20px;
}

.stat-box {
  background: linear-gradient(180deg, #E92F05 0%, #8C1C03 100%);
  height: 160px;
  width: 256px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.stat-box .big-text {
  font-size: 70px;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

.stat-box .small-text {
  font-size: 20px;
  font-weight: normal;
  margin: 0;
}

.text-right {
  flex: 1;
  text-align: justify;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.text-right h2 {
  font-size: 35px;
  margin-bottom: 16px;
  font-weight: bolder;
}

.text-right p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 50px;
  color: #707070;
}

.feature-box-line {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.feature-box-line img {
  width: 100%;
  height: auto;
}

.feature-box {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.feature-box img {
  width: 32px;
  height: 32px;
}

.feature-box h3 {
  margin: 0 0 6px;
  font-size: 25px;
  font-weight: bold;
}

.feature-box p {
  margin: 0;
  font-size: 15px;
  max-width: 380px;
}

.mission-section {
  display: flex;
  gap: 40px;
  margin-top: 100px;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 100px auto;
  padding: 0 20px;
}

.mission-left {
  flex: 1;
  min-width: 300px;
}

.mission-left h2 {
  font-size: 50px;
  font-weight: bolder;
  margin-bottom: 16px;
}

.mission-left p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #707070;
}

.mission-list {
  list-style: none;
  padding-left: 0;
}

.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 20px;
  margin-bottom: 16px;
  padding-left: 0;
}

.mission-list .check-icon {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.mission-right {
  display: flex;
  gap: 20px;
}

.mission-right img {
  width: 273px;
  height: 426px;
  object-fit: cover;
  border-radius: 16px;
}

@media screen and (max-width: 1082px) {

  .background-blur-right,
  .background-blur-left {
    width: 250px;
    height: 250px;
    filter: blur(60px);
  }

  .background-blur-right {
    top: 100px;
    right: 10px;
  }

  .background-blur-left {
    top: 950px;
    left: -60px;
  }

  .wrapper {
    margin-top: 50px;
    margin-bottom: 100px;
    padding: 0 15px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .custom-banner h1 {
    font-size: 40px;
  }

  .image-text-section {
    flex-direction: column;
    align-items: center;
  }

  .main-image img {
    width: 100%;
    height: auto;
  }

  .small-images {
    flex-direction: column;
    align-items: center;
  }

  .small-images img {
    width: 100% !important;
    height: auto;
  }

  .text-right {
    text-align: center;
    padding: 0 10px;
    align-items: center;
  }

  .mission-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mission-right {
    flex-direction: column;
    align-items: center;
  }

  .mission-right img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .mission-left h2 {
    font-size: 30px;
  }

  .mission-left p {
    font-size: 16px;
  }

  .mission-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
    text-align: start;
    align-items: center;
  }

  .mission-list li img.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
  }


  .stat-box {
    width: 100%;
    max-width: 3000px;
    height: auto;
    padding: 20px 0;
  }

  .stat-box .big-text {
    font-size: 50px;
  }

  .stat-box .small-text {
    font-size: 16px;
  }
}