#hero-section{
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('../images/home-background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    image-rendering: optimizeQuality;
    color: white;
    padding: 10rem;
}

#hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#hero-section p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

#hero-section button {
    padding: 1rem 2rem;
    background-color: #0080ef;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 2rem;
    font-size: 1.2rem;
}

#efficiency-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem;
    background-color: #f0f0f0;
    gap: 4rem;
}

#efficiency-section div {
    padding-left: 1rem;
    padding-right: 2rem;
    width: 15rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#tools-section {
    background-color: white;
    justify-content: center;
    align-items: center;
}

#tools-section ul{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem;
    gap: 1rem;
    list-style: none;
    text-align: center;
}


#tools-section ul li div img{
    border-radius: 0;
}
#power-platform-process{
    width: 700px;
    height: 400px;
    border-radius: 0;
}


@media (max-width: 1180px) {
    #hero-section {
        padding: 5rem;
    }

    #efficiency-section {
        display: flex;
        flex-direction: column;
        padding: 2rem;
    }

    #efficiency-section div {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    #tools-section {
        justify-content: center;
    }

    #tools-section ul {
        display: flex;
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }

    #tools-section ul li {
        width: 100%;
        margin-bottom: 2rem;
        justify-content: center;
    }
    #power-platform-process {
        width: 100%;
        height: auto;
    }
}






