.about-section {
  padding: 80px 10%;
  background-color: #020024;
  color: white;
  text-align: center;
}

.about-section .highlight {
  color: #1e90ff;
}

.about-section h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 16px;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 60px;
}

.team-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #fff;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-card {
  background-color: #0d0d2b;
  border-radius: 15px;
  padding: 20px;
  width: 280px;
  color: white;
  box-shadow: 0 0 15px #1e90ff33;
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.team-card .title {
  font-weight: bold;
  color: #1e90ff;
  margin-bottom: 10px;
}
.company-overview {
  padding: 80px 10%;
  background-color: #020024;
  color: white;
  text-align: center;
}

.company-overview h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.company-overview .highlight {
  color: #1e90ff;
}

.company-overview p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #ccc;
}

.overview-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.overview-card {
  background-color: #0d0d2b;
  border-radius: 15px;
  padding: 25px;
  width: 300px;
  box-shadow: 0 0 20px #1e90ff22;
  transition: transform 0.3s;
  text-align: left;
}

.overview-card:hover {
  transform: translateY(-10px);
}

.overview-card h3 {
  color: #1e90ff;
  margin-bottom: 12px;
}

.overview-card p {
  color: #ddd;
  font-size: 14px;
}
