.info-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #5c8f2b;
  border: 2px dashed #cfe5a6;
  border-radius: 16px;
  padding: 16px 22px;
  height: 90px;
}

.badge-icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon svg {
  width: 45px;
  height: 45px;
}

.badge-text {
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
}

/* ===== About Us Responsive ===== */
.about-story {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-story p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 5px;
}

/* See More Button */
.btn-see-more {
  display: inline-block;
  background: #e18a2d;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-see-more:hover {
  background: #c9751f;
  color: #ffffff;
  text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .info-badge {
    height: auto;
    padding: 14px 18px;
  }

  .badge-text {
    font-size: 18px;
  }

  .about-story p {
    font-size: 16px;
  }
}