.experience-content {
    width: 94%;
    margin: 1% auto;
    padding: 2% 0;
    margin-top: 0;
}

.experience-text {
    width: 100%;
    font-size: 1.1vw;
}

.deposits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border-radius: 0.6vw;
    box-shadow: 0 0.2vw 0.8vw rgba(0,0,0,0.08);
}

.deposits-list > li {
    padding: 1.8%;
    border-bottom: 0.1vw solid #f0f0f0;
    transition: all 0.2s ease;
}

.deposits-list > li:last-child {
    border-bottom: none;
}

.deposits-list > li:hover {
    background: #f8fafd;
}

.deposits-list h3 {
    font-size: 1.6vw;
    font-weight: 600;
    color: #111;
    margin: 0 0 0.8% 0;
    padding-bottom: 0.5%;
    border-bottom: 0.15vw solid #2c5ecc;
    display: inline-block;
}

.deposits-list ul {
    list-style: none;
    padding: 0.8% 0 0 2%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2%;
}

.deposits-list ul li {
    position: relative;
    padding-left: 2.5%;
    margin-bottom: 0.8%;
    line-height: 1.5;
    width: 48.5%;
    box-sizing: border-box;
    font-size: 1.2vw;
}

.deposits-list ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6vw;
    width: 0.4vw;
    height: 0.4vw;
    background: #2c5ecc;
    border-radius: 50%;
}

[data-lang="ru"] .experience-content {
    display: flex;
    flex-direction: column;
}

[data-lang="ru"] .experience-image {
    width: 100%;
    margin: 0 auto 3%;
    display: block;
    border-radius: 0.6vw;
    box-shadow: 0 0.3vw 1vw rgba(0,0,0,0.1);
}

[data-lang="en"] .experience-image {
    display: none;
}

[data-lang="en"] .deposits-list {
    background: transparent;
    box-shadow: none;
}

[data-lang="en"] .deposits-list > li {
    background: #fff;
    border-radius: 0.6vw;
    box-shadow: 0 0.2vw 0.6vw rgba(0,0,0,0.05);
    margin-bottom: 1.5%;
    padding: 2%;
}

[data-lang="en"] .deposits-list ul li {
    width: 100%;
}

.experience-text {
    display: none;
}

[data-lang="ru"] .ru-version,
[data-lang="en"] .en-version {
    display: block;
}

@media (max-width: 768px) {
    .experience-content {
        width: 96%;
        padding: 3% 0;
    }

    .experience-text {
        font-size: 1.8vw;
    }

    .deposits-list > li {
        padding: 3%;
    }

    .deposits-list h3 {
        font-size: 2.2vw;
        margin-bottom: 1.2%;
    }

    .deposits-list ul li {
        width: 100%;
        font-size: 1.8vw;
    }

    [data-lang="ru"] .experience-image {
        margin-bottom: 4%;
    }
}

@media (max-width: 480px) {
    .experience-text {
        font-size: 3.2vw;
    }

    .deposits-list h3 {
        font-size: 3.6vw;
    }

    .deposits-list ul li {
        font-size: 3vw;
    }

    .deposits-list > li {
        padding: 4%;
    }
}