/* About Us Section Styles */
.about-us {
  background: linear-gradient(180deg, #ffffff 0%, #f1f1f1 100%);
  color: #222;
  padding: 80px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  background: rgba(240, 240, 240, 0.9);
}

.about-us h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.about-us .intro {
  font-size: 18px;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto 50px auto;
  color: #333;
}

.about-us .features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.about-us .feature {
  max-width: 260px;
  text-align: center;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(128, 0, 128, 0.7);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.about-us .feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(128, 0, 128, 0.7);
}

.about-us .feature i {
  font-size: 36px;
  color: #d4a017; /* Gold accent */
  margin-bottom: 15px;
}

.about-us .feature h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #111;
}

.about-us .feature p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.about-us .signature {
  font-weight: 600;
  font-style: italic;
  font-size: 18px;
  color: #444;
}
