.wpcf-form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 3px;
    background: #d8d4ef;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.wpcf-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
}

.wpcf-field {
    margin-bottom: 20px;
}

.wpcf-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.wpcf-field .required {
    color: #e74c3c;
}

.wpcf-field input[type="text"],
.wpcf-field input[type="email"],
.wpcf-field input[type="tel"],
.wpcf-field input[type="number"],
.wpcf-field textarea,
.wpcf-field select {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.wpcf-field input:focus,
.wpcf-field textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.wpcf-field input[type="file"] {
    padding: 10px;
    border: 2px dashed #e1e8ed;
    border-radius: 8px;
    width: 100%;
}

.wpcf-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 100%;
}

.wpcf-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
}

.wpcf-success-message {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    max-width: 500px;
    margin: 50px auto;
}

.wpcf-success-message h3 {
    color: #667eea;
    font-size: 24px;
    letter-spacing: 2px;
}