        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px 10px;
        }
        
        .domain-wrapper {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .domain-name {
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #0072ff, #00a6ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            /**letter-spacing: 2px;**/
        }
        
        .domain-subtitle {
            font-size: 1.2rem;
            color: #667788;
            margin-bottom: 40px;
        }
        
        .grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        
        .contact-info {
            /**display: flex;**/
            flex-direction: column;
            justify-content: center;
        }
        
        .email-link {
            display: inline-block;
            margin-bottom: 30px;
            transition: transform 0.3s;
        }
        
        .email-link:hover {
            transform: scale(1.05);
        }
        
        .email-image {
            max-width: 320px;
            border-radius: 10px;
            border: 1px solid #e0e5eb;
            padding: 20px;
            background: #ffffff;
            box-shadow: 0 8px 32px rgba(0, 108, 255, 0.1);
            cursor: pointer;
        }
        
        .contact-form {
            background: #ffffff;
            padding: 30px;
            border-radius: 10px;
            border: 1px solid #e0e5eb;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .form-title {
            font-size: 1.25rem;
            margin-bottom: 25px;
            color: #2c3e50;
            position: relative;
            padding-bottom: 10px;
        }
        
        .form-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #0072ff, #00a6ff);
            border-radius: 2px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #4a5568;
            font-size: 0.9rem;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: #f9fafc;
            border: 1px solid #e0e5eb;
            border-radius: 6px;
            color: #2c3e50;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #0072ff;
            box-shadow: 0 0 0 2px rgba(0, 114, 255, 0.1);
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 50px;
        }
        
        .captcha-group {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .captcha-image {
            height: 46px;
            /**background: #f9fafc;**/
            border-radius: 6px;
            padding: 5px;
            border: 1px solid #e0e5eb;
        }
        
        .refresh-captcha {
            color: #0072ff;
            cursor: pointer;
            font-size: 0.9rem;
            text-decoration: none;
        }
        
        .refresh-captcha:hover {
            text-decoration: underline;
        }
        
        .submit-btn {
            background: linear-gradient(45deg, #0072ff, #00a6ff);
            color: white;
            border: none;
            padding: 12px 25px;
            font-size: 1rem;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
            margin-top: 10px;
            width: 100%;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 20px rgba(0, 114, 255, 0.2);
        }
        
        .domain-notice {
            margin-top: 30px;
            padding: 30px;
            background: #ffffff;
            border-radius: 10px;
            border: 1px solid #e0e5eb;
            color: #1F1F1F;
            font-size: 0.95rem;
            text-align: center;
            font-weight:600;
        }        

        
        @media (max-width: 768px) {
            .grid {
                grid-template-columns: 1fr;
            }
            
            .domain-name {
                font-size: 1.8rem;
            }
            
            .contact-info {
               display: flex;
                order: 2;
                align-items: center;
            }
            
            .contact-form {
                order: 1;
            }
        }