/* Services Section */
.services-section {
  padding: 64px 24px;
  background-color: #fff;
}

.services-title {
  font-size: 2rem;
  font-weight: 700;
  color: #b91c1c;
  text-align: center;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.service-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #b91c1c;
  margin-bottom: 12px;
}

.service-brief {
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.service-full {
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 16px;
  display: none;
}

.service-full ul {
  padding-left: 20px;
  margin: 8px 0;
}

.service-full li {
  margin-bottom: 4px;
}

.toggle-btn {
  margin-top: 16px;
  font-size: 0.875rem;
  color: #b91c1c;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  align-self: flex-start;
  padding: 0;
}

.toggle-btn:hover {
  color: #991b1b;
}