/* Reset i podstawy */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  min-height: 100vh;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(to bottom right, #F2F7FF, #9FB8D9);
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* Główna zawartość - teraz identycznie wyśrodkowana jak login */
.content-box {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  width: 90%;
  max-width: 900px;
  margin: auto; /* To jest kluczowa zmiana */
  position: relative;
  z-index: 2;
  text-align: center;
  box-sizing: border-box;
}

/* Fale na pełną szerokość */
.wave-shape {
  position: fixed;
  width: 100vw;
  height: 120px;
  background: #9FB8D9;
  z-index: 1;
  left: 0;
}

.top-wave {
  top: 0;
  border-bottom-left-radius: 100% 140px;
  border-bottom-right-radius: 100% 140px;
}

.bottom-wave {
  bottom: 0;
  border-top-left-radius: 100% 140px;
  border-top-right-radius: 100% 140px;
}

/* Okno tekstowe */
.text-window {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin: 0 auto;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsywny rozmiar czcionki */
  color: #1d2b4f;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.centered-text {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
  padding: 0 1rem;
}

/* Przyciski i inne elementy */
.button-container {
  margin-top: 2rem;
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: #1d2b4f;
  color: white;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.cta-button:hover {
  background-color: #3a4a6e;
  transform: translateY(-2px);
}

.features {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.feature {
  flex: 1;
  min-width: 200px;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  text-align: center;
}

.feature h3 {
  color: #1d2b4f;
  margin-bottom: 0.5rem;
}

.feature p {
  text-align: center;
  color: #555;
}