/* Services Section Styles */
.services-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.services-header p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
  border: none;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.service-visual {
  margin-bottom: 25px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.placeholder-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.placeholder-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 8px;
  opacity: 0.3;
}

.service-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 0;
}