
.pricing-container {
  text-align: center;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 30px;
}

.highlight-blue {
  color: #007BFF;
}

.highlight-red {
  color: #DC3545;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #e6e6e6; 
  border-radius: 12px;
  padding: 25px;
  width: 260px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
}


.card .label {
  color: white;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 1.1em;
}

.black .label {
  background-color: #000; 
}

.blue .label {
  background-color: blue; 
}

.red .label {
  background-color: #dc3545; 
}

.card .price {
  font-size: 1.5em;
  color: #28a745;
  margin-bottom: 15px;
  text-align: center;
}

.card .price span {
  font-size: 0.8em;
  color: #666;
}

.card ul {
  list-style: none;
  margin: 10px 0;
  padding: 0;
}

.card ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.card ul li::before {
  content: '✔';
  color: green;
  position: absolute;
  left: 0;
}

.card ul li.cross::before {
  content: '✘';
  color: red;
}

.select-btn {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  align-items: center;
  font-weight: bold;
  border: none;
  margin-top: 15px;
  cursor: pointer;
}

.black-btn {
  background: black;
  color: white;
}

.blue-btn {
  background: blue;
  color: white;
}

.red-btn {
  background: #DC3545;
  color: white;
}

.footer-note {
  margin-top: 40px;
  font-size: 1em;
  align-items: center;
}

.highlight-border {
  display: inline-block;
  border: 2px solid #007BFF;
  padding: 5px 10px;
  border-radius: 6px;
}

.text{
  align-items: center;
  display: flex;
  justify-content: center;
}