/* Base Styles */
.services-page {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #333;
  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: 40px 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #222;
}

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

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

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

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

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

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

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

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

.btn-outline:hover {
  background-color: #f0f6ff;
}

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

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

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

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

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

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

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

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

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

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

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

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

.reason {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

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

.reason p {
  color: #666;
}

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

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

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

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

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

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

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

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

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

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

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

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

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #444;
}

.author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  font-size: 2rem;
}

.name {
  font-weight: 600;
}

.role {
  color: #666;
  font-size: 0.9rem;
}

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

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.cta-section .btn-secondary {
  background-color: transparent;
  color: white;
  border: 1px solid 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.2rem;
  }
  
  .hero-buttons, .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
  }
  
  .grid-container, .reasons-container, .testimonial-container {
    grid-template-columns: 1fr;
  }
  
  .service-card, .reason {
    padding: 20px;
  }
}