body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

h1, h2 {
    text-align: center;
    color: #5a5a5a;
}

h1 {
    margin-top: 20px;
    font-size: 2.5em;
}

h2 {
    margin-top: 30px;
    font-size: 2em;
}

div {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    font-size: 1em;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

li:last-child {
    border-bottom: none;
}

p {
    text-align: center;
    font-size: 1.1em;
    line-height: 1.6;
    color: #666;
}

.beverage-name {
    font-family: 'Georgia', serif; 
    font-weight: bold;
    display: inline-block;
    width: 150px; /* Adjust width as needed */
}

.description {
    font-family: 'Arial', sans-serif;
    margin-left: 150px; /* Align with .beverage-name width */
    display: block;
    text-indent: 0;
}

a {
    text-decoration: none;
    color: #007bff;
}
a:hover {
    text-decoration: underline;
    color: #007bff;
}