/* Hero section */
.hero-section {
  float: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  padding: 0 5%;
  
}

/* Blue card */
.hero-card {
  float: center;
  background-color: #0a2c4d;
  color: white;
  padding: 2rem;
  border-radius: 30px;
  max-width: 600px;
  text-align: left;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 2rem;
  text-align: center;
}

h1 {
  margin-bottom: 2rem;
  color: #111;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  width: 280px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.card h2 {
  margin: 0;
  font-size: 1.25rem;
  color: #e63946;
}

.card .subtitle {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.card .price {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.card ul {
  padding-left: 1rem;
  margin: 0 0 1rem 0;
}

.card ul li {
  margin-bottom: 0.5rem;
  list-style-type: '✔ ';
  color: #333;
}

.card button {
  background-color: #1868b8;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.card button:hover {
  background-color: #1868b8;
}

/* Extra styling for different tiers */
.card.webovky {
  background-color: #111827;
  color: white;
}

.card.webovky h2,
.card.webovky .price,
.card.webovky ul li {
  color: white;
}

.card.premium button {
  background-color: #1868b8;
}

.card.premium button:hover {
  background-color: #1868b8;
}
