.services-page {
  min-height: 100vh;
  background: #0a0e13;
  color: #fff;
}

.services-hero {
  padding: 120px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
}

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

.services-hero p {
  font-size: 1.2rem;
  color: #d1d5db;
  margin-bottom: 2rem;
}

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

.feature-tag {
  background: rgba(255, 153, 0, 0.1);
  color: #ff9900;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 153, 0, 0.3);
}

.services-overview {
  padding: 80px 0;
  text-align: center;
  background: #0a0e13;
}

.services-overview h2 {
  color: #ff9900;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.services-overview p {
  color: #d1d5db;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
}

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

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 153, 0, 0.3);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

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

.service-features {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.feature {
  background: rgba(255, 153, 0, 0.1);
  color: #ff9900;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
}

.service-link {
  color: #ff9900;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #e88b00;
}

.why-choose-us {
  padding: 80px 0;
  background: #0a0e13;
}

.why-choose-us h2 {
  color: #ff9900;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

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

.benefit-item {
  text-align: center;
  padding: 1.5rem;
}

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

.benefit-item h3 {
  color: #ff9900;
  margin-bottom: 1rem;
}

.benefit-item p {
  color: #d1d5db;
  line-height: 1.6;
}

.community-cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
}

.community-cta h2 {
  color: #ff9900;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.community-cta p {
  color: #d1d5db;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

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

.cta-button {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button.primary {
  background: #ff9900;
  color: #fff;
}

.cta-button.primary:hover {
  background: #e88b00;
}

.cta-button.secondary {
  background: transparent;
  color: #ff9900;
  border: 2px solid #ff9900;
}

.cta-button.secondary:hover {
  background: #ff9900;
  color: #fff;
}

@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 2rem;
  }
  
  .services-container {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}