:root {
  --brand-blue: #1c068c;
  --brand-orange: #d18219;
  --white-color: #fff;
  --light-gray: #f4f4f4;
  --dark-gray: #1e1e2f;
  --text-gray: #bdbdbd;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light-gray);
  color: #333;
}

#about {
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.container h2 {
  color: var(--brand-blue);
  font-size: 32px;
  font-weight: bold;
}

.container p.intro {
  font-style: italic;
  margin-bottom: 20px;
  color: #333;
}

.aboutus-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.aboutus-card {
  flex: 1 1 300px;
  background: var(--white-color);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.aboutus-card:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.aboutus-card h3 {
  color: var(--brand-orange);
  margin-bottom: 10px;
}

.aboutus-card ul {
  padding-left: 20px;
  color: #444;
}

.aboutus-card ul li {
  margin-bottom: 10px;
}

.aboutus-card ul li strong {
  color: var(--brand-blue);
}

@media (max-width: 768px) {
  .aboutus-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* Hide "Why Choose Us" card on large screens (≥1024px) */
/* @media (min-width: 1024px) {
  .aboutus-card:last-child {
    display: none;
  }
} */
