body {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    padding: 7em 0;    
    background-color: #f4f4f4;
    color: #666666;
}

.heading-section {
    text-align: center;
    padding: 20px;
    margin-top: -4rem;
    margin-bottom: 1rem;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
    color: #000;
}

.container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.3);
}
@media (min-width: 576px) {
.container {
    max-width: 540px; } }
@media (min-width: 768px) {
.container {
    max-width: 720px; } }
@media (min-width: 992px) {
.container {
    max-width: 960px; } }
@media (min-width: 1200px) {
.container {
    max-width: 1140px; } }

@media (max-width: 992px) {
    .container {
        flex-direction: column; } }

.left-half {
    padding-bottom: 2rem;
    position: relative;
    min-height: 50vh;
    flex: 0.9;
    background-color: #fff;
    padding-left: 3rem;
    padding-top: 3rem;
    text-align: left;
    padding-bottom: 8rem;
}
h3 {
    color: #000;
    line-height: 1.5;
    font-weight: 400;
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}
.link {
    color: rgba(0, 0, 0, 0.2);
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    padding-left: 10px;
    position: absolute;
    bottom: 1rem;
}
a {
    text-decoration: none;
    background-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}
a:hover {
    text-decoration: none;
    background-color: transparent;
}


.right-half {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.right-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
.right-half:hover img {
    transform: scale(1.1);
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.right-half:hover .overlay {
    opacity: 1;
}
.overlay-content {
    text-align: center;
    color: #fff;
}

