* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Futura-Lt', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        
        
        .containermail {
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 500px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            animation: fadeIn 0.8s ease-out;
        }
        
        .headermail {
            background: #e67e22;
            color: white;
            text-align: center;
            padding: 25px 20px;
            position: relative;
        }
        
        .headermail h1 {
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .headermail p {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .headermail i {
            position: absolute;
            font-size: 70px;
            opacity: 0.1;
            right: 20px;
            top: 20px;
        }
        
        .form-containermail {
            padding: 30px;
        }
        
        .input-group {
            margin-bottom: 25px;
            position: relative;
        }
        
        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
            font-size: 16px;
        }
        
        .input-group input,
        .input-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            outline: none;
        }
        
        .input-group input:focus,
        .input-group textarea:focus {
            border-color: #25D366;
            box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
        }
        
        .input-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .input-row {
            display: flex;
            gap: 15px;
        }
        
        .input-row .input-group {
            flex: 1;
        }
        
        .btnmail {
            background: #e67e22;
            color: white;
            border: none;
            padding: 16px 30px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }
        
        .btnmail:hover {
            background: #3498db;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }
        
        .btnmail:active {
            transform: translateY(0);
        }
        
        .notification {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #333;
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .notification.show {
            opacity: 1;
            visibility: visible;
        }
        
        .notification.error {
            background: #e74c3c;
        }
        
        .notification.success {
            background: #2ecc71;
        }
        
        .privacy-notice {
            text-align: center;
            margin-bottom: 20px;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 10px;
            font-size: 14px;
            color: #666;
        }
        
        .privacy-notice i {
            color: #e67e22;
            margin-right: 5px;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .pulse {
            animation: pulse 0.5s ease-in-out;
        }
        
        @media (max-width: 600px) {
            .containermail {
                border-radius: 15px;
            }
            
            .headermail h1 {
                font-size: 24px;
            }
            
            .form-containermail {
                padding: 20px;
            }
            
            .input-row {
                flex-direction: column;
                gap: 0;
            }
        }