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

header {
  background: linear-gradient(90deg, #3498db, #2ecc71);
  color: blue;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header img {
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: ;
  text-decoration: none;
  font-weight: bold;
}

#hero {
  text-align: center;
  padding: 50px;
  background: url('assets/background.jpg') no-repeat center/cover;
  color: blue;
}

#hero button {
  margin-top: 20px;
  padding: 12px 20px;
  background: #e74c3c;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
}

input, button {
  margin: 8px 0;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  background: #3498db;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #2980b9;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: blue;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 220px;
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

