.success-story-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.success-story-container h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
  text-align: center;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 2rem 0;
  padding: 1rem 0;
}

.logo-container .partner-logo {
  max-height: 80px;
  max-width: 200px;
  object-fit: contain;
}

.success-story-container h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #666666;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.4;
}

.story-section {
  margin-bottom: 2.5rem;
}

.story-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #f28b2a;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.story-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 1rem;
}

.story-section ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.story-section ul li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 0.8rem;
}

.story-quote {
  background-color: #fff5ee;
  border-left: 5px solid #f28b2a;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 5px;
  box-shadow: 0 2px 8px #0000001a;
}

.story-quote .quote-text {
  font-size: 1.2rem;
  font-style: italic;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.story-quote .quote-text::before {
  content: open-quote;
  font-family: 'Times New Roman', Times, serif;
  font-size: 2.5em;
  color: #f28b2a;
  position: absolute;
  left: -0.5rem;
  top: 0;
  line-height: 0.8;
}

.story-quote .quote-text::after {
  content: close-quote;
  font-family: 'Times New Roman', Times, serif;
  font-size: 2.5em;
  color: #f28b2a;
  position: absolute;
  right: -0.5rem;
  bottom: -0.5rem;
  line-height: 0.8;
}

.story-quote .quote-author {
  font-size: 1rem;
  font-weight: 600;
  color: #f28b2a;
  text-align: right;
  margin: 0;
}

.story-quote .quote-author::before {
  content: "— ";
}

@media (width <= 768px) {
  .success-story-container {
    padding: 1rem 0.5rem;
  }

  .success-story-container h1 {
    font-size: 2rem;
  }

  .logo-container {
    gap: 1.5rem;
    margin: 1.5rem 0;
  }

  .logo-container .partner-logo {
    max-height: 50px;
    max-width: 120px;
  }

  .success-story-container h2 {
    font-size: 1.2rem;
  }

  .story-section h3 {
    font-size: 1.5rem;
  }

  .story-section p,
  .story-section ul li {
    font-size: 1rem;
  }

  .story-quote {
    padding: 1rem 1.5rem;
  }

  .story-quote .quote-text {
    font-size: 1.1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .story-quote .quote-text::before {
    left: -0.3rem;
    font-size: 2em;
  }

  .story-quote .quote-text::after {
    right: -0.3rem;
    font-size: 2em;
  }
}