
.about-section {
  padding: 60px 20px;
  background: rgba(254, 194, 160, 0.3); 
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  max-width: 1200px;
  margin: 80px auto;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #000000;
  text-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.about-section .mission {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #fff;
  line-height: 1.6;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.about-card {
  background: rgba(255, 255, 255, 0.3); 
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 0 6px rgba(0,0,0,0.4);
}
.about-card p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
}
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
