.eagle-info-section {
  font-family: Arial, sans-serif;
  color: #222;
}

/* SERVICE ICONS SECTION */
.eagle-service-icons {
  display: flex;

  justify-content: center;
  gap: 20px;
  background: linear-gradient(to right, #fdcc38, #0a0a09);
  padding: 40px 5%;
}

.eagle-icon-box {
  background: white;
  padding: 20px;
  width: 200px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.eagle-icon-box img {
  height: 40px;
  margin-bottom: 10px;
}

.eagle-icon-box p {
  font-weight: bold;
  font-size: 14px;
  margin: 0;
}

/* TEAM SECTION */
.eagle-team-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 50px 5%;
  background: #fff;
}

.eagle-team-text {
  flex: 1 1 100%;
  margin-bottom: 30px;
}

.eagle-team-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.eagle-team-text p {
  font-size: 15px;
  line-height: 1.6;
}

.eagle-team-image {
  flex: 1 1 100%;
  text-align: center;
}

.eagle-team-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* TESTIMONIALS SECTION */
.eagle-testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  background: #f1f3f7;
  padding: 40px 5%;
}

.eagle-testimonial-card {
  background: white;
  width: 100%;
  max-width: 320px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.eagle-stars {
  color: #fdcc39;
  font-size: 18px;
  margin-bottom: 10px;
}

/* MEDIA QUERIES */
@media (min-width: 768px) {
  .eagle-team-text,
  .eagle-team-image {
    flex: 1 1 45%;
  }

  .eagle-testimonial-card {
    width: 30%;
  }
}