body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f2f5;
  color: #333;
}

/* Logo */
.logo-header {
  padding: 30px;
  text-align: center;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.logo {
  height: 60px;
}

/* Card Container */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  gap: 30px;
}

/* Cards */
.card {
  display: block;
  width: 250px;
  background-color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.card h2 {
  margin: 15px 0;
  font-size: 1.2rem;
  color: #333;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px 20px;
  background-color: #eee;
  font-size: 0.9rem;
  color: #666;
}
