/* Prices Section */
.prices {
  padding: 60px 0;
  background-color: #f9f9f9;
  width: 100%;
}

.prices-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.prices-title {
  text-align: center;
  color: #333;
  margin-bottom: 40px;
  font-size: 32px;
  position: relative;
}

.prices-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #f7be16;
  margin: 15px auto 0;
}

.service-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-description p {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.service-features {
  list-style-type: none;
  display: inline-block;
  text-align: left;
}

.service-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 30px;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f7be16;
  font-weight: bold;
  font-size: 18px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.price-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.price-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s;
}

.price-card:hover .price-image img {
  transform: scale(1.05);
}

.price-card h3 {
  padding: 20px 20px 10px;
  font-size: 20px;
  flex-grow: 1;
}

.price-value {
  font-size: 28px;
  font-weight: bold;
  color: #f7be16;
  padding: 0 20px 20px;
}

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

.price-note p {
  margin-bottom: 20px;
  color: #666;
}

@media (max-width: 768px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .service-description {
    padding: 20px;
  }

  .price-image {
    height: 180px;
  }
}
