/* 

.about-hero {
  background: linear-gradient(rgb(5 72 41 / 60%), rgb(249 0 0 / 60%)), 
              url("../resources/images/about-hero.jpg") center/cover no-repeat;
  color: #fff;
  padding: 120px 20px;
}
.about-hero h1 {
  font-size: 3rem;
  font-weight: 800;
}
.about-hero h1 span {
  color: #d32f2f; 
}
.about-hero p {
  margin: 20px 0;
  font-size: 1.2rem;
}
.btn-custom {
  background: #388e3c; 
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-custom:hover {
  background: #d32f2f; 
}


.about-section {
  padding: 80px 20px;
}
.about-section h2 {
  color: #d32f2f;
  font-weight: 700;
  margin-bottom: 20px;
}


.card-custom {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: 0.4s;
}
.card-custom:hover {
  transform: translateY(-8px);
}
.card-custom .icon {
  font-size: 40px;
  color: #388e3c;
  margin-bottom: 15px;
}


.team-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: 0.4s;
}
.team-card:hover {
  transform: translateY(-8px);
}
.team-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #388e3c;
  margin-bottom: 15px;
}
.team-card h5 {
  margin-bottom: 5px;
  font-weight: 700;
  color: #d32f2f;
}
.team-card .role {
  color: #555;
  font-weight: 500;
}


.cta-section {
  background: linear-gradient(135deg, #d32f2f, #388e3c);
  color: #fff;
  padding: 80px 20px;
  border-radius: 16px 16px 0 0;
}
.cta-section h2 {
  font-weight: 700;
  margin-bottom: 15px;
}
 */
