/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --text: #040316;
  --background: #fbfbfe;
  --primary: #661abc;
  --secondary: #d5cce0;
  --accent: #9c63df;
}

/* Body styling */
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background); /* Light background */
  color: #333; /* Text color */
  margin: 0;
  padding: 0;
}

/* Header section */
h1 {
  font-size: 2.5rem;
  color: --text; /* Bold purple */
  text-align: center;
  margin-top: 2rem;
  line-height: 1.2;
  padding: 40px;
}
.button a {
  text-decoration: none;
  color: var(--background);
}
/* Button styling */
.button {
  display: block;
  margin: 2rem auto;
  padding: 1.5rem 2.4rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: white;
  background-color: #8f54ff; /* Bold purple */
  border-radius: 1px;
  border: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

/* Button hover effect */
.button:hover {
  background-color: #6c36d1; /* Darker purple */
}
/* Main content styling */
.content-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--background);
  border-radius: 15px;
}

.content-main-cal {
  max-width: 1500px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--background);
  border-radius: 15px;
}
/* Text content */
.text-content {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

iframe {
  aspect-ratio: 16 / 9;
  height: auto;
  width: 80%;
  margin: 0 auto;
  display: block;
}
.sigma iframe {
  width: 100%;
}
/* Responsive adjustments */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  .button {
    font-size: 1rem;
  }
}

.benefits {
  background-color: #f8f9fa; /* Subtelne tło */
  padding: 40px;
  border-radius: 10px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.benefits h2 {
  font-size: 2rem;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.benefits ul {
  list-style-type: none;
  padding: 0;
}

.benefits li {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.benefits li strong {
  color: #7a2ad6; /* Kolor akcentu */
  font-size: 1.2rem;
}

.benefits li::before {
  content: "✓"; /* Zamiast klasycznych bullet points */
  color: #7a2ad6;
  margin-right: 10px;
  font-size: 1.5rem;
  vertical-align: middle;
}
.benefits li:nth-child(6)::before,
.benefits li:nth-child(7)::before {
  content: "✗";
}

.benefits li:not(:last-child) {
  border-bottom: 1px solid #ddd; /* Subtelne linie oddzielające */
  padding-bottom: 20px;
}

.benefits li:last-child {
  border-bottom: none;
}

footer {
  background-color: #273036;
  color: #fff;
  padding: 50px 10%;
  width: 100%;
  margin-top: 200px;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.footer-content h3 {
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 3rem;
}
.footer-content p {
  max-width: 500px;
  margin: 10px auto;
  line-height: 28px;
  font-size: 14px;
}
.socials {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0 3rem 0;
}
.socials li {
  margin: 0 10px;
}
.socials a {
  text-decoration: none;
  color: #fff;
  transition: color 0.4s ease;
}
.socials a i {
  font-size: 16px;
}
.socials a:hover {
  color: #8d44e0;
}
.polityka {
  text-decoration: none;
  color: #fff;
  transition: color 0.4s ease;
  margin: 20px;
}
.informacje {
  margin-bottom: 50px;
}
.polityka:hover {
  color: #8d44e0;
}
.footer-bottom {
  width: 100%;
  padding: 10px 0;
  text-align: center;
}
.footer-bottom p {
  color: #fff;
  font-size: 16px;
}

/* Vsl page */
.content-main h1,
h2,
p {
  text-align: center;
}
.content-main h1 {
  font-size: 2.8rem;
  margin-top: 0.4rem;
  padding: 40px 40px 0 40px;
}
.content-main h2 {
  font-size: 2.2rem;
  margin-top: 0.5rem;
}
.content-main p {
  font-size: 18px;
}
.content-main p:first-child {
  margin-top: 40px;
  display: table; /* keep the background color wrapped tight */
  margin: 10px auto 0px auto; /* keep the table centered */
  padding: 5px;

  background-color: var(--accent);
  color: #ffffff;
}
.content-main h2:last-child {
  margin-top: 50px;
}

@media (max-width: 840px) {
  .content-main {
    width: 100%;
    padding: 10px;
  }
  .content-main h1 {
    font-size: 32px;
    padding: 0;
  }
  .content-main h2 {
    margin-top: 20px;
    font-size: 24px;
    line-height: 1.1;
  }
  iframe {
    width: 100%;
  }
  iframe:last-child {
    height: 700px;
  }

  .video-opinions {
    flex-direction: column;
  }
  video {
    min-width: 100%;
  }
}

/* vsl funnel kolumny opinie klientow */
.video-opinions {
  display: flex;
  justify-content: center; /* Centruje wszystkie elementy w poziomie */
  align-items: center; /* Centruje elementy w pionie, jeśli potrzebne */
  gap: 20px; /* Odstęp między kolumnami */
  margin: 0 auto; /* Wyśrodkowuje kontener */
  padding: 20px;
}

.column {
  display: flex;
  justify-content: center; /* Centruje wideo w kolumnie */
  align-items: center;
}

video {
  max-width: 100%;
  height: 500px;
}

.gwarancja {
  display: table; /* keep the background color wrapped tight */
  margin: 0px auto 0px auto; /* keep the table centered */
  padding: 5px;
  background-color: var(--accent);
  color: #ffffff;
}
span {
  color: var(--primary);
}

.kontakt {
  padding: 15px 40px 15px 40px;
  max-width: 300px;
  margin: 0 auto;
  display: block;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  transition: 0.4s ease;
  background-color: #671abe;
}
