/* Center and contain the form */
.wpcf7 {
    max-width: 600px;
    margin: 50px auto;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    text-align: left;
    box-sizing: border-box;
}

/* Style form elements */
.wpcf7-form-control {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Submit button styling */
.wpcf7-submit {
    width: 100%;
    background: #6a5acd;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.wpcf7-submit:hover {
    background: #483d8b;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wpcf7 {
    animation: fadeIn 1s ease-in-out;
}

/* Prevent form fields from overflowing */
.wpcf7-form-control-wrap {
    width: 100%;
    box-sizing: border-box;
}
