body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #111 0%, #222 100%);
  color: #fff;
}

header {
  text-align: center;
  padding: 3rem 1rem;
  background: radial-gradient(circle, #2b2b2b, #111);
  border-bottom: 2px solid #ff004c;
}

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

.subtitle {
  color: #ccc;
  font-size: 1.1rem;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.project-card {
  background: #1c1c1c;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 1rem;
  width: 300px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: scale(1.03);
  border-color: #ff004c;
}

.project-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.project-card h2 {
  margin: 0;
  font-size: 1.2rem;
  text-align: center;
}

a {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #bbb;
  text-align: center;
}

.description {
  text-align: center;
  padding: 2rem;
  background-color: #181818;
}

.description button {
  background: #ff004c;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 5px;
  margin-top: 1rem;
  cursor: pointer;
}

.faq {
  padding: 2rem;
  background: #202020;
}

.faq-item {
  margin-bottom: 1rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  font-size: 0.9rem;
}

footer a {
  color: #ff004c;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Cookie banner */
.cookie-banner {
  background: #000;
  color: #fff;
  padding: 1rem;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.cookie-banner a {
  color: #ff004c;
}

.cookie-banner button {
  background: #ff004c;
  color: white;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}
