        * {
            font-family: 'Inter', sans-serif;
        }
        
        h1, h2, h3, .display-font {
            font-family: 'Montserrat', sans-serif;
        }
        
        :root {
            --ml-yellow: #FFE600;
            --ml-blue: #2D3277;
            --bg-color: #07a28b; /* Updated background color */
        }
        
        body {
            background-color: var(--bg-color);
            min-height: 100vh;
            color: #333;
        }
        
        .fade-in { animation: fadeIn 0.5s ease-in; }
        .slide-up { animation: slideUp 0.5s ease-out; }
        
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        
        @keyframes shine {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }
        
        .shine-effect {
            background: linear-gradient(90deg, var(--ml-blue) 0%, #4a50a3 50%, var(--ml-blue) 100%);
            background-size: 200% auto;
            animation: shine 3s linear infinite;
            color: white;
        }

        .shine-effect-yellow {
            background: linear-gradient(90deg, var(--ml-yellow) 0%, #fff9c4 50%, var(--ml-yellow) 100%);
            background-size: 200% auto;
            animation: shine 3s linear infinite;
            color: var(--ml-blue);
        }
        
        /* Modal Styles - Matching the clean card design */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* Softer backdrop */
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        
        .modal.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .modal-content {
            background: white;
            border-radius: 24px; /* More rounded like reference */
            padding: 32px;
            max-width: 500px; /* Slightly narrower for mobile feel */
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            transform: scale(0.95);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy effect */
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        
        .modal.active .modal-content {
            transform: scale(1);
        }

        /* Survey Options Styling - Matching Reference Image 2 & 3 */
        .option-button {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 18px 24px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 16px; /* Rounded options */
            margin-bottom: 12px;
            transition: all 0.2s ease;
            font-weight: 500;
            font-size: 16px;
            color: #374151;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
            position: relative;
        }

        .option-button:hover {
            background-color: #f9fafb;
            border-color: #d1d5db;
            transform: translateY(-1px);
        }

        .option-button.selected {
            background: #3483fa; /* Checkout blue */
            border-color: #3483fa;
            color: white;
            box-shadow: 0 8px 16px rgba(52, 131, 250, 0.25);
            transform: scale(1.02);
        }

        /* Checkout Styling - Matching Reference Image 1 */
        .checkout-container {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .checkout-btn {
            background-color: #3483fa; /* Mercado Libre checkout blue */
            color: white;
            width: 100%;
            padding: 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 18px;
            transition: background-color 0.2s;
        }
        .checkout-btn:hover {
            background-color: #2968c8;
        }

        @keyframes pulse-shadow {
            0% { box-shadow: 0 4px 6px -1px rgba(255, 215, 0, 0.4), 0 2px 4px -1px rgba(255, 215, 0, 0.2); transform: scale(1); }
            50% { box-shadow: 0 10px 15px -3px rgba(255, 215, 0, 0.5), 0 4px 6px -2px rgba(255, 215, 0, 0.3); transform: scale(1.02); }
            100% { box-shadow: 0 4px 6px -1px rgba(255, 215, 0, 0.4), 0 2px 4px -1px rgba(255, 215, 0, 0.2); transform: scale(1); }
        }
        
        .btn-alive {
            animation: pulse-shadow 3s infinite ease-in-out;
        }

        .hidden-section { display: none !important; }

		
.iti {
    width: 100%;
}

.iti__tel-input {
    width: 100%;
    padding-left: 90px !important;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.iti__flag-container {
    pointer-events: none;
    position: absolute;
    left: 10px;
}

.iti__selected-flag {
    background-color: #f8f8f8;
    border-right: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    padding-left: 10px;
    padding-right: 10px;
    height: 100%;
    display: flex;
    align-items: center;
}

.iti__dropdown {
    display: none !important;
}

