body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
}

header .logo img {
    height: 40px;
}

header #home {
    display: flex;
    align-items: center;
}

header a {
    text-decoration: none;
}

header h1 {
    margin: 6px;
    color: white;
    font-family: Luminari, fantasy;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.hero {
    background-image: url('tavern-background.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero .hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff6347;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

section {
    padding: 60px 20px;
    text-align: center;
}

#policy {
    text-align: left;
}

#features {
    color: #fff;
    background-color: #333;
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.step {
    max-width: 200px;
    margin: 20px 0;
}

.step img {
    width: 100px;
    height: 100px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    justify-content: center;
}

footer ul li {
    margin: 0 10px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}
