/* Price Table Styles */
.price-table {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.price-table .section-title.black {
  color: #212529;
}

.price-table .underline.purple {
  background-color: #6f42c1;
  width: 80px;
  height: 3px;
  margin: 0.5rem auto 2rem;
  border-radius: 2px;
}

.price-table .leader {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #212529;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.price-table .btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #212529;
  font-weight: 600;
  transition: all 0.3s ease;
}

.price-table .btn-warning:hover {
  background-color: #e0a800;
  border-color: #d39e00;
  color: #fff;
}

@media (max-width: 768px) {
  .price-table .d-flex {
    flex-direction: column;
    gap: 1rem;
  }
}


/* Services Section */
.services {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.services .section-item-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #212529;
}

.services .section-item-detail {
  font-size: 1rem;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 1rem;
}

.services .service-card {
  background-color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.services .service-card:hover {
  background-color: #f9f9f9; 
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


.services .underline.purple {
  background-color: #6f42c1;
  width: 80px;
  height: 3px;
  margin: 0.5rem auto 2rem;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .services .row {
    flex-direction: column;
    gap: 2rem;
  }
}