
    body {
      margin: 0;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
      background: #fff;
    }

    .cta-container {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      box-sizing: border-box;
    }

    .cta-card {
      display: flex;
      gap: 18px;
      align-items: center;
      max-width: 720px;
      width: 100%;
      background: linear-gradient(90deg, #e31b3f 0%, #8b2aa9 100%);
      color: #fff;
      border-radius: 16px;
      padding: 18px 22px;
      box-shadow: 0 8px 28px rgba(139, 42, 169, 0.18), 0 2px 6px rgba(0, 0, 0, 0.12);
      transform: translateY(0);
      transition: transform 150ms ease, box-shadow 150ms ease;
    }

    .cta-card:hover {
      transform: translateY(-6px) scale(1.01);
      box-shadow: 0 18px 44px rgba(139, 42, 169, 0.24), 0 4px 10px rgba(0, 0, 0, 0.16);
    }

    .cta-icon {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 72px;
      height: 72px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.12);
      box-shadow: inset 0 -6px 18px rgba(0, 0, 0, 0.06);
      font-size: 30px;
    }

    .cta-text {
      flex: 1 1 auto;
      min-width: 0;
    }

    .cta-heading {
      font-size: 18px;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 6px;
    }

    .cta-subtext {
      font-size: 14px;
      opacity: 0.95;
    }

    .cta-button {
      flex: 0 0 auto;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 18px;
      border-radius: 10px;
      background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.08) 100%);
      color: #fff;
      font-weight: 700;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
      transition: transform 0.16s ease;
    }

    .cta-button:active {
      transform: scale(0.98);
    }

    @media (max-width: 768px) {
      .cta-icon,
      .cta-subtext {
        display: none;
      }

      .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 16px;
      }

      .cta-text {
        order: 1;
      }

      .cta-heading {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
      }

      .cta-button {
        order: 2;
      }
    }
