.ceo-testimonial {
  padding: 4rem 1rem;
  background: #f8f9fa;
}

.testimonial-title {
  font-size: 2rem;
  color: #2d3748;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-item {
  flex: 1 1 300px;
  max-width: 350px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 2rem 1rem 1.5rem;
}

.ceo-image-container {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.ceo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ceo-content {
  padding: 0 1rem;
}

.ceo-name {
  font-size: 1.6rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.ceo-designation {
  color: #4a5568;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.ceo-message {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
  margin: 0 auto;
  font-style: italic;
  quotes: "“" "”";
  max-width: 280px;
  position: relative;
}

.ceo-message::before {
  content: open-quote;
  font-size: 2rem;
  color: #48bb78;
  line-height: 0;
  vertical-align: -0.4em;
  position: absolute;
  top: -0.4em;
  left: -0.4em;
}

.ceo-message::after {
  content: close-quote;
  font-size: 2rem;
  color: #48bb78;
  line-height: 0;
  vertical-align: -0.4em;
  position: absolute;
  bottom: -0.4em;
  right: -0.4em;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .testimonial-container {
    gap: 1.5rem;
  }

  .testimonial-item {
    max-width: 320px;
  }

  .ceo-image-container {
    width: 140px;
    height: 140px;
    margin-bottom: 1.25rem;
  }

  .testimonial-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .ceo-name {
    font-size: 1.4rem;
  }

  .ceo-designation {
    font-size: 0.95rem;
  }

  .ceo-message {
    font-size: 0.95rem;
    max-width: 250px;
  }

  .ceo-message::before,
  .ceo-message::after {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-item {
    max-width: 100%;
  }

  .ceo-image-container {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
  }

  .testimonial-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .ceo-name {
    font-size: 1.3rem;
  }

  .ceo-designation {
    font-size: 0.9rem;
  }

  .ceo-message {
    font-size: 0.9rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .ceo-message::before,
  .ceo-message::after {
    font-size: 1.6rem;
  }
}
