 .aeps-section {
  background: #f5f8fc;
  padding: 80px 0;
}

.about-title {
  color: #225d7f;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  line-height: 28px;
  color: #333;
}

.aeps-image-box {
  position: relative;
}

.aeps-mobile {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
}

.aeps-services {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.aeps-service {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  background: white;
  border: 2px solid #00b3db;
  color: #00b3db;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.aeps-service:hover {
  background: #00b3db;
  color: white;
  transform: translateY(-3px);
}

/* Buttons (if any) */
.btn {
  display: inline-block;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-blue {
  background: #000;
  color: #fff;
}

.btn-blue:hover {
  background: #1c5572;
}

.btn-red {
  background: #d91e18;
  color: #fff;
}

.btn-red:hover {
  background: #a80024;
}

/* Responsive */
@media (max-width: 991px) {
  .aeps-section {
    padding: 50px 15px;
  }
  .about-title {
    font-size: 28px;
  }
  .about-text {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .about-title {
    font-size: 24px;
  }
  .about-text {
    font-size: 14px;
  }
  .aeps-services {
    flex-direction: column;
    gap: 10px;
  }
}
