body {
            margin: 0;
            font-family: Roboto, Arial;
            background: #f4f7fb;
            color: #1a1a1a;
        }
        .container {
            max-width: 500px;
            margin: auto;
            background: white;
            padding: 20px;
            box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
        }
        .logo {
            font-size: 32px;
            font-weight: 700;
            color: #006C6C;
        }
        .stars {
            width: 140px;
            margin: 10px 0;
        }
        .headline {
            font-size: 26px;
            font-weight: 700;
            color: #222;
            line-height: 1.3;
            margin: 15px 0;
        }
        .subheadline {
            font-size: 17px;
            color: #555;
            margin-bottom: 20px;
        }
        .product {
            width: 100%;
            margin: 20px 0;
        }
        .cta {
            display: block;
            background: #3CBEB0;
            text-align: center;
            color: white;
            text-decoration: none;
            padding: 18px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 20px;
            box-shadow: 0 6px 18px #216b64;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% {
                transform: scale(1)
            }
            50% {
                transform: scale(1.05)
            }
            100% {
                transform: scale(1)
            }
        }
        .cta:hover {
            background: #216b64;
            transition: 0.2s;
        }
        .urgency {
            color: red;
            font-weight: 700;
            margin-top: 15px;
        }
        .badges {
            width: 100%;
            margin-top: 25px;

        }
        .social-proof {
            background: #f1f5fb;
            padding: 15px;
            border-radius: 10px;
            margin-top: 20px;
            font-size: 15px;

        }
        .footer {
            background: #050404;
            color: white;
            text-align: center;
            font-size: 11px;
            padding: 20px;
            margin-top: 30px;
        }
        a {
            color: inherit;
        }