    #cs20b-highlight{
      position:relative; 
      background:url('https://ozelyt.com/candida-support/discover-ozelytcs20b.jpg') no-repeat center/cover;
      padding:90px 20px; 
      text-align:center; 
      color:#fff;
    }
    #cs20b-highlight::before{
      content:""; 
      position:absolute; 
      inset:0; 
      background:rgba(15,20,40,0.6); 
    }
    #cs20b-highlight .content{
      position:relative; 
      max-width:800px; 
      margin:0 auto; 
      z-index:2;
    }
    #cs20b-highlight h2{
      font-size:36px; 
      margin-bottom:16px;
    }
    #cs20b-highlight p{
      font-size:18px; 
      line-height:1.6; 
      margin-bottom:24px; 
      color:#e5e7eb;
    }
    #cs20b-highlight .cta{
      display:flex; 
      justify-content:center; 
      gap:16px; 
      flex-wrap:wrap;
    }
    #cs20b-highlight .btn{
      display:inline-block; 
      padding:14px 22px; 
      border-radius:12px; 
      font-weight:700; 
      border:2px solid #fff; 
      background:#1d4f61; 
      color:#fff; 
      text-decoration:none; 
      transition:.2s;
    }
    #cs20b-highlight .btn:hover{
      background:#0a528a; 
      border-color:#0a528a;
    }
    #cs20b-highlight .btn--ghost{
      background:transparent; 
      color:#fff;
    }
    #cs20b-highlight .btn--ghost:hover{
      background:#fff; 
      color:#1d4f61;
    }
    
    /* Intimacy */
.popup-overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.popup-card {
    background: #0a0a0a;
    border: 1px solid #c5a059;
    padding: 40px;
    position: relative;
    max-width: 700px;
    width: 90%;
    animation: fadeIn 0.5s ease;
}

.popup-body {
    display: flex;
    align-items: center;
    gap: 30px;
}

.popup-image img {
    max-width: 180px;
    height: auto;
}

.popup-title {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.4;
}

.popup-title strong {
    color: #c5a059;
    display: block;
    font-size: 1.8rem;
    margin-top: 5px;
}

.popup-author {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #95a5a6;
    margin: 10px 0;
}

.divider-gold {
    width: 50px;
    height: 1px;
    background: #c5a059;
    margin: 15px 0;
}

.popup-subtext {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    color: #666;
    font-style: italic;
}

.gold-tag-small{
    color: #c5a059;
}

.popup-close {
    position: absolute;
    top: 15px; right: 20px;
    background: none;
    border: none;
    color: #c5a059;
    font-size: 2rem;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .popup-body { flex-direction: column; text-align: center; }
    .divider-gold { margin: 15px auto; }
}