.nav1 {
    height: 60px;
    width: 100%;
    background-color: rgba(220, 220, 220, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;

}

ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

li {
    font-size: 15px;
    margin: 0 20px;
    cursor: pointer;
}

li i {
    font-size: 15px;
}

.div1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1px;
    margin: 10px 0;
}

p {
    color: black;
    font-size: 20px;
}

.nav2 {
    width: 100%;
    height: 600px;
    margin-bottom: 100px;
    background-color: rgba(220, 220, 220, 0.3);
    padding: 1px 0;
}

.store-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 90px 150px;
}

.store h1 {
    font-size: 40px;
    margin: 0;
    line-height: 1.2;
    text-align: left;
}

.store b {
    color: black;
}

.side {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.help-section {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-right: 100px;
    gap: 20px;
}

.help-section img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.help-text {
    display: flex;
    flex-direction: column;
}

.images {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 130px;
    flex-wrap: wrap;
}

.images div {
    text-align: center;
}

.images img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.images p {
    margin-top: 10px;
    font-size: 18px;
}

.images img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    li {
        font-size: 16px;
        margin: 0 10px;
    }

    .store-container {
        flex-direction: column;
        text-align: center;
        margin: 80px 20px;
    }

    .store h1 {
        font-size: 30px;
    }

    .help-section img {
        height: 40px;
        width: 40px;
    }

    .images img {
        margin-bottom: 100px;
        width: 200px;
        height: 30px;
    }

    .images p {
        font-size: 16px;
    }
}