.advantages-section {
    margin-top: 40px;
    padding: 50px 0;
    background: #F8F9FB;
    border-radius: 8px;
    width: 100%;
    overflow: hidden;
}

.advantages-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: wrap;
}

.advantage-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    min-width: 300px;
    box-sizing: border-box;
}

.advantage-icon {
    width: 69px;
    height: 69px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-icon img {
    width: 60px;
    height: 60px;
}

.advantage-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    color: #000000;
    margin-bottom: 8px;
    text-transform: uppercase;
    margin-top: 36px;
}

.advantage-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    padding: 0 20px;
}

.advantage-text-delivery h3{
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    color: #000000;
    margin-bottom: 8px;
    text-transform: uppercase;
    margin-top: 36px;
}



.advantage-text-delivery p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    padding: 0 40px ;
}

.categories-section {
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 27px;
    color: #151E30;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.category-item {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
}

.category-icon {
    width: 69px;
    height: 69px;
    background: #F8F9FB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.category-icon img {
    width: 44px;
    height: 44px;
}

.category-content {
    flex: 1;
}

.category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    color: #000000;
    margin-bottom: 15px;
}

.category-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #000000;
}


.purchase-section {
    margin-top: 40px;
    padding: 50px 0;
    width: 100%;
}

.purchase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.purchase-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 27px;
    color: #151E30;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.purchase-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #000000;
    margin-bottom: 20px;
}

.purchase-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.purchase-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.purchase-bullet {
    width: 7px;
    height: 7px;
    border: 1px solid #151E30;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.purchase-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #000000;
    flex: 1;
}

@media screen and (max-width: 992px) {
    .advantages-container {
        justify-content: center;
    }

    .advantage-item {
        flex: 0 0 50%;
        min-width: 250px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .advantage-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .purchase-section {
        padding: 30px 0;
        margin: 30px 0;
    }

    .purchase-container {
        padding: 0 15px;
    }

    .purchase-title {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .purchase-subtitle {
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 15px;
    }

    .purchase-item {
        gap: 12px;
    }

    .purchase-text {
        font-size: 13px;
        line-height: 16px;
    }

    .purchase-bullet {
        width: 6px;
        height: 6px;
        margin-top: 4px;
    }
}