ul{
    list-style-type: none;
}
html {
  scroll-behavior: smooth;
}
body{
    margin: 0px;
    padding-bottom: 30px;
    width: 100%;
    min-height: 100vh;
    background-image: url("images/bgc.png");
    background-size: 100%;     
}

body {
  /* background-color: #000; */
  /* font-family: 'Segoe UI', sans-serif; */
  margin: 0;
  padding: 0;
}

.pricing-section {
  padding: 50px 20px;
  display: flex;
  align-items: center;
  min-height: 80svh;
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1300px;
  margin: auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card {
  border: 1px solid #e60000;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(230, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(255, 0, 0, 0.5);
}

.pricing-card h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
  color: #fff;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card ul li {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.4;
}

.price {
  text-align: center;
  margin-top: 25px;
}

.price .old {
  text-decoration: line-through;
  color: #999;
  font-size: 16px;
}

.price .new {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  display: block;
  margin-top: 5px;
}

.price p {
  font-size: 14px;
  color: #ccc;
  margin: 8px 0;
}

.price button {
  background-color: #e60000;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.price button:hover {
  background-color: #cc0000;
}
