.vlim-section {
    padding: 85px 0 0;
}

.vlim-header {
    text-align: center;
    margin-bottom: 24px;
}

.vlim-header h2 {
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.vlim-header p {
    font-size: 16px;
    line-height: 24px;
    color: #4D4D4D;
   
}

.vlim-image-wrapper {
    position: relative;
    text-align: center; 
}

.vlim-image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.vlim-maximize-icon {
    display: none;
    position: absolute;
    bottom: 4px;
    right: 15px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 10;
}

.vlim-maximize-icon svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 991.98px) {
    .vlim-header h2 {
        font-size: 38px;
    }

    .vlim-header p {
        font-size: 14px !important;
   
    }
    .vlim-header {
        margin-bottom: 16px;
    }

    .vlim-maximize-icon {
        display: flex; 
    }
}

@media (max-width: 767.98px) {
    .vlim-section {
        padding: 60px 0 0;
    }
      .vlim-header h2 {
        font-size: 34px;
    }
     .vlim-header {
        margin-bottom: 16px;
    }

}

.vlim-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

.vlim-lightbox img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}

.vlim-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}