/* style.css */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.6;
}

.hero {
  background: linear-gradient(135deg, #1f1f1f, #2b2b2b);
  padding: 4rem 1rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  background-color: #00bcd4;
  color: #121212;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

.services {
  padding: 3rem 1rem;
  text-align: center;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: #00bcd4 !important;
  color: #121212
  padding: 1.5rem;
  border-radius: 10px;
  flex: 1 1 250px;
  max-width: 250px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.card img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.card h3 {
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.about {
  padding: 2rem 1rem;
  text-align: center;
}

footer {
  background-color: #1a1a1a;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: #00bcd4;
  text-decoration: none;
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
}
