.background-section {
    position: relative;
    height: 50vh; /* Adjust for mobile */
    background-size: cover;
    background-position: center;
}

.overlay-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 66%; /* Adjust for mobile */
}

/* Add media queries for larger screens if needed */
@media (min-width: 768px) {
    .background-section {
        height: 500px;
    }
    .overlay-logo {
        width: 33%;
    }
}