.inner-hero {
  padding: 150px 40px 100px;
  background-color: var(--light-bg);
  color: var(--text-dark);
  text-align: center;
}

.inner-hero h1 {
  color: var(--text-dark);
}

.about-section {
  padding: 80px 40px;
}

.background-white {
  background-color: #fff;
}

.background-light {
  background-color: var(--light-bg);
}

.container-medium {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.2rem;
  color: var(--dark-bg);
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.content-block p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: 1.5rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.process-card {
  background: var(--light-bg);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border-left: 5px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.process-number {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 6rem;
  font-weight: 800;
  color: rgba(217, 119, 87, 0.06);
  line-height: 1;
  pointer-events: none;
}

.process-card h3 {
  font-size: 1.4rem;
  color: var(--dark-bg);
  margin-bottom: 15px;
  font-weight: 600;
}

.process-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .process-card {
    padding: 30px 20px;
  }
  
  .process-number {
    font-size: 4rem;
    right: 15px;
    top: 15px;
  }
}
