body[data-page="services"] {
  background-color: #f8f9fa;
}

/* General Service Page Beautification Styles */
.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  opacity: 0.1;
  transform: scale(1.5);
}

.services-hero h1, .services-hero p {
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

.service-detail-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #333;
}

.content-card {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  color:#444545;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #667eea, #764ba2);
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.feature-item .icon {
  font-size: 1.5rem;
  color: #a5c33c;
  margin-right: 20px;
  width: 30px;
  text-align: center;
}

.tech-badge {
  background-color: rgba(102, 126, 234, 0.1);
  color: #a5c33c;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.tech-badge:hover {
    background-color: #a5c33c;
    color: #fff;
    transform: scale(1.05);
}

.pricing-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.pricing-card.recommended {
  border-color: #a5c33c;
  transform: scale(1.03);
}

.pricing-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
}

.pricing-card .period {
  font-size: 1rem;
  color: #6c757d;
}

.pricing-card ul li {
  margin-bottom: 10px;
}

.cta-button {
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 45px;
  background:#a5c33c;
  color: white;
  border: none;
  transition: all 0.4s ease;
  background-size: 200% auto;
}

.cta-button:hover {
  color: white;
  box-shadow: 0 12px 25px rgba(102, 126, 234, 0.35);
  transform: translateY(-4px);
  background-position: right center;
}