.testimonies {
  padding: 80px 0;
}

.testimony-preview {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.testimony-preview-item {
  text-align: center;
}

.testimony-preview-icon {
  width: 60px;
  height: 60px;
  background: #2c384e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.testimony-preview-icon i {
  font-size: 24px;
  color: #fff;
}

.testimony-preview-item p {
  color: #6f7a8d;
  font-size: 14px;
}

.more-testimonies {
  background: #f8f9fa;
  padding: 40px 20px;
  border-radius: 10px;
}

.more-testimonies h3 {
  color: #2c384e;
  margin-bottom: 15px;
}

.more-testimonies p {
  color: #6f7a8d;
  margin-bottom: 20px;
}

.share-story {
  background: #2c384e;
  color: #fff;
  padding: 40px 20px;
  border-radius: 10px;
}

.share-story h3 {
  color: #fff;
  margin-bottom: 15px;
}

.share-story p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.btn-get-started {
  background: #fff;
  color: #2c384e;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-get-started:hover {
  background: #2c384e;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .testimony-preview {
    flex-direction: column;
    gap: 20px;
  }
  
  .testimony-preview-icon {
    width: 50px;
    height: 50px;
  }
  
  .testimony-preview-icon i {
    font-size: 20px;
  }
}
