/* Стили для страниц партнеров */
.highlight-box {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #21a038;
    margin: 1.5rem 0;
}

.advantages-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.action-links {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e8f5e9;
    margin: 1.5rem 0;
}

.catalog-link, .shop-link {
    color: #21a038;
    font-weight: 600;
    text-decoration: none;
}

.catalog-link:hover, .shop-link:hover {
    text-decoration: underline;
}

.contact-block {
    background: #225824;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-block a {
    color: white;
}

/* Стили для изображений БЕЗ обтекания */
.image-placeholder {
    margin: 2rem 0;
    text-align: center;
    display: block;
}

.image-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

/* Классы для выравнивания изображений */
.image-left {
    text-align: left;
}

.image-left img {
    margin-left: 0;
    margin-right: auto;
}

.image-right {
    text-align: right;
}

.image-right img {
    margin-left: auto;
    margin-right: 0;
}

.image-center {
    text-align: center;
}

.image-center img {
    margin-left: auto;
    margin-right: auto;
}

/* Ограничение максимальной ширины изображения */
.image-medium img {
    max-width: 70%;
}

.image-small img {
    max-width: 50%;
}

.image-large img {
    max-width: 90%;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.features-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #21a038;
    font-weight: bold;
}

/* Адаптивность */
@media (max-width: 768px) {
    .image-medium img,
    .image-small img,
    .image-large img {
        max-width: 100%;
    }
}