.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: green url('/assets/img/ssione_background.jpg') center center no-repeat;
    background-size: cover;
}

.overlay-component {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
}

.overlay-box {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.content-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-box {
    padding: 2rem;
    color: white; /* Adjust color as needed */
}

.text-banner {
  text-shadow: 2px 2px black;
}

.text-services {
  text-shadow: 2px 2px 15px grey;
}

/* Tablet and Mobile styles */
@media (max-width: 991.98px) {
    .content-wrapper {
        width: 100%;
        padding: 2rem;
    }
    
    .bg-image {
        background-size: cover; /* Switch to cover for better mobile display */
    }
}