.ecooffice-lead-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ecooffice-lead-form h3 {
    margin-top: 0;
    color: #2c3e50;
}

.ecooffice-form-group {
    margin-bottom: 15px;
}

.ecooffice-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #34495e;
}

.ecooffice-form-group input,
.ecooffice-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.ecooffice-form-group input:focus,
.ecooffice-form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.ecooffice-submit-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.ecooffice-submit-btn:hover {
    background: #2980b9;
}

.ecooffice-alert {
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.ecooffice-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.ecooffice-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.ecooffice-honeypot {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}
