/* Hero Section */
.hero {
  background-color: #f8f9fa;
  padding: 5rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.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: #6c757d;
  margin-bottom: 2rem;
  line-height: 1.5;
}

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

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

.services-grid h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

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

.service-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid #e9ecef;
}

.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: 1rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

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

.price {
  font-weight: bold;
  color: #212529;
  margin-bottom: 1.5rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid #007bff;
  color: #007bff;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #007bff;
  color: white;
}

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

.why-choose-us h2 {
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

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

.reason {
  padding: 2rem;
}

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

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

.reason p {
  color: #6c757d;
  line-height: 1.5;
}

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

.comparison h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

.table-container {
  overflow-x: auto;
  margin-bottom: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

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

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

td {
  color: #495057;
}

td:first-child {
  font-weight: 500;
}

.comparison-cta {
  text-align: center;
  margin-top: 2rem;
}

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

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

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

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

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  font-size: 2rem;
}

.author-info .name {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.author-info .role {
  color: #6c757d;
  font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
  background-color: #007bff;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

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

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

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}

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

.btn-secondary:hover {
  background-color: #f8f9fa;
}

.cta-section .btn-secondary {
  color: white;
  border-color: white;
}

.cta-section .btn-secondary: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.1rem;
  }
  
  .hero-buttons, .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .grid-container, .reasons-container, .testimonial-container {
    grid-template-columns: 1fr;
  }
  
  table {
    font-size: 0.875rem;
  }
}