body {
    margin: 0;
    padding: 0;
    font-family: Poppins;
    overflow: hidden;
}

.beleid-header {
    display: flex;
    justify-content: space-between;
    margin: 20px 10% 50px 10%;
    align-items: center;
    border-bottom: 2px solid grey;
    padding-bottom: 30px;
}

.beleid-header img {
    height: 70px;
}

.beleid-header-right h1, .beleid-header-right p {
    margin: 0;
}

.beleid-redirect {
    color: grey;
    font-size: 12px;
}

.beleid-redirect a {
    text-decoration: none;
    color: #ab432c;
}

.beleid-container {
    display: flex;
    max-width: 100%;
    height: 100%;
    margin: 0px 10% 0px 10%;
}

.beleid-body-menu {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin-right: 100px;
}

.beleid-body-menu a {
    font-weight: bold;
    text-decoration: none;
    color: black;
}

.beleid-body-menu p {
    margin: 4px 0px 4px 0px;
    font-size: 16px;
}

.beleid-body-container {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
    scroll-behavior: smooth;
}

.beleid-context {
    margin-bottom: 60px;
}

.beleid-title h3 {
    font-size: 28px;
    margin: 0;
}

.beleid-text p {
    font-size: 20px;
    margin: 0;
}

.beleid-text a {
    text-decoration: none;
    color: #ab432c;
}




.hamburger-button {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  display: none;
  position: fixed;
  top: 15px;
  left: 15px;
}

@media (max-width: 768px) {
  .hamburger-button {
    display: block;
  }

  .beleid-body-menu {
    position: fixed;
    top: 0;
    left: -310px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .beleid-body-menu.open {
    left: 0;
  }
}

@media (max-width: 580px) {
    .beleid-header img {
        height: 50px;
    }

    .beleid-header-right h1 {
        font-size: 20px;
    }

    .beleid-header-right p {
        font-size: 14px;
    }
}
