.webp-contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.webp-contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.webp-contact-form .form-group {
    margin-bottom: 20px;
}

.webp-contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.webp-contact-form .required {
    color: #dc3545;
}

.webp-contact-form input[type="text"],
.webp-contact-form input[type="email"],
.webp-contact-form input[type="tel"],
.webp-contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.webp-contact-form input:focus,
.webp-contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.webp-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.webp-contact-form .button {
    background-color: #2563eb;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.webp-contact-form .button:hover {
    background-color: #1d4ed8;
}

.webp-contact-form .button:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.webp-form-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 4px;
}

.webp-form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.webp-form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}
