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

body{
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  margin: 0;
}
 
.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1a1a1a;
  color: white;
  padding: 40px;
  text-align: center;
  transition: transform 0.4s ease,border 0.3s ease;
  border: 1px solid gray;
}

.price-card h2 {
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.price-card .price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}


.price-card:hover {
  transform: scale(1.05);
  border: 1px solid #00ff9d;
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background-color: wheat;
  width: 100%;
  margin: 50px auto;
  padding: 20px;
}

@media (max-width: 800px) {
  .pricing-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px;
    width: 100%;
    height: auto;
    background-color:rgba(0, 255, 157, 0.2);
  }

  .price-card {
    width: 100%;
    padding: 40px 20px;
    margin-bottom: 20px;
    min-height: 400px;
    padding: 30px 20px;
  }


}

.price-card ul {
  list-style: none;
  margin-top: 20px 0;
  padding: 0;
  line-height: 2;
  color: #a0a0a0;
}

button {
  background-color: transparent;
  color: #00ff9d;
  border: 2px solid #00ff9d;
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
button:hover {
  transform: scale(1.1);
  background-color: #00ff9d;
  color: #1a1a1a;
  border-color: transparent;
  box-shadow: 0 0 5px #00ff9d;
}

h2, .price {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.price {
  display: block;
  width: 100%;
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
}

.price span {
 font-size: 1rem;
 color: #a0a0a0;
}

ul li {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #d1d1d1;
  margin: 12px 0;
}

.icon-bg i{
  font-size: 40px;
  color: #00ff9d;
  margin-bottom: 20px;
}