    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        line-height: 1.6;
        background-color: #121212;
        color: #ffffff;
    }
    header {
        display: flex;
        align-items: flex-start;
        padding: 10px 20px;
    }
    header img {
        height: 150px;
        margin-right: 20px;
    }
    .logo {
        position: absolute;
        top: 2.5vh;
        left: 0.52vw;
        width: 9vw;
        height: auto;
    }
    .slogan {
        position: absolute;
        top: 7vh;
        left: 9vw;
        width: 100vw;
        font-size: 2vw;
        font-weight: bold;
        background: linear-gradient(180deg, white, #4b85ab, white);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .container {
        max-width: 50vw; /* 800px converted to approximately 50% of the viewport width */
        margin: 20vh auto; /* 20px converted to 2% of the viewport height */
        padding: 2vw; /* 20px converted to 2% of the viewport width */
        background-color: #1e1e1e;
        border-radius: 0.5vw; /* 8px converted to 0.5% of the viewport width */
        box-shadow: 0 0.25vw 0.5vw rgba(0, 0, 0, 0.2); /* 4px and 8px converted to vw */
        font-size: 1vw;
    }

    h2 {
        color: #ffffff;
    }
    p {
        color: #bbbbbb;
    }
    ul {
        margin: 10px 0;
        padding: 0;
        list-style-type: disc;
        padding-left: 20px;
    }
    ul li {
        color: #bbbbbb;
    }
    .nav {
        position: absolute;
        top: 0.52vw;
        right: 1.04vw;
    }
    .nav a {
        color: white;
        text-decoration: none;
        margin-left: 1.04vw;
        font-size: 0.83vw;
        font-weight: bold;
        transition: color 0.3s;
    }
    .nav a:hover {
        color: #007BFF;
    }
