body {
      margin: 0;
      font-family: 'Public Sans', sans-serif;
      font-weight: 300;
      background-color: #f5f2f4;
      color: #6C6C6C;
    }

.container {
      display: flex;
      height: 100vh;
      flex-direction: row;
    }

    .left {
      width: 45%;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #f5f2f4;
      padding: 0;
      box-sizing: border-box;
      overflow: hidden;
    }

    .gif-container {
      width: calc(100% + 40px);
      height: 100vh;
      max-width: none;
      max-height: none;
      margin-left: -20px;
      border-radius: 0;
      overflow: hidden;
      position: relative;
    }

    .gif-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: bottom; /* Plaatst de onderkant van de GIF vast */
      display: block;
    }

    .right {
      position: relative;
      width: 55%;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
      margin-right: 0;
    }

    .header-right {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 20px;
      font-size: 1rem;
      padding-bottom: 20px;
    }

    .header-right a {
      text-decoration: none;
      color: #6C6C6C;
      font-weight: normal;
    }

    .header-right a:hover {
      text-decoration: underline;
    }

    .main-logo {
      width: 150vw;
      max-width: 350px;
      height: auto;
      margin-top: 80px;
      margin-left: -10px;
      margin-bottom: 80px;
      align-self: flex-start;
    }

    .main-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
      font-size: 1rem;
      font-weight: 300;
      flex-grow: 1;
      padding-right: 40px;
      box-sizing: border-box;
    }

    .main-content p {
      color: #6C6C6C;
      margin-bottom: 10px;
      margin-top: 0;
    }

    .main-content button {
      padding: 10px 20px;
      background-color: #89757e;
      border-radius: 10px;
      font-size: 1rem;
      cursor: pointer;
      color: white;
      border: none;
      font-family: 'Public Sans', sans-serif;
      transition: background-color 0.3s ease;
      width: auto;
    }

    .main-content button:hover {
      background-color: #a08c94;
    }

    .bottom-nav {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      margin-top: auto;
      padding-top: 40px;
      box-sizing: border-box;
    }

    .bottom-nav a {
      text-decoration: none;
      color: #6C6C6C;
      font-weight: normal;
      font-size: 1rem;
      margin-left: 20px;
    }

    .bottom-nav a:hover {
      text-decoration: underline;
    }

    em {
      font-style: italic;
    }

    .main-content .login-text {
      font-weight: bold;
    }

    /* --- Responsieve aanpassingen voor smartphones --- */
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        height: auto;
      }

      .left {
        width: 100%;
        padding: 0;
      }

      .gif-container {
        width: calc(100% + 40px);
        margin-left: -20px;
        height: 60vh; /* Aangepaste hoogte voor mobiel van 30vh naar 80vh */
        max-width: none;
        max-height: none;
      }

      .gif-container img {
        /* Aangepaste object-position om de onderkant van de GIF zichtbaar te houden */
        object-position: bottom; 
      }
      
      .right {
        width: 100%;
        padding: 20px;
        text-align: center;
      }

      .header-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        padding-bottom: 10px;
      }

      .header-right a:hover,
      .bottom-nav a:hover {
        /* Overweeg een contrasterende kleur of verwijder deze regels voor mobiel,
           aangezien hover-effecten minder relevant zijn op touch-apparaten. */
        /* text-decoration-color: white; */
        /* color: white; */
      }
      
      .main-logo {
        width: 80%;
        max-width: 250px;
        margin: 20px auto;
        align-self: center;
      }

      .main-content {
        padding-right: 0;
        gap: 20px;
      }

      .main-content button {
        width: auto;
        display: inline-block;
        margin: 10px auto;
      }

      .bottom-nav {
        justify-content: center;
        padding-top: 20px;
        margin-left: 0;
        margin-right: 0;
        width: 100%; 
      }

      .bottom-nav a {
          margin-left: 0;
      }
    }