
  /* Hero section */
  .hero {
    text-align: center;
    padding: 2rem 1rem;
    overflow: hidden;
    background: #f9f9f9;
  }
  
  /* Hero image animation */
  .hero-image {
    margin-top: 100px;
    width: 85%;
    height: auto;
    object-fit: cover;
    animation: slideUp 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    border-radius: 50px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }
  
  /* Slide-up effect */
  @keyframes slideUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Hero quote */
  .hero-text {
    margin-top: 1rem;
    font-size: 1.4rem;
    font-style: italic;
    color: #333;
  }