body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
h1,h2 {
    text-align: center;
}
h5 {
    font-size: 0.9rem;
    margin-bottom: 0.2em; /* Adjust this value as needed
    padding-bottom: 0; Ensure there's no extra padding */  
}
p, li {
    line-height: 1.6;
    text-align: left;
}
p, li {
    line-height: 1.6;
    text-align: left;
}
.button-container {
    text-align: center; /* Centers the content within the container */
}
.button {
    display: inline-block;
    background-color: rgb(136, 25, 23);
    color: #fff;
    padding: 15px 20px;
    margin-bottom: 20px;
    text-decoration: none;
    border-radius: 5px;
    /* text-align: center; */
}
.section {
    margin-bottom: 20px;
    background-color: #fff;
    padding: 10px 50px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
img {
    height: 40px;
    /* padding-top: 5px; */
    vertical-align: auto;
}

.navbar {
    background-color: #333;
    overflow: hidden;
    margin-bottom: 20px;
}
.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
.navbar a:hover {
    background-color: #ddd;
    color: black;
}