.aboutSection {
  padding-bottom: 5rem;
  background-color: white;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.3rem 1rem;
}



.aboutGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
  padding-top: 55px;
}

@media (min-width: 1024px) {
  .aboutGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.aboutTitle {
  font-size: 1.875rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .aboutTitle {
    font-size: 2.25rem;
  }
}

.aboutText {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.aboutImage {
  position: relative;
}
.aboutImage img{
  height: unset;
  width: 100%;
}
.aboutImageContent {
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.statsSection {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
  background-color: #f7f8fa;
  padding: 45px 0;
}

@media (min-width: 768px) {
  .statsSection {
    grid-template-columns: repeat(4, 1fr);
  }
}

.statItem {
  text-align: center;
}

.statIcon {
  background-color: #dbeafe;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.statNumber {
  font-size: 1.875rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}

.statLabel {
  color: #6b7280;
}

.whyChooseSection {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.875rem;
}

@media (min-width: 768px) {
  .whyChooseSection {
    flex-direction: row;
  }
}

.whyChooseLeft {
  width: 100%;
}

@media (min-width: 768px) {
  .whyChooseLeft {
    width: 50%;
  }
}

.whyChooseRight {
  width: 100%;
}

@media (min-width: 768px) {
  .whyChooseRight {
    width: 50%;
  }
}

.whyChooseTitle {
  font-weight: 600;
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
}

@media (min-width: 768px) {
  .whyChooseTitle {
    font-size: 1.875rem;
  }
}

.whyChooseSubtitle {
  font-weight: 500;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .whyChooseSubtitle {
    font-size: 1.125rem;
  }
}

.whyChooseText {
  font-weight: 500;
  padding-bottom: 1rem;
}

.quoteText {
  display: block;
  font-style: italic;
  font-weight: 500;
}

.bannerImage {
  margin: 0 auto;
  display: block;
  width: 100%;
  height: 100%;
}

.teamSection {
  margin: 3rem 0;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .teamSection {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .teamSection {
    padding: 0 2rem;
  }
}

.teamTitle {
  font-size: 1.875rem;
  text-align: center;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.teamDescription {
  font-size: 1rem;
  text-align: center;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .teamDescription {
    font-size: 1.25rem;
  }
}

.teamGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.875rem;
}

@media (min-width: 768px) {
  .teamGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.teamMember {
  text-align: center;
}

.memberImageContainer {
  position: relative;
  margin-bottom: 1.5rem;
}

.memberImage {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  margin: 0 auto;
  object-fit: cover;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.teamMember:hover .memberImage {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.memberName {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.memberRole {
  color: #00A63E;
  font-weight: 500;
  margin-bottom: 1rem;
}

.memberBio {
  color: #6b7280;
  line-height: 1.6;
}