.bl-future {
  background: transparent;
  padding: 80px 20px;
  font-family: 'Delight', sans-serif !important;
}

/* Layout */
.bl-future-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

/* Left card */
.bl-future-card {
  flex: 0 0 480px;
  background: #FFFFFF;
  border-radius: 20px; 
  padding: 40px 40px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.16);
  position: relative;
  z-index: 2;
  margin-right: -80px; 
}

/* Right image */
.bl-future-media {
  flex: 1.4;
  position: relative;
}

.bl-future-img {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

/* --- BADGE  --- */
.bl-future-badge {
  display: inline-block;
  background: #EBF2FF;
  color: #7d8dff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 18px;
  margin-bottom: 10px;
}

/* Title */
.bl-future-title {
  margin: 0 0 24px;
  line-height: 1.00;
  color: #111827;
  font-size: 44px;
}

.bl-future-title-light {
  display: block;
  font-weight: 800;
}

/* Underline that cuts through descenders like "y" */
.bl-future-title-strong {
  display: inline;
  font-weight: 800;
  position: relative;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 0;
  background-position: 0;
}

.bl-future-title-strong::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 6px;
  background: linear-gradient(to bottom, #DEDFE0, #c2c2c2);
  z-index: -1;
}

/* List */
.bl-future-list li {
  padding: 4px 0;
  font-weight: 300;
  font-size: 18px;  /* ADDED - explicit font size for visibility */
  color: #4B5563;  /* ADDED - text color for visibility */
  list-style: none;
  white-space: nowrap;
}

.bl-future-list li:last-child {
  border-bottom: none;
}

/* NO / YES Colors */
.bl-no-text {
  color: #ff4f81;
  font-weight: 200;
  margin-right: 10px;
  font-size: 20px;
}

.bl-yes-text {
  color: #7d8dff;
  font-weight: 200;
  margin-right: 10px;
  font-size: 20px;
}

/* --- BUTTON  --- */
.bl-future-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  background: #FFA685; 
  color: #000 !important;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform .18s ease, box-shadow .18s ease;
  width: fit-content;
}

/* Black Arrow Icon */
.bl-future-btn::after {
  content: "";
  width: 24px;
  height: 20px;
  background: center/contain no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 24' stroke='%23000000' stroke-width='1.6' fill='none'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M14 1l11 11-11 11'/%3E%3Cpath d='M24.625 12H1' stroke-linecap='square'/%3E%3C/g%3E%3C/svg%3E");
}

.bl-future-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
  background: #FF9E7A;
}


/* Mobile */
@media (max-width: 480px) {
  .bl-future {
    padding: 20px 5px 40px;
  }
  
  .bl-future-list li {
    padding: 0px 0;
    font-size: 18px;  
  }  
  
  .bl-future-inner {
    flex-direction: column-reverse;
    gap: 0;
  }
  
  .bl-future-media {
    width: 100%;
    z-index: 1;
  }
  
  .bl-future-img {
    width: 100%;
    border-radius: 10px;
  }
  
  .bl-future-card {
    width: 95%;
    margin: -30px auto 0 auto;
    padding: 15px 5px;
    z-index: 2;
  }
  
  /* Separate left padding for badge and title on mobile */
  .bl-future-badge {
    margin-left: 15px;  /* Add left spacing for badge */
  }
  
  .bl-future-title {
    font-size: 36px !important;
    padding-left: 15px;  /* Add left spacing for title */
  }
  
  /* Adjust underline for smaller text on mobile */
  .bl-future-title-strong::after {
    height: 6px;
    bottom: 2px;
  }
  
  .bl-future-btn {
    width: 100%;
    justify-content: center;
  }
}