/* ===============================
   SERVICES PAGE CUSTOM STYLES
   =============================== */

.services-hero {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  align-items: center;
  margin-top: var(--space-10);
  margin-bottom: var(--space-12);
}
.hero-content {
  flex: 1 1 340px;
  min-width: 300px;
}
.hero-image {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 420px;
  margin-left: auto;
}
.services-lead {
  font-size: var(--font-size-lg);
  color: var(--gray-700);
  margin-bottom: var(--space-8);
}

.services-overview .service-summary img {
  border-radius: var(--radius-md);
  width: 100%;
  margin-bottom: var(--space-4);
}

.services-overview .service-summary {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: start;
}
.services-overview .service-summary h3 {
  margin-bottom: var(--space-2);
}
.services-overview .service-summary .button {
  margin-top: auto;
}

.section-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.consultatie-section ul, .digitalmarketing-section ul {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}
.consultatie-section ul li, .digitalmarketing-section ul li {
  margin-bottom: var(--space-2);
}

.workshop-list {
  margin-bottom: var(--space-4);
  list-style: none;
}
.workshop-list li {
  padding-left: 0;
  margin-bottom: var(--space-2);
  position: relative;
}
.tag {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0 var(--space-2);
  font-size: var(--font-size-xs);
  margin-left: var(--space-2);
}

.testimonials-section blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-4);
  background: var(--gray-50);
  font-size: var(--font-size-lg);
  position: relative;
}
.testimonials-section footer {
  font-size: var(--font-size-sm);
  color: var(--gray-500);
  margin-top: var(--space-2);
}

.meet-team-section .team-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.meet-team-section .team-profile img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: var(--radius-round);
  margin-bottom: var(--space-3);
}

.success-stories-section .success-story img {
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  width: 100%;
}
p {
  max-width: 100%;
}
.success-stories-section .success-story h3 {
  margin-bottom: var(--space-2);
  width: 100%;
}
.contact-cta-section .contact-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  margin-top: var(--space-8);
}
.contact-cta-section .contact-cta a.button {
  margin-top: var(--space-3);
  min-width: 180px;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .services-hero {
    flex-direction: column;
    gap: var(--space-6);
    margin-top: var(--space-6);
    margin-bottom: var(--space-8);
  }
  .hero-image {
    max-width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .services-hero, .services-overview, .consultatie-section, .workshops-section, .digitalmarketing-section {
    margin-bottom: var(--space-8);
  }
  .testimonials-section blockquote {
    padding-left: var(--space-2);
    font-size: var(--font-size-base);
  }
  .meet-team-section .team-profile img {
    width: 72px;
    height: 72px;
  }
  .success-stories-section .success-story img {
    width: 100%;
    height: auto;
  }
}
