body {
  margin: 0;
  overflow-y: auto; /* Zmieniono z overflow: hidden na overflow-y: auto */
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* Sekcja wypełniająca cały ekran */
.tenis-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
  margin: 0;
  flex: 1;
  box-sizing: border-box;
  height: 100%;
}

.tenis-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
  height: 500px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tenis-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.tenis-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.tenis-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.tenis-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.tenis-form {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tenis-form input[type="email"] {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.tenis-form button {
  padding: 10px 20px;
  background-color: var(--logo2, #2e8bff);
  color: #fff;
  border: none;
  border-radius: 5px;
  width: 100%;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tenis-form button:hover {
  background-color: var(--logo3, #307fa2);
}