/* static/css/home.css */
.hero-section {
  background: linear-gradient(135deg, #2c3e50 0%, #4ca1af 100%);
  color: white;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #4ca1af;
}

.logo-container {
  max-width: 150px;
  margin-bottom: 2rem;
}

.mascot-container {
  position: relative;
  z-index: 1;
}

.cta-section {
  background-color: #f8f9fa;
  border-radius: 10px;
}