  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(145deg, #f7f4f0 0%, #f0ece8 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            padding: 5px 6px 40px 6px;
            margin: 0;
        }

        .container {
            max-width: 620px;
            width: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(2px);
            border-radius: 32px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.03);
            padding: 28px 28px 40px;
            transition: all 0.2s ease;
        }

        h1 {
            font-size: 26px;
            font-weight: 700;
            color: #1a1a1a;
            letter-spacing: -0.02em;
            line-height: 1.3;
            margin-bottom: 8px;
        }

        h2 {
            font-size: 18px;
            font-weight: 400;
            color: #5a4f47;
            margin-top: 0;
            margin-bottom: 18px;
            line-height: 1.5;
            padding-left: 14px;
            background: rgba(211, 47, 47, 0.02);
            border-radius: 0 8px 8px 0;
        }

        p {
            font-size: 16px;
            line-height: 1.7;
            color: #2d2a27;
            margin-bottom: 14px;
            letter-spacing: 0.01em;
        }

        .highlight-red {
            color: #b71c1c;
            font-weight: 600;
        }

        .highlight-yellow {
            background-color: #fcee21;
            padding: 0 6px;
            font-weight: 600;
            border-radius: 6px;
            color: #1f1b18;
        }

        .highlight-underline {
            text-decoration: underline;
            text-underline-offset: 4px;
            text-decoration-color: #fcee21;
            text-decoration-thickness: 3px;
            font-weight: 600;
        }

        .img-container {
            width: 100%;
            margin: 22px 0;
            border-radius: 20px;
            overflow: hidden;
            background: #e3dbd3;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
            transition: transform 0.2s ease;
        }

        .img-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        .bold {
            font-weight: 700;
            color: #1f1b18;
        }

        .section-title {
            font-size: 19px;
            font-weight: 700;
            margin-top: 28px;
            margin-bottom: 12px;
            color: #1f1b18;
            letter-spacing: -0.01em;
            background: rgba(211, 47, 47, 0.04);
            padding: 10px 0 10px 16px;
            border-left: 0px solid #b71c1c;
            border-radius: 0 12px 12px 0;
        }

        .testimonial-list {
            margin-top: 32px;
            margin-bottom: 36px;
            background: rgba(255, 247, 242, 0.6);
            padding: 6px 8px 6px 12px;
            border-radius: 28px;
            backdrop-filter: blur(2px);
        }

        .testimonial-item {
            display: flex;
            align-items: center;
            background: transparent;
            padding: 14px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        }

        .testimonial-item:last-child {
            border-bottom: none;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 14px;
            background: #d9cfc7;
            border: 2px solid #ffffff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            flex-shrink: 0;
        }

        .testimonial-content {
            flex: 1;
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 15px;
            color: #1f1b18;
            margin-bottom: 2px;
        }

        .testimonial-text {
            font-size: 14px;
            color: #3d3630;
            line-height: 1.4;
            margin: 0;
        }

        .testimonial-time {
            font-size: 12px;
            color: #91857c;
            margin-top: 3px;
            display: block;
        }

        .bottom-bar {
            background: #1f1b18;
            color: #ffffff;
            text-align: center;
            padding: 16px 18px;
            border-radius: 60px;
            font-size: 17px;
            font-weight: 500;
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            transition: background 0.2s, transform 0.1s;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.03);
            letter-spacing: 0.3px;
        }

        .bottom-bar:hover {
            background: #2b2622;
            transform: scale(1.01);
        }

        .bottom-bar svg {
            width: 26px;
            height: 26px;
            fill: white;
            flex-shrink: 0;
        }

        .whatsapp-icon {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 56px;
            height: 56px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
            cursor: pointer;
            z-index: 50;
            transition: transform 0.2s ease, box-shadow 0.2s;
            border: none;
        }

        .whatsapp-icon:hover {
            transform: scale(1.07);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-icon svg {
            width: 30px;
            height: 30px;
            fill: #ffffff;
        }

        .footer-links {
            margin-top: 48px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            padding-top: 28px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 28px;
            font-size: 14px;
        }

        .footer-links a {
            color: #3d3630;
            text-decoration: none;
            font-weight: 450;
            border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
            padding-bottom: 1px;
            transition: color 0.15s, border-color 0.15s;
        }

        .footer-links a:hover {
            color: #b71c1c;
            border-bottom-color: #b71c1c;
        }

        .footer-email {
            text-align: center;
            font-size: 14px;
            color: #3d3630;
            margin-top: 16px;
            letter-spacing: 0.2px;
            background: rgba(255, 247, 242, 0.4);
            padding: 6px 14px;
            border-radius: 40px;
            display: inline-block;
            backdrop-filter: blur(2px);
        }

        .disclaimer-wrapper {
            display: none;
            background: #fcf9f7;
            padding: 20px 22px;
            border-radius: 20px;
            margin-top: 18px;
            font-size: 14px;
            line-height: 1.6;
            color: #2d2a27;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            border-left: 0px solid #b71c1c;
        }

        .disclaimer-wrapper.show {
            display: block;
        }

        .disclaimer-wrapper strong {
            color: #1f1b18;
        }

        .highlight-box {
            background: rgba(255, 235, 200, 0.5);
            padding: 6px 12px;
            border-radius: 12px;
            font-weight: 600;
            display: inline-block;
        }

        .feature-list {
            background: rgba(245, 240, 235, 0.5);
            padding: 16px 20px;
            border-radius: 20px;
            margin: 16px 0 22px 0;
            border-left: 0px solid #b71c1c;
        }

        .feature-list p {
            margin-bottom: 8px;
            font-size: 16px;
        }

        .feature-list p:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 480px) {
            body {
                padding: 16px 12px 140px 12px;
            }
            .container {
                padding: 18px 16px 28px;
                border-radius: 24px;
            }
            h1 {
                font-size: 22px;
            }
            h2 {
                font-size: 16px;
            }
            p {
                font-size: 15px;
            }
            .bottom-bar {
                font-size: 15px;
                padding: 14px 12px;
                gap: 6px;
            }
            .whatsapp-icon {
                width: 50px;
                height: 50px;
                bottom: 16px;
                right: 16px;
            }
            .whatsapp-icon svg {
                width: 26px;
                height: 26px;
            }
            .section-title {
                font-size: 17px;
            }
            .feature-list p {
                font-size: 15px;
            }
        }