/* Services Page */
.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-header-separator {
  display: none;
}

.services-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2C3E50;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.services-subtitle {
  font-size: 1.125rem;
  font-weight: normal;
  color: #6C757D;
  margin: 0;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .services-title {
    font-size: 2rem;
  }
  
  .services-subtitle {
    font-size: 1rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  border: 1px solid #f3f4f6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon-wrapper {
  width: 4rem;
  height: 4rem;
  background-color: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon-svg {
  width: 2rem;
  height: 2rem;
  color: #2563eb;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937;
}

.service-card > p {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  color: #4b5563;
}

.service-features .checkmark {
  color: #2563eb;
  margin-right: 0.5rem;
  font-weight: normal;
}

/* Before and After Section */
.before-after-section {
  padding: 4rem 0;
  background-color: #f9fafb;
}

.before-after-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}

.before-after-section .section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.before-after-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.before-after-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.before-after-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.before-after-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .before-after-section {
    padding: 3rem 0;
  }
  
  .before-after-section .section-title {
    font-size: 2rem;
  }
  
  .before-after-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .before-after-container {
    padding: 0 1rem;
  }
}

