.hero-section {
    background-image: url("https://delfs.dataexcellence.com.pl:50226/file/data/eb60f133-e24a-41a9-ae9d-5979ec7ab370/svg/hero-bg.svg");
}

.navbar-area.sticky {
    background: #5864ff;
}

.sticky .navbar .navbar-nav .nav-item a {
    color: #fff;
}

.footer {
  background-image: url("https://delfs.dataexcellence.com.pl:50226/file/data/7976ce08-18a4-4c98-a679-fac21ce48d93/svg/footer-bg.svg");
}

.footer-logo {
  width: 140px;
}

  /* Podstawowe style dla wszystkich kart */
  .single-pricing {
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee !important;
    border-radius: 15px;
    background: #fff;
    position: relative;
    z-index: 1;
  }

  /* Efekt hover dla wszystkich kart ORAZ stan początkowy dla Advanced */
  .single-pricing:hover, 
  .single-pricing.active-plan {
    transform: translateY(-10px);
    border: 2px solid #1A237E !important;
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.15) !important;
    z-index: 2;
  }

  /* Zmiana przycisku w aktywnym/najechanym planie */
  .single-pricing:hover .main-btn,
  .single-pricing.active-plan .main-btn {
    background-color: #1A237E !important;
    color: #fff !important;
    border-color: #1A237E !important;
  }

  /* Styl etykiety */
  .badge-pop {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 25px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    background: #ccc;
    transition: background 0.3s;
  }

  .single-pricing:hover .badge-pop,
  .single-pricing.active-plan .badge-pop {
    background: #1A237E;
  }
  
 /* Kontener, który trzyma ramkę i zaokrąglenia */
.image-container {
    width: 100%;
    height: 450px; /* Ustaw konkretną wysokość, która Ci odpowiada */
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2; /* Aby obraz był nad kształtami dekoracyjnymi, jeśli trzeba */
}

/* ZMIANA TUTAJ: 'contain' zamiast 'cover' */
.image-container img {
    width: 100%;
    height: 100%;
    object-position: center;
}

/* Responsywność dla telefonów - zmniejszamy wysokość ramki, żeby nie była za wielka */
@media (max-width: 767px) {
    .image-container {
        height: 300px;
    }
}

.navbar-area.other-page {
    background: #5864ff;
}



/* Główna lista regulaminu: 1. 2. 3. */
.reg-main-list {
  list-style-type: none;
  counter-reset: reg-counter;
  padding-left: 0;
}

.reg-main-list > li {
  counter-increment: reg-counter;
  position: relative;
  padding-left: 45px;
  margin-bottom: 35px;
  font-weight: 400;
  color: #444;
}

.reg-main-list > li::before {
  content: counter(reg-counter) ".";
  color: #5864ff;
  font-weight: 800;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* Podpunkty: 3.1, 3.2... */
.reg-sub-list {
  list-style-type: none;
  counter-reset: sub-reg-counter;
  padding-left: 0;
  margin-top: 15px;
}

.reg-sub-list li {
  counter-increment: sub-reg-counter;
  position: relative;
  padding-left: 45px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.reg-sub-list li::before {
  /* Dynamiczne łączenie numeru głównego z podpunktem */
  content: counter(reg-counter) "." counter(sub-reg-counter) ".";
  color: #5864ff;
  font-weight: 600;
  position: absolute;
  left: 0;
}

/* Lista wypunktowana dla planów */
.custom-bullet-list {
  list-style: none;
  padding-left: 20px;
  margin-top: 10px;
}

.custom-bullet-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.custom-bullet-list li::before {
  content: "•";
  color: #5864ff;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.privacy-content { line-height: 1.8; }

