/* Podstawowy reset stylów */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Strona */
.page {
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  background-color: #222222; /* Ciemne tło */
  color: #f4f4f4; /* Jasny tekst */
  height: 100vh; /* Cały ekran */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Tło strony */
.page__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Dopasowuje tło do ekranu */
  z-index: 0; /* Tło powinno być za resztą treści */
}

/* Główna sekcja */
.main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1; /* Treść nad tłem */
  padding: 20px;
  text-align: center;
}

/* Kontener */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Sekcja */
.section {
  background-color: rgba(0, 0, 0, 0.7); /* Ciemny box z półprzezroczystością */
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 30px auto;
  z-index: 2; /* Zapewnia, że box będzie nad tłem */
}

.section__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #f4f4f4;
}

.section__subtitle {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ccc;
}

.section__address {
  font-size: 16px;
  margin-bottom: 30px;
  color: #ccc;
}

.section__actions .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  margin: 10px;
  font-weight: 500;
}

.section__actions .btn:hover {
  background-color: #0056b3;
}

/* Kontakt */
.contact__title {
  font-size: 16px;
  font-weight: 500;
  color: #f4f4f4;
}

.contact__details {
  font-size: 16px;
  color: #007bff;
  text-decoration: none;
}

.contact__details:hover {
  text-decoration: underline;
}

/* Logo */
.brand__list {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.brand__item {
  margin: 0 20px;
}

.brand__image {
  width: auto;
  height: auto;
}
