/* Main Container */
.service-detail-container {
  min-height: 100vh;
  background-color: #f9fafb;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
}

/* Content Area */
.service-detail-content {
  flex: 1;
  padding: 2rem 0;
}

.service-detail-container ul{
  margin : 20px;
}

.content-wrapper {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Section */
.service-detail-header {
  text-align: center;
  margin-bottom: 3rem;
}

.service-detail-title {
  font-size: 2.5rem;
  color: #1e266d;
  margin-bottom: 1rem;
}

/* Content Sections */
.service-detail-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-detail-section {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.section-heading {
  font-size: 1.8rem;
  color: #1e266d;
  margin-bottom: 1rem;
  text-align: center;
}

.section-detail-description {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-align: left;
}

/* Feature Cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.2s ease;
  text-align: center;
}

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

.card-icon-container {
  background: #e0e7ff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.card-icon {
  color: #1e266d;
}

.card-title {
  font-size: 1.2rem;
  color: #1e266d;
  margin-bottom: 0.5rem;
}

.card-description {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-detail-title {
    font-size: 2rem;
  }
  
  .section-heading {
    font-size: 1.5rem;
  }
  
  .feature-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-detail-title {
    font-size: 1.8rem;
  }
  
  .service-detail-section {
    padding: 1.5rem;
  }
}