
/* UI Style 9 - Layout B */
body.ui-style-9 {
  font-size: 16px;
}

.container {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.card {
  border: 1px solid #e0e0e0;
}

.card h3 a {
  color: #1a1a1a;
  transition: color 0.2s;
}

.card h3 a:hover {
  color: #2c5aa0;
}

button, .btn {
  cursor: pointer;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  background: #2c5aa0;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s;
}

button:hover, .btn:hover {
  background: #1e3f70;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .hero h1 { font-size: 1.8em; }
  .hero p { font-size: 1em; }
  .card-grid { grid-template-columns: 1fr; }
  .section h2 { font-size: 1.5em; }
}
