
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background: #fff;
    color: #333;
}
h1 {
    color: #c8102e;
}
header.hero {
    background: url('images/hero.jpg') center/cover no-repeat;
    height: 300px;
    color: #fff;
    text-align: center;
    padding-top: 100px;
}
ul li {
    list-style: none;
    margin-bottom: 10px;
}
ul li img {
    width: 40px;
    vertical-align: middle;
    margin-right: 10px;
}
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}
input, textarea {
    padding: 10px;
    font-size: 1em;
}
button {
    background: #c8102e;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
