
/* Sticky CTA Styles */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0b2e59;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  padding: 1rem 1.5rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.sticky-cta .cta-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.sticky-cta .cta-buttons a {
  text-decoration: none;
  padding: 0.6rem 1rem;
  margin-left: 0.5rem;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
}

.sticky-cta .btn-primary {
  background-color: #276EF1;
  color: white;
}

.sticky-cta .btn-secondary {
  background-color: white;
  color: #276EF1;
  border: 2px solid #276EF1;
}

.sticky-cta .cta-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  .sticky-cta .cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .sticky-cta .cta-buttons a {
    margin: 0.25rem 0;
  }
}
