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

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

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

.hero .subheading {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  color: #86868b;
}

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

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

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

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

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #0066cc;
}

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

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

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

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

.btn-outline:hover {
  background-color: #0066cc;
  color: white;
}

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

.why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1d1d1f;
}

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

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

.reason p {
  color: #86868b;
  line-height: 1.5;
}

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

.comparison h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1d1d1f;
}

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

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

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

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

.fa-check {
  color: #34c759;
}

.fa-times {
  color: #ff3b30;
}

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

/* Testimonials */
.testimonials {
  background-color: #f5f5f7;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1d1d1f;
}

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

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.testimonial-avatar {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
  font-style: italic;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.testimonial-author {
  font-weight: 600;
  color: #86868b;
}

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

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

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

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

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

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: white;
  color: #0066cc;
}

.btn-primary:hover {
  background-color: rgba(255,255,255,0.9);
}

.btn-secondary {
  border: 1px solid white;
  color: white;
}

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

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