:root {
  --primary: #7444fd;
  --light: #f9f9fb;
  --dark: #222;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* SERVICES */
.services {
  padding: 4rem 0;
}

.service-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-section.reverse {
  flex-direction: row-reverse;
}

.service-image,
.service-content {
  flex: 1;
}

/* Images */
.service-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Text content */
.service-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-content p {
  margin-bottom: 1rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .service-section,
  .service-section.reverse {
    flex-direction: column;
  }
}
