* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.container {
  display: flex;
  height: 100vh;
  
}

.left {
  width: 20%;
  height: 100vh;
  overflow-y: scroll;
  padding: 20px;
  border-right: 1px solid #000;
}

.right {
  width: 45%;
  height: 100vh;
  overflow-y: scroll;
  padding: 20px;
}

.right2 {
  width: 35%;
  height: 100vh;
  overflow-y: scroll;
  padding: 20px;
}

.left img {
  width: 100%;
  margin-bottom: 15px;
  display: block;
}

.right img {
  width: 100%;
  margin-bottom: 5px;
  display: block;
}

.right2 img {
  width: 100%;
  margin-bottom: 5px;
  display: block;
}

.panel1-right img {
  width: 100%;
  margin-bottom: 5px;
  display: block;
}


.panel1-right p { 
  margin-bottom: 18px;
  line-height: 1.3;
}


.panel1-left img {
  width: 100%;
  margin-bottom: 15px;
  display: block;
}


.panel1-left p { 
  margin-bottom: 18px;
  line-height: 1.3;
}


h1 {
  font-size: 35px;
  font-weight: 900;
  margin-bottom: 0px;
}

.panel1-left h1 {
  font-size: 35px;
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.3;
}

.extra-bold {
  font-weight: 900;
}

.fin {
  font-weight: 100;
}

h2 {
  font-size: 18px;
  font-weight: 100;
  margin-bottom: 20px;
  margin-top: -10px;
}

h3 {
  font-size: 14px;
  font-weight: 100;
  margin-bottom: 30px;
}

h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 1.3px;
}

p {
  margin-bottom: 10px;
  line-height: 1.3;
}

.right p {
  margin-bottom: 0px;
  line-height: 1.3;
}

.right2 p {
  margin-bottom: 0px;
  line-height: 1.3;
}


.panel {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  right: 0;
  top: 0;
  width: 80%;
  height: 100vh;
  padding: 20px;
  background: white;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.panel:target {
  transform: translateX(0);
  pointer-events: auto;
}

.close {
  position: sticky;
  top: 0px;
  display: inline-block;
  font-size: 20px;
  text-decoration: none;
  color: black;

  margin: 0px;
}

.panel {
  overflow: hidden;
}

.panel1 {
  gap: 20px;
  display: flex;
  height: 100vh;
  margin-bottom: 60px;
}

.panel1-left {
  width: 40%;
  overflow-y: auto;
  margin-bottom: 60px;
}

.panel1-right {
  width:60%;
  overflow-y: auto;
  margin-bottom: 60px;
}  

.droite {
  text-align: right;
}

.ligne {
  display: flex;
  justify-content: space-between;
}

.text-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.text-col-left {
  width: 50%;
  text-align: left;
  font-size: 14px;
}

.text-col-right {
  width: 50%;
  text-align: right;
  font-size: 14px;
  line-height: 1.4;
}

.info-box {
  border: 1px solid #000;
  margin-bottom: 30px;
}

.info-title {
  background: black;
  color: white;
  padding: 8px 12px;
  font-size: 14px;
}

.info-content {
  display: flex;
  border-top: 1px solid #000;
}

.info-content p {
  margin-bottom: 5px;
  line-height: 1.3;
}

.info-col {
  width: 100%;
  padding: 8px 12px;
  border-right: 1px solid #000;
  font-size: 14px;
}

.info-col:last-child {
  border-right: none;
}


/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left, .right {
    width: 100%;
    height: auto;
    overflow: visible;
  }

  body {
    overflow: auto;
  }

  .left {
    border-right: none;
    border-bottom: 1px solid #000;
  }
}


