/* Hero Section */
.hero {
  background-color: #f8f9fa;
  padding: 5rem 1rem;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #212529;
}

.subheading {
  font-size: 1.25rem;
  color: #495057;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.btn-primary {
  background-color: #ff6b6b;
  color: white;
  border: 1px solid #ff6b6b;
}

.btn-primary:hover {
  background-color: #ff5252;
  border-color: #ff5252;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #495057;
  border: 1px solid #adb5bd;
}

.btn-secondary:hover {
  background-color: #f1f3f5;
  transform: translateY(-2px);
}

/* Services Grid */
.services-grid {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #212529;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #212529;
}

.service-card p {
  color: #495057;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-price {
  font-weight: 600;
  color: #ff6b6b;
  margin-bottom: 1.5rem;
}

.btn-outline {
  padding: 0.5rem 1rem;
  border: 1px solid #ff6b6b;
  color: #ff6b6b;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background-color: #fff5f5;
  transform: translateY(-2px);
}

/* Why Choose Us */
.why-choose-us {
  background-color: #f8f9fa;
  padding: 4rem 1rem;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #212529;
}

.reasons-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.reason {
  text-align: center;
  padding: 1.5rem;
}

.reason-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.reason h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #212529;
}

.reason p {
  color: #495057;
  line-height: 1.6;
}

/* Comparison Table */
.comparison {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.comparison h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #212529;
}

.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

th {
  background-color: #f8f9fa;
  font-weight: 600;
}

tr:hover {
  background-color: #f8f9fa;
}

.comparison-cta {
  text-align: center;
}

/* Testimonials */
.testimonials {
  background-color: #f8f9fa;
  padding: 4rem 1rem;
}

.testimonials h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #212529;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quote {
  font-style: italic;
  color: #495057;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-avatar {
  font-size: 2rem;
  margin-right: 1rem;
}

.client-name {
  font-weight: 600;
  color: #212529;
}

.client-title {
  color: #6c757d;
  font-size: 0.875rem;
}

/* CTA Section */
.cta {
  background-color: #ff6b6b;
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cta .btn-primary {
  background-color: white;
  color: #ff6b6b;
  border-color: white;
}

.cta .btn-outline {
  color: white;
  border-color: white;
}

.cta .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .subheading {
    font-size: 1.125rem;
  }
  
  .hero-buttons, .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    margin-bottom: 0.5rem;
  }
  
  .grid-container, .reasons-container, .testimonial-container {
    grid-template-columns: 1fr;
  }
}