body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffaf5;
  color: #333;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.section {
  max-width: 400px;
  text-align: center;
  margin-bottom: 3rem; /* Większy odstęp na telefonie */
}

@media (min-width: 768px) {
  .container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    padding: 2rem;
  }

  .section {
    margin-bottom: 0; /* Na desktopie odstęp niepotrzebny */
  }
}

@media (min-width: 768px) {
  .container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
  }
}

.section {
  max-width: 400px;
  text-align: center;
}

.logo {
  width: 100%;
  max-width: 300px;
  margin-bottom: 1rem;
}

.description {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s;
}

.icons img:hover {
  transform: scale(1.1);
}

.poster {
  width: 100%;
  max-width: 400px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
