
        body {
            font-family: Arial, sans-serif;
            text-align: center; /* Centering all content */
            padding: 20px;
            margin: 0;
        }
        h1 {
            font-size: 36px;
            color: #333;
        }
        p {
            font-size: 18px;
            color: #333;
            line-height: 1.6;
        }
        a {
            color: #007BFF;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        .button {
            display: inline-block;
            padding: 16px 32px;
            background-color: #ADD8E6; /* Light blue background */
            color: #000; /* Black text */
            font-size: 18px; /* Larger text */
            font-weight: bold; /* Bold text */
            text-decoration: none;
            border-radius: 4px;
            margin-top: 20px;
            text-align: center;
        }
        .button:hover {
            background-color: #87CEEB; /* Slightly darker blue on hover */
        }
        h2 {
            font-size: 28px;
            margin-top: 30px;
        }
        ul {
            list-style-type: none;
            padding: 0;
        }
        ul li {
            font-size: 18px;
            margin: 10px 0;
        }
        ul li a {
            font-weight: bold; /* Bold text for links */
            color: #007BFF; /* Blue color for links */
            text-decoration: none; /* Remove underline */
        }
        ul li a:hover {
            color: #0056b3; /* Darker blue on hover */
            text-decoration: underline; /* Add underline on hover */
        }
    