        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        
        body {
            background-color: #ffffff;
            color: #333333;
            line-height: 1.5;
            padding: 20px;
            max-width: 500px;
            margin: 0 auto;
        }
        
        /* Screen Management */
        .screen {
            display: none;
            min-height: calc(100vh - 40px);
            flex-direction: column;
            justify-content: center;
        }
        
        .screen.active {
            display: flex;
        }
        
        /* Typography */
        h1 {
            font-size: 28px;
            margin-bottom: 15px;
            text-align: center;
        }
        
        p {
            font-size: 18px;
            margin-bottom: 30px;
            text-align: center;
            color: #666666;
        }
        
        .note {
            font-size: 16px;
            background-color: #f8f9fa;
            padding: 12px;
            border-radius: 8px;
            margin: 15px 0;
            text-align: center;
            border-left: 4px solid #28a745;
        }
        
        /* Buttons */
        .btn {
            display: block;
            width: 100%;
            padding: 18px 15px;
            margin-bottom: 12px;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            background-color: #0056b3;
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            text-decoration: none;
            min-height: 60px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover, .btn:focus {
            background-color: #004494;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .btn-option {
            background-color: #f0f0f0;
            color: #333333;
        }
        
        .btn-option:hover, .btn-option:focus {
            background-color: #e0e0e0;
        }
        
        .btn-pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }
        
        /* Sticky CTA */
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #28a745;
            padding: 15px;
            text-align: center;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 100;
        }
        
        .sticky-cta a {
            display: block;
            font-size: 22px;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }
        
        .reassurance {
            font-size: 14px;
            color: #ffffff;
            text-align: center;
            margin-top: 10px;
        }
        
        /* Testimonials */
        .testimonials {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 20px 0;
        }
        
        .testimonial-card {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #0056b3;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 5px;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: #666;
        }
        
        /* Emoji Styling */
        .emoji {
            font-size: 24px;
            margin-right: 5px;
        }
        
        /* Urgency */
        .urgency {
            background-color: #fff3cd;
            border: 1px solid #ffeaa7;
            padding: 12px;
            border-radius: 8px;
            margin: 15px 0;
            text-align: center;
            font-weight: bold;
        }
        
        /* Footer/Compliance */
        .compliance {
            font-size: 12px;
            color: #999;
            text-align: center;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        /* Hidden Fields */
        .hidden-fields {
            display: none;
        }
        
        /* Zip Code Input */
        .zip-input {
            width: 100%;
            padding: 18px;
            font-size: 20px;
            text-align: center;
            border: 2px solid #ddd;
            border-radius: 10px;
            margin-bottom: 15px;
        }
        
        .zip-input:focus {
            border-color: #0056b3;
            outline: none;
        }
        
        /* Date Input */
        .date-input {
            width: 100%;
            padding: 18px;
            font-size: 20px;
            text-align: center;
            border: 2px solid #ddd;
            border-radius: 10px;
            margin-bottom: 15px;
        }
        
        .date-input:focus {
            border-color: #0056b3;
            outline: none;
        }
        
        /* Progress Indicator */
        .progress {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .progress-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
        }
        
        .progress-dot.active {
            background-color: #0056b3;
        }
        
        /* Couple Image Container */
        .couple-container {
            text-align: center;
            margin: 20px 0;
            position: relative;
        }
        
        .couple-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #0056b3;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .couple-badge {
            position: absolute;
            bottom: 10px;
            right: 25%;
            background: #28a745;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
        }
        
        /* Psychology Elements */
        .social-proof {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 15px 0;
            font-size: 16px;
            color: #666;
        }
        
        .social-proof-avatars {
            display: flex;
            margin-right: 10px;
        }
        
        .avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #0056b3;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            margin-left: -10px;
            border: 2px solid white;
        }
        
        .avatar:first-child {
            margin-left: 0;
        }
        
        .scarcity {
            background-color: #f8d7da;
            color: #721c24;
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            margin: 15px 0;
            font-weight: bold;
            border: 1px solid #f5c6cb;
        }
        
        .benefit-list {
            margin: 20px 0;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        .benefit-icon {
            width: 30px;
            height: 30px;
            background-color: #28a745;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            flex-shrink: 0;
        }
        
        /* Zipcode Social Proof */
        .zip-social-proof {
            background-color: #e7f3ff;
            border: 2px solid #0056b3;
            padding: 15px;
            border-radius: 10px;
            margin: 20px 0;
            text-align: center;
            font-size: 18px;
            font-weight: bold;
        }
        
        .zip-highlight {
            color: #0056b3;
            font-weight: 900;
        }
        
        .local-savings {
            background-color: #d4edda;
            border: 1px solid #c3e6cb;
            padding: 12px;
            border-radius: 8px;
            margin: 15px 0;
            text-align: center;
        }
