.text-section{
    width: 50%;
}
.img-section{
    width: 40%;
}


/* HOME - Section 1 */
.home-first-section{
    background-image: url('../img/Stadlohnhandy-Background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 90vh;
    width: 100%;
    position: relative;
    z-index: 2;
}

.home-first-section:before{
    content: "";
    height: 100%;
    background-color: black;
    opacity: 0.6;
    position: absolute;
    width: 100%;
    z-index: -1;
}
.home-first-section .container{
    margin: 12rem auto;
    text-align: center;
}

/* HOME - Section 2 */
.home-second-section{
    padding: 5rem 3rem;
    text-align: start;
    display: flex;
    justify-content: space-between;
}

/* HOME - Section 3 */
.home-third-section{
    background-color: #027bde;
    padding: 3rem 5rem;
    text-align: start;
}

.home-third-section-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:2rem auto
}

#home-third-section-head-para{
    width: 65%;
}

/* HOME - Section 4 */
.home-fourth-section{
    padding: 3rem 0;
    text-align: start;
}
.home-fourth-section h1{
    margin:2rem 0
}
.home-fourth-section-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}
.home-fourth-section-container section{
    margin:2rem 0; 
    width:30%; 
}
.svg-size{
    height: 15%;
}

/* MEDIA QUERIES */
@media (max-width: 700px) {
    .home-first-section {
        height: auto;
        min-height: 70vh;
        padding-bottom: 30px;
    }
    
    .home-first-section .container {
        margin: 2rem auto 1rem !important; /* CHANGED: Reduced top margin */
        padding: 0 15px;
        text-align: center;
        width: 100%;
    }
    
    .home-first-section h1 {
        font-size: 2rem;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }
    
    .home-first-section h2 {
        font-size: 1.5rem;
        text-align: center;
        width: 100%;
    }
    
    .home-first-section .btn {
        margin: 20px auto 0 !important;
        padding: 12px 24px !important;
        display: block !important;
        width: fit-content !important;
        text-align: center;
    }
    
    .home-second-section {
        padding: 0;
        flex-direction: column;    
    }
    
    .home-second-section section{
        width: 90%;
        margin: 3rem auto;
        text-align: start;
    }
    
    .home-third-section {
        padding: 1rem;
    }
    
    .home-third-section-container {
        flex-direction: column;
        text-align: start;
    }
    
    #home-third-section-head-para{
        width: 90%;
        margin: auto;
    }
    
    .home-third-section-container section {
        width: 90%;
        margin: auto;
    }
    
    .home-fourth-section-container {
        flex-direction: column;
    }
    
    .home-fourth-section-container section{
        width: 95%;
        margin: 1.5rem auto;
    }
}