/* Service Page Styles */
.service-page-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: #333;
}

/* Header */
.service-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 3px solid #25D366;
}

.service-header h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.service-subtitle {
  font-size: 1.2rem;
  color: #555;
  font-weight: 500;
}

/* Introduction */
.service-intro {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  border-left: 5px solid #25D366;
}

.service-intro p {
  font-size: 1.1rem;
  margin: 0;
}

/* Problems Section */
.service-problems {
  margin-bottom: 50px;
}

.service-problems h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.problems-list {
  list-style: none;
  padding: 0;
}

.problems-list li {
  padding: 15px 20px;
  margin-bottom: 12px;
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.problems-list li:hover {
  border-color: #25D366;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Benefits Section */
.service-benefits {
  margin-bottom: 50px;
}

.service-benefits h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.benefit-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: #25D366;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.benefit-item strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.benefit-item p {
  margin: 0;
  color: #666;
}

/* Call to Action */
.service-cta {
  margin: 60px 0;
}

.cta-box {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 50px 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.cta-box h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: white;
}

.cta-box > p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #128C7E;
  padding: 18px 40px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-subtext {
  margin-top: 20px;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Service Areas */
.service-areas {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.service-areas h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.service-areas > p {
  margin-bottom: 25px;
  color: #555;
}

.areas-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 25px;
}

.areas-links a {
  display: block;
  padding: 12px 20px;
  background: white;
  color: #128C7E;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid #e9ecef;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.areas-links a:hover {
  border-color: #25D366;
  background: #25D366;
  color: white;
  transform: translateY(-2px);
}

.view-all-areas {
  display: inline-block;
  margin-top: 15px;
  color: #128C7E;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
}

.view-all-areas:hover {
  color: #25D366;
}

/* Footer */
.service-footer {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid #e9ecef;
  margin-top: 50px;
}

.service-footer a {
  color: #128C7E;
  text-decoration: none;
  font-weight: 600;
}

.service-footer a:hover {
  color: #25D366;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-header h1 {
    font-size: 1.8rem;
  }

  .service-subtitle {
    font-size: 1rem;
  }

  .cta-box {
    padding: 35px 25px;
  }

  .cta-box h2 {
    font-size: 1.6rem;
  }

  .cta-button {
    font-size: 1.1rem;
    padding: 15px 30px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .areas-links {
    grid-template-columns: 1fr;
  }
}
