.efficiency-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5vh 10vw;
    position: relative;
    overflow: hidden;
}

.Gbg5 {
    position: absolute;
    top: 10px;
    right: 100px;
    width: 28%;
    height: auto;
    z-index: -1;
}

.text-content {
    flex: 1;
    padding-right: 2rem;
}

.text-content h1 {
    font-size: 48px;
    line-height: 56px;
    color: #1C1C1C;
}

.text-content p {
    font-size: 18px;
    line-height: 28px;
    color: #6c757d;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 28px;
    color: #1C1C1C;
    margin-bottom: 1rem;
}

.features-list .check-icon {
    color: #396AFF;
    font-size: 24px;
    margin-right: 0.5rem;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-right: 10%;
}

.laptop-img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.phone-img {
    width: 35%;
    position: absolute;
    right: -20%;
    top: -30%;
    z-index: 2;
}

@media (max-width: 1024px) {
    .efficiency-section {
        flex-direction: column;
        text-align: center;
        padding: 5vh 2rem; 
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .text-content h1 {
        font-size: 36px;
        line-height: 44px;
    }

    .text-content p {
        font-size: 16px;
        line-height: 24px;
    }

    .features-list {
        text-align: left;
    }

    .features-list li {
        
        margin-bottom: 1rem;
    }

    .laptop-img,
    .phone-img {
        display: none;
    }
}