.container-contact {
    padding: 20px;
  }
  
.contact-info {
    display: flex;
    /* flex-wrap: wrap;
    align-items: center; */
    align-items: flex-start; 
    gap: 10px;
}

.contact-details {
    flex: 1;
    max-width: 1000px;
}

.qr-code {
    margin-left: 10px;  
}

.qr-code img {
    width: 100%;
    max-width: 130px;
    height: auto;
}

@media (max-width: 767px) {
    .contact-info {
        flex-direction: column;
        align-items: flex-start;
      }
    
      .qr-code {
        margin-left: 0;
        margin-top: 10px;
        display: flex;
        justify-content: center;
        width: 100%; 
      }
    
      .qr-code img {
        margin: 0 auto; 
      }
}
  

.center {
    margin-bottom: 20px;
}
  
img.img-fluid {
    max-width: 85%;
    max-height: 85%;
    height: auto;
    /* width: 300px; 
    height: 168px;
    object-fit: contain;  */
}

img.img-certificate {
    /* max-width: 85%;
    max-height: 85%;
    height: auto; */
    width: 400px; 
    height: 200px;
    object-fit: contain; 
}

img.img-contact{
    width: 100%;
    max-width: 1000px;
    height: auto;
    
}

.img-paper {
    width: 80%;
    height: auto;
    border: 1px solid #ddd;
    margin: 10px 0;
}
  
h2 {
    margin-top: 20px;
    margin-bottom: 10px;
}

/* hr {
    margin: 10px 0;
} */

/* p {
    text-align: justify;
} */
.section-title {
    font-size: 1.5em; 
    font-weight: bold; 
}

@media (max-width: 767px) {
    .text-center {
        text-align: center;
    }

    .row > div {
        margin-bottom: 20px;
    }
}

.scroll-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    overflow-y: auto;
    max-height: 100vh; 
}
  