
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.ui-style-10 {
  --primary-color: #3b82f6;
  --secondary-color: #1e40af;
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  section {
    padding: 1.5rem !important;
  }

  h1 {
    font-size: 1.5rem !important;
  }

  h2 {
    font-size: 1.25rem !important;
  }
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
