        /* Reset & Base Styles - Green Theme */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Georgia', 'Times New Roman', serif;
        }
        
        body {
            background: linear-gradient(135deg, #e8f5e8 0%, #f0fdf0 100%);
            color: #1f2937;
            line-height: 1.6;
            padding: 15px;
            max-width: 480px;
            margin: 0 auto;
            min-height: 100vh;
        }
        
        /* Screen Management */
        .screen {
            display: none;
            min-height: calc(100vh - 30px);
            flex-direction: column;
            justify-content: center;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .screen.active {
            display: flex;
        }
        
        /* Typography */
        h1 {
            font-size: 26px;
            margin-bottom: 20px;
            text-align: center;
            color: #166534;
            font-weight: 600;
        }
        
        p {
            font-size: 17px;
            margin-bottom: 25px;
            text-align: center;
            color: #4b5563;
        }
        
        .note {
            font-size: 15px;
            background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
            padding: 15px;
            border-radius: 12px;
            margin: 20px 0;
            text-align: center;
            border-left: 5px solid #16a34a;
            color: #166534;
            font-style: italic;
        }
        
        /* Buttons */
        .btn {
            display: block;
            width: 100%;
            padding: 20px 15px;
            margin-bottom: 15px;
            font-size: 18px;
            font-weight: 600;
            text-align: center;
            background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
            color: white;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            text-decoration: none;
            min-height: 65px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            text-transform: capitalize;
            letter-spacing: 0.5px;
        }
        
        .btn:hover, .btn:focus {
            background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
        }
        
        .btn-option {
            background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
            color: #374151;
            border: 2px solid #d1d5db;
        }
        
        .btn-option:hover, .btn-option:focus {
            background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
            border-color: #16a34a;
            color: #166534;
        }
        
        .btn-pulse {
            animation: gentlePulse 3s infinite;
        }
        
        @keyframes gentlePulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.03); }
            100% { transform: scale(1); }
        }
        
        /* Sticky CTA */
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
            padding: 18px;
            text-align: center;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
            z-index: 100;
        }
        
        .sticky-cta a {
            display: block;
            font-size: 20px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .reassurance {
            font-size: 13px;
            color: #fecaca;
            text-align: center;
            margin-top: 8px;
            font-style: italic;
        }
        
        /* Testimonials */
        .testimonials {
            display: flex;
            flex-direction: column;
            gap: 18px;
            margin: 25px 0;
        }
        
        .testimonial-card {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            padding: 18px;
            border-radius: 12px;
            border-left: 5px solid #22c55e;
            box-shadow: 0 4px 15px rgba(34, 197, 94, 0.1);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 8px;
            color: #166534;
            font-size: 16px;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: #059669;
            font-size: 14px;
        }
        
        /* Emoji Styling */
        .emoji {
            font-size: 28px;
            margin-right: 8px;
        }
        
        /* Urgency */
        .urgency {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border: 2px solid #f59e0b;
            padding: 15px;
            border-radius: 12px;
            margin: 20px 0;
            text-align: center;
            font-weight: bold;
            color: #92400e;
        }
        
        /* Footer/Compliance */
        .compliance {
            font-size: 11px;
            color: #9ca3af;
            text-align: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #e5e7eb;
            line-height: 1.4;
        }
        
        /* Hidden Fields */
        .hidden-fields {
            display: none;
        }
        
        /* Zip Code Input */
        .zip-input {
            width: 100%;
            padding: 20px;
            font-size: 22px;
            text-align: center;
            border: 3px solid #d1d5db;
            border-radius: 12px;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.9);
            font-family: 'Georgia', serif;
        }
        
        .zip-input:focus {
            border-color: #16a34a;
            outline: none;
            box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
        }
        
        /* Progress Indicator - Different Style */
        .progress {
            display: flex;
            justify-content: center;
            margin-bottom: 25px;
            gap: 8px;
        }
        
        .progress-step {
            width: 16px;
            height: 16px;
            border-radius: 4px;
            background-color: #e5e7eb;
            transition: all 0.3s ease;
        }
        
        .progress-step.active {
            background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
            transform: scale(1.2);
        }
        
        /* Zipcode Social Proof */
        .zip-social-proof {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            border: 3px solid #3b82f6;
            padding: 18px;
            border-radius: 15px;
            margin: 25px 0;
            text-align: center;
            font-size: 17px;
            font-weight: bold;
            color: #1e40af;
        }
        
        .zip-highlight {
            color: #dc2626;
            font-weight: 900;
            text-decoration: underline;
        }
        
        .local-savings {
            background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
            border: 2px solid #16a34a;
            padding: 15px;
            border-radius: 12px;
            margin: 20px 0;
            text-align: center;
            font-size: 18px;
            color: #166534;
        }
        
        /* Income Slider - Green Theme */
        .income-slider-container {
            margin: 25px 0;
            text-align: center;
            background: rgba(220, 252, 231, 0.3);
            padding: 20px;
            border-radius: 12px;
        }
        
        .income-slider {
            width: 100%;
            height: 10px;
            border-radius: 5px;
            background: #e5e7eb;
            outline: none;
            margin-bottom: 20px;
            -webkit-appearance: none;
        }
        
        .income-slider::-webkit-slider-thumb {
            appearance: none;
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
        }
        
        .income-slider::-moz-range-thumb {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
        }
        
        .income-display {
            font-size: 26px;
            font-weight: bold;
            color: #166534;
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            padding: 12px 25px;
            border-radius: 12px;
            display: inline-block;
            margin-bottom: 20px;
            border: 2px solid #bbf7d0;
            font-family: 'Georgia', serif;
        }