
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Roboto', sans-serif;
}

.background-overlay {
  background: url('assets/background.jpg') center/cover no-repeat;
  min-height: 100vh;
  padding: 2rem;
  backdrop-filter: blur(2px);
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header {
  text-align: center;
  margin-bottom: 2rem;
  color: white;
}

.logo {
  width: 80px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 1000px;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  flex: 1 1 250px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card h2 {
  margin-bottom: 1rem;
  color: #333;
}

.card p, .card ul {
  color: #555;
  font-size: 1rem;
}

.card ul {
  padding-left: 1.2rem;
}

footer {
  margin-top: 2rem;
  text-align: center;
  color: white;
  font-size: 0.9rem;
}
