/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 3rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #58233b 0%, #7d3450 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Testimonials Grid Logic */
.testimonials {
  padding: 80px 0;
  background-color: #fdfdfd;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch; /* CRITICAL: This makes all cards the same height */
  gap: 2rem;
}

/* Service Card (Testimonial Card) Styling */
.service-card {
  flex: 1 1 300px; /* Equal width logic */
  max-width: 380px;
  padding: 2.5rem 2rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(88, 35, 59, 0.08);
  border: 1px solid rgba(88, 35, 59, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(88, 35, 59, 0.15);
}

.service-card h3 {
  color: #ffb400; /* Gold for stars */
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.service-card p {
  font-style: italic;
  color: #555;
  flex-grow: 1; /* Pushes the name to the bottom so they align */
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-card strong {
  display: block;
  color: #58233b;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* Call to Action Section */
.cta {
  padding: 80px 0;
  background-color: #58233b;
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Button Styling */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: white;
  color: #58233b;
}

.btn-primary:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .services-grid {
    flex-direction: column;
    align-items: center;
  }
  .service-card {
    max-width: 100%;
    width: 100%;
  }
}
