.who-we-are {
  padding: 20px 200px;
  background: #f8f8f0;
  gap: 20px;
}

.about-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}

/* Left */
.about-left {
  position: relative;
  flex: 1.2;
}

.about-left img {
  width: 100%;
  border-radius: 12px;
}

.about-badge {
  position: absolute;
  bottom: 7px;
  right: 0px;
  padding: 12px 12px;
  border-radius: 12px;
  text-align: center;
  border: 18px solid #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden; /* ensures border + radius apply cleanly */
}

.badge-icon {
  width: 20px;
  height: 20px;
  padding-bottom: 5px;
}

.badge-top {
  display: inline-flex;       /* keep them in one line */
  align-items: center;        /* vertical center */
  justify-content: center;    /* center horizontally */
  gap: 6px;                   /* space between star and number */
}

.badge-number {
  font-size: 32px;
  font-weight: 700;
}

.badge-number sup {
  font-size: 16px;
  vertical-align: super;
}

.badge-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.2);
  margin: 10px 0;
}

.about-badge p {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
}



/* Right */
.about-right {
  flex: 1;
  padding-top: 30px;
}

.section-label {
  display: inline-flex;         /* put icon + text in one row */
  align-items: center;          /* vertical centering */
  gap: 8px;                     /* space between icon and text */
  margin-left: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 14px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #ddd;
}

.section-label img {
  width: 16px;
  height: 16px;
  position: relative;
  top: -7px;   /* negative = move upward */
}


.about-right p {
  font-size: 15px;
  line-height: 1.4;      /* reduce line spacing */
  margin-bottom: 18px;   /* smaller bottom space */
}

.about-right p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

/* Features */
.who-features {
  display: flex;
  gap: 40px;
  margin-top: -20px;
}

.feature {
  max-width: 260px;
}

.feature-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 250px;
}

.feature-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2b2b2b;
}

.feature-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}