.cfh-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 25px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 8px;
    font-family: Inclusive Sans;
}

.cfh-form input[type="text"],
.cfh-form input[type="email"],
.cfh-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #bbb;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.cfh-form textarea {
    min-height: 120px;
    resize: vertical;
}

.cfh-form button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cfh-form button:hover {
    background-color: #005177;
}

.cfh-success {
    background: #dff0d8;
    color: #3c763d;
    padding: 12px;
    border: 1px solid #d6e9c6;
    border-radius: 4px;
    margin-bottom: 15px;
}
