
    .lmw-form-container {
        max-width: 600px;
        margin: 20px auto;
        padding: 30px;
        background: #f9f9f9;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0,0,0,0.08);
        font-family: Arial, sans-serif;
    }
    
    .lmw-form-group {
        margin-bottom: 25px;
    }
    
    .lmw-form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
        color: #333;
    }
    
    .lmw-input, .lmw-textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 16px;
        box-sizing: border-box;
        transition: border-color 0.3s;
    }
    
    .lmw-input:focus, .lmw-textarea:focus {
        border-color: #25D366;
        outline: none;
        box-shadow: 0 0 5px rgba(37, 211, 102, 0.3);
    }
    
    .lmw-textarea {
        height: 150px;
        resize: vertical;
    }
    
    .lmw-required {
        color: #ff0000;
        font-weight: bold;
    }
    
    .lmw-submit {
        background: #25D366;
        color: white;
        border: none;
        padding: 14px 25px;
        font-size: 18px;
        border-radius: 6px;
        cursor: pointer;
        transition: background 0.3s;
        width: 100%;
        font-weight: bold;
    }
    
    .lmw-submit:hover {
        background: #128C7E;
    }
    
    .lmw-attachments {
        background: #fff;
        padding: 20px;
        border-radius: 6px;
        border: 1px solid #e0e0e0;
        margin-top: 10px;
    }
    
    .lmw-file-input {
        margin-bottom: 15px;
    }
    
    .lmw-file-input label {
        display: block;
        margin-bottom: 5px;
        font-weight: normal;
    }
    
    .lmw-response {
        margin-top: 25px;
        padding: 15px;
        border-radius: 6px;
        font-size: 16px;
    }
    
    .lmw-response.success {
        background: #dff0d8;
        border: 1px solid #d6e9c6;
        color: #3c763d;
    }
    
    .lmw-response.error {
        background: #f2dede;
        border: 1px solid #ebccd1;
        color: #a94442;
    }
    
    #lmw-whatsapp-redirect {
        margin-top: 20px;
        padding: 15px;
        background: #e1f5fe;
        border-radius: 6px;
        text-align: center;
    }
    
    #lmw-whatsapp-link {
        color: #25D366;
        font-weight: bold;
        text-decoration: none;
    }
    