.lead-form-container {
    max-width: 600px;
    margin: 20px 0;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lead-form-container .form-header {
    text-align: center;
    margin-bottom: 25px;
}

.lead-form-container .form-content {
    position: relative;
}

.lead-form-container h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.lead-form-container .form-subtitle {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

.success-state {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.success-state h4 {
    margin: 0 0 15px 0;
    color: #10B981;
    font-size: 24px;
    font-weight: 600;
}

.success-state p {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.lead-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.lead-form .form-group {
    flex: 1;
}

.lead-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 14px;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.lead-form input[type="text"]:focus,
.lead-form input[type="email"]:focus,
.lead-form input[type="tel"]:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.lead-form .submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.lead-form .submit-btn:hover {
    background: linear-gradient(135deg, #005a87 0%, #004066 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
}

.lead-form .submit-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-message {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 6px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

@media (max-width: 1024px) {
    .lead-form-container {
        max-width: 100%;
        margin: 15px 0;
    }
}

@media (max-width: 768px) {
    .lead-form-container {
        padding: 20px 15px;
        margin: 15px 0;
    }
    
    .lead-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .lead-form .form-group {
        margin-bottom: 15px;
    }
    
    .lead-form-container h3 {
        font-size: 20px;
    }
    
    .lead-form-container .form-subtitle {
        font-size: 14px;
    }
}