* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

header {
  background-color: #3e3e3e;
  color: white;
  padding: 1rem 0;
  text-align: center;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.subtitle {
  text-align: center;
  margin: 2rem 0 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #2a2a2a;
}

.intro {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #ccc;
   display: flex;
  flex-direction: column;
  gap: 1em;
  justify-content: space-between;
}

.taxi-link {
  text-decoration: underline;
  color: #003060;
  padding-top: 20px;
}

.taxi-text {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  color: #1d1d1d;
}

.services {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #555;
}

.waves {
  margin: 1rem 0;
  font-size: 1.2rem;
}

.button {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background-color: #004080;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin: 0.3rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #003060;
}

.button.dark {
  background-color: #595858;
}

.button.dark:hover {
  background-color: #1a1a1a;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

/* Responsive Layout */
@media (min-width: 768px) {
  .cards {
    flex-direction: row;
    justify-content: space-between;
  }

  .card {
    width: 48%;
  }

  .button-group {
    flex-direction: row;
    justify-content: center;
  }
}
