/* GENERAL CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HERO SECTION */
.about-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #e0f7ea, #e6f0ff);
  padding: 80px 0;
  gap: 40px;
}

.about-hero h1 {
  font-size: 48px;
  color: #28a745; /* slight green */
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #333;
}

.btn-hero {
  padding: 12px 30px;
  background: #28a745;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-hero:hover {
  background: #1e7e34;
  transform: translateY(-3px);
}

.hero-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ABOUT CONTENT */
.about-content {
  padding: 80px 0;
  background: #fff;
}

.content-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.content-section.reverse {
  flex-direction: row-reverse;
}

.content-img {
  width: 50%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.content-text h2 {
  font-size: 32px;
  color: #28a745;
  margin-bottom: 15px;
}

.content-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* TEAM SECTION */
.team-section {
  background: #e6f0ff;
  padding: 80px 0;
  text-align: center;
}

.team-section .section-title {
  font-size: 36px;
  color: #28a745;
  margin-bottom: 50px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 14px;
  color: #555;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* CTA SECTION */
.about-cta {
  background: linear-gradient(to right, #28a745, #1e7e34);
  text-align: center;
  padding: 60px 20px;
  border-radius: 15px;
  margin: 80px 20px;
}

.about-cta h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 25px;
}

.btn-cta {
  padding: 12px 30px;
  background: #fff;
  color: #28a745;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-cta:hover {
  background: #f1f1f1;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-image img, .content-img {
    width: 100%;
  }

  .content-section.reverse {
    flex-direction: column;
  }

  .team-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.team-card {
  margin: 0 auto; 
  text-align: center;
  max-width: 300px; /* optional to control size */
}
