/* Estilos básicos para el formulario de contacto */
#custom-contact-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}
#custom-contact-form p {
    margin-bottom: 15px;
}
#custom-contact-form label {
    font-weight: bold;
}
#custom-contact-form input[type="text"],
#custom-contact-form input[type="email"],
#custom-contact-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#custom-contact-form input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#custom-contact-form input[type="submit"]:hover {
    background-color: #005177;
}

/* Mensaje de éxito */
.ccf-success-message {
    max-width: 600px;
    margin: 20px auto;
    padding: 15px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}
