/* Process Hero Section */
.process-hero {
  background: linear-gradient(rgba(30, 136, 229, 0.8), rgba(103, 167, 223, 0.8)), no-repeat center center;
  background-size: cover;
  padding: var(--space-8) 0 var(--space-6);
  color: var(--text-light);
  text-align: center;
}

.process-hero h1 {
  color: var(--text-light);
  margin-bottom: var(--space-2);
  animation: fadeInUp 1s ease-out;
}

.process-hero p {
  font-size: 1.25rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Development Steps Section */
.development-steps {
  padding: var(--space-7) 0;
}

.steps-grid {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.step-card {
  background-color: var(--background);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: var(--space-4);
  transition: all var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
}

.step-content h3 {
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.step-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Services Tables Section */
.services-tables {
  padding: var(--space-7) 0;
  background-color: var(--gray-100);
}

.tables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.service-table {
  background-color: var(--background);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.table-header {
  background-color: var(--primary);
  color: var(--text-light);
  padding: var(--space-3);
  text-align: center;
}

.table-header h3 {
  color: var(--text-light);
  margin-bottom: 0;
}

.table-content {
  padding: var(--space-4);
}

.table-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.table-content li {
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.table-content li:last-child {
  border-bottom: none;
}

.table-content li::before {
  content: "✓";
  color: var(--primary);
  margin-right: var(--space-2);
  font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .process-hero {
    padding-top: calc(var(--space-7) + 60px);
  }
  
  .step-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .tables-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .process-hero h1 {
    font-size: 2rem;
  }
  
  .process-hero p {
    font-size: 1.1rem;
  }
}