/* Base Styles */
.services-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #333;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  border-radius: 12px;
  margin: 20px 0 40px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.hero .subheading {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #0066ff;
  color: white;
  border: 2px solid #0066ff;
}

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

.btn-secondary {
  background-color: transparent;
  color: #0066ff;
  border: 2px solid #0066ff;
}

.btn-secondary:hover {
  background-color: rgba(0, 102, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #0066ff;
  border: 2px solid #0066ff;
  padding: 8px 20px;
  font-size: 0.9rem;
}

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

/* Services Grid */
.services-grid {
  margin: 80px 0;
}

.services-grid h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

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

.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.service-icon {
  font-size: 2.5rem;
  color: #0066ff;
  margin-bottom: 20px;
}

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

.service-card p {
  color: #666;
  margin-bottom: 20px;
}

.price {
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

/* Why Choose Us */
.why-choose-us {
  margin: 80px 0;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.reasons-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.reason {
  text-align: center;
  padding: 30px;
}

.reason-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.reason h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.reason p {
  color: #666;
}

/* Comparison Table */
.comparison {
  margin: 80px 0;
}

.comparison h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

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

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

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

.fa-check {
  color: #28a745;
}

.fa-times {
  color: #dc3545;
}

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

/* Testimonials */
.testimonials {
  margin: 80px 0;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

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

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

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

blockquote {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

.client-info {
  font-weight: 600;
  color: #333;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0066ff 0%, #0047b3 100%);
  color: white;
  padding: 80px 20px;
  border-radius: 12px;
  text-align: center;
  margin: 80px 0;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-section .btn-primary {
  background-color: white;
  color: #0066ff;
  border-color: white;
}

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

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

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

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .subheading {
    font-size: 1.2rem;
  }
  
  .hero-buttons, .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .grid-container, .reasons-container, .testimonial-container {
    grid-template-columns: 1fr;
  }
  
  .service-card, .reason, .testimonial-card {
    padding: 20px;
  }
}