.color_blueberry { background: #100C35; color: #fff; }
.color_vanilla { background: #FFFDE6; }
.color_coal { background: #000; }
.color_fluo { background: #a3f307; }
.color_coal *{ color: #fff; }
.ai-slide { margin: 0; padding: 40px; width: 100%; min-height: 100vh; box-sizing: border-box; }
.ai-slide h2 { font-size: 36px; margin-bottom: 20px; }
.ai-slide ul { padding-left: 20px; }
.ai-slide img { width: 100%; height: 100vh; object-fit: cover; }

.full-bg-wrapper {
  background-size: cover;
  background-position: center;
  height: 100vh;
  padding: 80px 30px;
  color: #fff;
}

.overlay-slide { position: relative; overflow: hidden; height: 100vh; }
.overlay-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 800px;
}

