.success-stories-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--background-light) 0%, #f5f7fa 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h1 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.success-grid {
  display: grid;
  gap: 4rem;
  margin-bottom: 4rem;
}

.program-ready {
  text-align: center;
  margin-bottom: 2rem;
}

.program-ready h2 {
  font-size: 2rem;
  color: var(--holberton-blue);
  margin-bottom: 2rem;
}

.tech-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin: 0 auto;
  max-width: 1000px;
}

.full-width-image {
  width: 100%;
  height: auto;
  display: block;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.quote {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.quote-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  fill: var(--holberton-blue);
  opacity: 0.5;
}

.quote p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
  font-style: italic;
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--holberton-blue);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.employers-section {
  margin-top: 6rem;
  text-align: center;
}

.employers-section h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.employers-grid {
  max-width: 1000px;
  margin: 0 auto 3rem;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
}

.employers-image {
  width: 100%;
  height: auto;
  display: block;
}

.employers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.employer {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 50px;
}

@media (max-width: 768px) {
  .testimonials {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .employers-grid {
    padding: 1rem;
  }

  .employer {
    font-size: 1rem;
  }
}