


body {
  font-family: 'Epilogue', sans-serif;
  color: #1A202C;
  overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

p, li {
  font-weight: 400;
}


.navbar-brand img {
  height: 40px;
}


.parallax-container {
  position: relative;
  overflow: hidden;
  height: 100vh;
  max-height: 800px;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.layer-1 {
  transform: translateZ(-10px) scale(2);
}

.layer-2 {
  transform: translateZ(-5px) scale(1.5);
}

.layer-3 {
  transform: translateZ(-2px) scale(1.2);
}

.layer-4 {
  transform: translateZ(0) scale(1);
}


.hero-section {
  perspective: 1000px;
}


.kpi-card {
  transition: transform 0.3s ease;
}

.kpi-card:hover {
  transform: translateY(-5px);
}


.form-control:focus {
  border-color: #5BC0BE;
  box-shadow: 0 0 0 0.2rem rgba(91, 192, 190, 0.25);
}

.btn-primary {
  background-color: #5BC0BE;
  border-color: #5BC0BE;
}

.btn-primary:hover {
  background-color: #3A506B;
  border-color: #3A506B;
}


.btn-outline-primary {
  color: #3A506B;
  border-color: #3A506B;
}

.btn-outline-primary:hover {
  background-color: #3A506B;
  color: white;
}


.feature-block {
  transition: all 0.3s ease;
}

.feature-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 9999;
  display: none;
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #F8F9FA;
  margin: 10% auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
}


.iti {
  width: 100%;
}


.footer {
  background-color: #0B132B;
}

.footer a {
  color: #EDF2F7;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #5BC0BE;
  text-decoration: none;
}


.custom-breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
}

.custom-breadcrumb a {
  color: #3A506B;
}

.custom-breadcrumb .active {
  color: #1C2541;
}


.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.data-visualization {
  height: 300px;
  position: relative;
}


.dashboard-metric {
  position: relative;
}

.dashboard-metric::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #5BC0BE;
}


.membership-level {
  transition: all 0.3s ease;
}

.membership-level:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


.process-step {
  position: relative;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 30px;
  height: 2px;
  background-color: #3A506B;
}

.process-step:last-child::after {
  display: none;
}


@media (max-width: 768px) {
  .parallax-container {
    height: auto;
    max-height: none;
  }

  .parallax-layer {
    position: relative;
    transform: none !important;
  }

  .process-step::after {
    display: none;
  }

  .process-step {
    margin-bottom: 2rem;
  }

  .dashboard-metric::before {
    width: 30px;
  }
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}


@media (max-width: 576px) {
  .cookie-consent {
    width: 95%;
    bottom: 10px;
  }

  .modal-content {
    margin: 20% auto;
    width: 95%;
    padding: 20px;
  }
}


.form-submission-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.form-modal-content {
  background-color: #F8F9FA;
  margin: 15% auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  text-align: center;
}