#governance-page .body{
    padding: 50px 0 100px 0;
}
.governance{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.governance__container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
}
.governance-item{
    display: flex;
    min-height: 206px;
    align-items: center;
    gap: 100px;
    width: 100%;
    background: #FFF;
    box-shadow: -1px 4px 8px 0 rgba(40, 40, 40, 0.05);
}
.governance-item__img{
    height: 100%;
    width: 205px;
    background-size: cover;
    background-position: center;
}
.governance-item__info{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}
.governance-item__info span{
    color: #282828;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24px;
}
.governance-item__info p{
    color: #282828;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.14px;
}
.governance-item__info button{
    border-radius: 10px;
    border: 1px solid #BF1A1F;
    background-color: inherit;
    display: flex;
    padding: 9px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;

    color: #BF1A1F;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}
.governance-item__info button:hover {
    background: linear-gradient(204deg, #BF1A1F 34.6%, #DD383D 88.27%);
    color: #FFF;
}


.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(40, 40, 40, 0.40);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal-window {
    position: relative;
    border-radius: 10px;
    background: #FFF;
    box-shadow: -1px 4px 8px 0px rgba(40, 40, 40, 0.05);
    max-width: 863px;
    width: 100%;
    height: auto;
}
.modal-close {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 20px;
    height: 20px;
    aspect-ratio: 1 / 1;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.modal-close svg {
    width: 100%;
    height: 100%;
}
.modal-content{
    display: flex;
    padding: 60px 50px;
    align-items: flex-start;
    gap: 30px;   
    height: auto;
}
.modal-content img{
    width: 205px;
    height: 206px;
    border-radius: 5px;
    object-fit: cover
}
.modal-info{
    display: flex;
    width: 528px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.modal-info h2{
    color: #282828;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.24px;
}
.modal-info h3{
    color: #282828;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14px;
}
.modal-info hr{
    background: #BFA060;
    height: 2px;
    align-self: stretch;
}
.modal-info p{
    color: #282828;
    font-size: 16px;
    font-weight: 400;
    line-height: 167.523%;
    margin-top: 6px;
}

@media screen and (max-width: 730px) {
    .governance-item{
        gap: 20px;
        height: 110px;
    }
    .governance-item__img{
        width: 110px;
        object-fit: cover;
        height: auto;
    }
    .governance-item__info span{
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
    }
    .governance-item__info p{
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
    }

}

@media screen and (max-width: 730px) {
    .modal-window {
      max-width: 95%;
      padding: 30px 20px;
      max-height: 80vh; 
      overflow-y: auto;
      margin-top: 90px;
    }
    .modal-content {
      flex-direction: column;
      align-items: left;
      padding: 30px 20px;
      gap: 20px;
    }
    .modal-content img {
      width: 160px;
      height: 160px;
    }
    .modal-info {
      width: 100%;
      align-items: left;
      text-align: left;
      gap: 16px;
    }
    .modal-info h2 {
      font-size: 20px;
    }
    .modal-info h3 {
      font-size: 14px;
    }
    .modal-info hr {
      width: 100%;
    }
    .modal-info p {
      font-size: 15px;
      line-height: 1.6;
    }
    .modal-close {
      top: 15px;
      right: 15px;
    }
  }