.vp18h_section {
    width: 100%;
    padding: 20px 0;
}

.vp18h_container_new {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 15px;
    overflow-x: hidden;
}

.vp18h_row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    width: 100%;
}

.vp18h_image-container-new {
    flex: 0 0 250px;
    overflow: hidden;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.vp18h_image-container-new img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vp18h_image-container-new:hover img {
    transform: scale(1.1);
}

.vp18h_text-content {
    flex: 1;
}

.vp18h_text-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
    transition: color 0.3s ease;
}

.vp18h_text-content p {
    color: #555;
    line-height: 1.6;
}

.vp18h_text-content a {
    text-decoration: none;
    color: inherit;
}

.vp18h_text-content a:hover h3 {
    color: #0080C0;
}