    body {
        margin: 0;
        font-family: Arial, sans-serif;
        background-color: rgb(10,0,30);
    }

    .container {
        display: grid;
        grid-template-columns: 300px 1fr;
        min-height: 100vh;
    }

    /* LEFT SIDE */
    .left {
        display: grid;
        justify-items: center;
        align-content: start;
        padding-top: 10vh; /* 20% from top */
    }

    .logo {
        width: 200px;
        height: 200px;
        display: grid;
        place-items: center;
        font-weight: bold;
        font-size: 24px;
    }

    .icons {
        margin-top: 2px;
        width: 120px; /* Match logo width */
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
    }

    .icon {
        width: 40px;
        height: 40px;
    }

    /* RIGHT SIDE */
    .right {
        padding: 60px;
        color: grey;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .container {
            grid-template-columns: 1fr;
        }

        .left {
            padding-top: 40px;
        }

        .right {
            padding: 30px;
        }
    }

    /* Make images respect their parent boxes */
    .logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;   /* or 'cover' if you want it cropped */
      display: block;
    }

    .icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .logo, .icon {
      overflow: hidden;
    }