.theinnerrowwssofbusineimpac .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.col-md-12 .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center cards */
}

.thecardssmallsinfos {
  text-align: center;
  margin: 10px auto;
}

/* ===== ENROLL STRIP - STICKY BOTTOM BANNER ===== */

#enroll-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1a73e8;
  color: white;
  padding: 12px 20px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  font-weight: bold;

  /* Flex layout for text + button side by side */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

#enroll-strip span {
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}

.btn-strip {
  background: white;
  color: #1a73e8;
  border: none;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.btn-strip:hover {
  background: #e6eefc;
  color: #1558c0;
}

/* Add bottom padding to body so page content
   doesn't hide behind the fixed strip */
body {
  padding-bottom: 56px;
}

/* ── TABLET (≤768px) ── */
@media (max-width: 768px) {
  #enroll-strip {
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
  }

  #enroll-strip span {
    font-size: 14px;
    text-align: center;
  }

  .btn-strip {
    width: 100%;
    max-width: 240px;
    text-align: center;
    padding: 10px 18px;
  }

  body {
    padding-bottom: 90px;
  }
}

/* ── SMALL MOBILE (≤480px) ── */
@media (max-width: 480px) {
  #enroll-strip {
    padding: 10px 12px;
  }

  #enroll-strip span {
    font-size: 13px;
  }

  body {
    padding-bottom: 100px;
  }
}







