    * {
        margin: 0;
        padding: 0;
    }
   
    body {
        font-family: "Zurich W01 Roman", Arial, Helvetica, sans-serif;
    }
        
    .main {
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('HBProLine.jpg');
        background-position: center;
        background-size: cover;
        height: 65vh;            
    }

    .logo {
        color: #ff7200;
        font-size: 14px;
        font-family: Arial;
        padding-left: 20px;
        float: left;
        padding-top: 10px;
    }

    .menu {
        width: 400px;
        float: left;
        height: 70px;
    }

    .content {
        width: 70%;
        padding-top: 25px;
        margin: auto;
    }

    .content p {
        line-height: 1.5; 
        margin: 20px 0;
    }

    .content h1 {
        font-size: 30px;
        margin: 20px 0;
    }

    .content .cn {
        background-color: #007BFF;
        color: white;
        padding: 12px 22px;
        border: none;
        border-radius: 5px;
        text-align: center;
        text-decoration: none;
        display: block;
        transition: background-color 0.3s ease;
        margin: 0 auto;
        font-size: 18px;
    }

    .content .cn a {
        color: white;
        text-decoration: none;
    }

    .cn:hover {
        background-color: #0056b3;
    }

    table {
        width: 70%;
        border-collapse: collapse;
        margin: 0 auto;
    }

    caption {
        font-size: 1.5em;
        margin: 0.5em 0;
    }

    td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: center;
        font-weight: 600;
    }

    img {
        width: 250px; 
        height: auto; 
        max-width: 100%;
    }

    .update-time {
        margin: 50px 0;
        font-weight: 500;
    }

    .download-link img {
        width: 100%;
        max-width: 80px; /* Adjust as needed */
        height: auto;
    }    

    /* mobile query */
    @media (max-width: 767px) {
    .main {
            height: 50vh;
        }
    table {
            width: 80%;
        }
    .content h1 {
            font-size: 20px;
        }
    .content {
        width: 80%;
        }
    }
        
    /* Tablets */
    @media (min-width: 768px) and (max-width: 1024px) {
    .main {
            height: 35vh;
        }
    table {
            width: 80%;
        }
    .content {
            width: 80%;
        }
    }

    @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
        .main {
                height: 100vh;
            }
        }
    
    @media (max-width: 600px) {
        td {
            display: block;
            width: 100%;
        }
        tr {
            display: block;
            margin-bottom: 1em;
        }
    }