.cta-section {
    background: url('/images/affiliate-white.svg') no-repeat center center / cover;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .cta-glass-box {
    background: url('/images/background.bf9345a19dc9dbbc5c37.webp') no-repeat center center / cover;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 900px;
    width: 100%;
    color: white;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
    transition: transform 0.3s ease;
  }
  
  .cta-glass-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .cta-glass-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .cta-button {
    background: #00fff7;
    color: #000;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    background: #00e0ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.4);
  }
  