

.left-panel { background: linear-gradient(135deg, #6a11cb, #2575fc); color: white; flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center; } 
.left-panel h1 { font-size: 36px; margin-bottom: 20px; } .left-panel p { font-size: 18px; margin-bottom: 10px; } 
.right-panel { flex: 1; background: white; padding: 40px; } 
.right-panel h2 { font-size: 28px; margin-bottom: 10px; color: #333; } 
.right-panel p { font-size: 8px; margin-bottom: 20px; color: #666; } 
.contact-section { background: linear-gradient(135deg, #6a11cb, #2575fc); color: #fff; padding: 30px; border-radius: 10px; max-width: 500px; font-family: 'Segoe UI', sans-serif; } .contact-section h1 { margin-bottom: 20px; font-size: 28px; } .contact-info p { font-size: 18px; margin: 10px 0; display: flex; align-items: center;}
form input, form textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 6px; } 
form label { font-weight: 600; margin-bottom: 5px; display: block; } 
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; } 
.services label { display: flex; align-items: center; font-weight: normal; } 
.services input[type="checkbox"] { margin-right: 8px; } 
button { background: #2575fc; color: white; border: none; padding: 12px 20px; border-radius: 6px; font-size: 16px; cursor: pointer; transition: background 0.3s; } 
button:hover { background: #1a5edb; }
@media (max-width: 768px) { .container { flex-direction: column; } .left-panel, .right-panel { padding: 20px; } }