/* Global Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
  overflow-x: hidden;
}

/* About Section */
.about-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffccbc, #ffe0b2);
  animation: fadeIn 1.5s ease-in-out;
}

.about-section h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  padding: 30px 20px;
  background: #fff3e0;
}

.team-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-box h2 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 10px;
}

.team-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Tweaks */
@media (max-width: 480px) {
  .team-box {
    width: 180px;
  }

  .about-section h1 {
    font-size: 2rem;
  }

  .about-section p {
    font-size: 1rem;
    padding: 15px;
  }

  .team-box h2 {
    font-size: 1.25rem;
  }

  .team-box p {
    font-size: 0.95rem;
  }
}
