.services-section {
  padding: 80px 0;
  background-color: var(--background);
}

.services-container {
  display: flex;
  align-items: center; /* ✅ Vertically center children */
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  flex-wrap: wrap;
}

.services-text {
  flex: 1;
  min-width: 300px;
}

.services-text h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.services-text p {
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--text-light);
}

.services-list {
  list-style: none; /* ✅ removes the dot */
  padding: 0; /* optional: removes left indent */
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
  cursor: pointer;
  font-size: 15px;
  color: var(--text-dark);
}

.service-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  border-color: var(--primary-blue);
}

.service-item.active {
  border: 2px solid var(--primary-blue);
  background-color: rgba(66, 103, 178, 0.05); /* light blue bg */
  font-weight: 600;
  color: var(--primary-blue);
}

.services-preview-card {
  flex: 1;
  min-width: 300px;
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.preview-image img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}

.preview-content h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: var(--text-dark);
}

.preview-content p {
  font-size: 15px;
  color: var(--text-light);
}
