/* Стили для страницы "О компании" */

.about-info {
    margin-top: 20px;
    display: flex;
    border-radius: 25px;
    overflow: hidden;
}

.about-info__left,
.about-info__right {
    width: 50%;
}

.about-info__left {
    background: #f57921;
    padding: 46px;
    color: var(--white);
}

.about-info__left h1 {
    color: inherit;
    font-weight: 500;
    font-size: 36px;
}

.about-info__left p {
    color: inherit;
    font-size: 18px;
    line-height: 140%;
}

.about-info__description {
    margin-top: 24px;
}

.about-info__right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0e3872;
    padding: 40px;
}

.about-info__right img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.about-products {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-products__item {
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
}

.about-products__item .header {
    background: var(--primary);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
}

.about-products__item--orange .header {
    background: #f57921;
}

.about-products__item .header .icon {
    min-width: 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 10px;
    flex-shrink: 0;
}

.about-products__item .header .icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.about-products__item .header h2 {
    width: 100%;
    font-weight: 500;
    color: var(--white);
    font-size: 18px;
    margin: 0;
    flex-grow: 1;
}

.about-products__item .header .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: max-content;
    width: max-content;
    height: 32px;
    border-radius: 32px;
    background: var(--white);
    padding: 0 12px;
    color: #45556c;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.about-products__item .header .badge span {
    width: 8px;
    height: 8px;
    display: flex;
    border-radius: 50%;
    background: #90a1b9;
}

.about-products__item ul {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    list-style: none;
}

.about-products__item ul li {
    color: #314158;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.about-products__item ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #314158;
    font-size: 20px;
    line-height: 1;
}

.about-products__item--orange ul li::before {
    color: #f57921;
}

.about-product-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    cursor: pointer;
}

.about-product-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

.about-products__item--orange .about-product-link:hover {
    color: #f57921;
}

@media screen and (max-width: 992px) {
    .about-products {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .about-info {
        flex-direction: column-reverse;
        gap: 40px;
        border-radius: 14px;
    }
    
    .about-info__left,
    .about-info__right {
        width: 100%;
    }
    
    .about-info__left {
        background: transparent;
        color: var(--black);
        padding: 0;
    }
    
    .about-info__left h1 {
        color: var(--black);
    }
    
    .about-info__left p {
        color: var(--black);
    }
    
    .about-info__right {
        border-radius: 14px;
        padding: 40px;
    }
}

