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

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2em;
}

h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #132c3e;
}

h2 {
  font-size: 1.5rem;
  font-weight: 50;
  margin-bottom: 0.5em;
  color: #5271ff;
}

p {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin-bottom: 2em;
}

.cta {
  display: inline-block;
  padding: 0.75em 2em;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #f0b851ff, #f0b85fff);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #f0b851ff, #f0b85fff);
}

footer {
  margin-top: 4em;
  font-size: 0.9rem;
  color: #888;
}

.logo {
  margin-bottom: 1em;
}

/* Media query dla telefonów (max-width: 600px) */
@media (max-width: 600px) {
    h1 {
        font-size: 50px; /* mniejszy nagłówek na telefonie */
    }

    .logo {
        width: 80px; /* mniejsze logo na telefonie */
    }
}