* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f8faff;
  color: #222;
}

.pricing {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
  padding: 50px 0;
}

/* .section-header h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 10px;
}

.section-header h2 span {
  color: #007bff;
}

.section-header p {
  text-align: center;
  color: #555;
  margin-bottom: 50px;
  font-size: 1.05rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
} */

/* Service Grid */
.pricing-service {
  margin-bottom: 60px;
}

.pricing-service h3 {
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Price Card */
.price-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.price-card h4 {
  font-size: 1.3rem;
  color: #007bff;
  margin-bottom: 10px;
}

.price-card .price {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.price-card ul {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}

.price-card ul li {
  padding: 6px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-card ul li.included::before {
  content: "✔";
  color: #28a745;
  font-weight: bold;
}

.price-card ul li.excluded::before {
  content: "✖";
  color: #dc3545;
  font-weight: bold;
  opacity: 0.6;
}

/* Buttons */
.price-card .btn {
  text-decoration: none;
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.price-card .btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
}
