#pcf-contact-form {
    max-width: 500px;
    margin: 0 auto;
}

#pcf-contact-form label {
    display: block;
    margin-bottom: 5px;
}

#pcf-contact-form input[type="text"],
#pcf-contact-form input[type="email"],
#pcf-contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#pcf-contact-form input[type="submit"] {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

#pcf-contact-form input[type="submit"]:hover {
    background-color: #005a87;
}

.pcf-success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 10px;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    margin-top: 10px;
}
