body {
    font-family: 'Arial', sans-serif;
    background-color: #e0f7fa; /* Light cyan background */
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: auto;
    background: #ffffff; /* White background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.title {
    font-size: 28px;
    color: #00796b; /* Teal color */
    text-align: left;
    border-bottom: 2px solid #004d40; /* Darker teal for the bottom border */
    padding-bottom: 10px;
}

.content {
    margin-top: 20px;
}

h2 {
    color: #004d40; /* Dark teal */
}

h3 {
    color: #00796b; /* Teal */
}

ul {
    list-style-type: none; /* Remove default bullets */
    padding-left: 0;
}

li {
    background-color: #b2dfdb; /* Light teal for list items */
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
}

button {
    background-color: #00796b; /* Teal button */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #004d40; /* Darker teal on hover */
}
