/* ============================================
   СТИЛІ ДЛЯ СТОРІНКИ "ПРО КОМПАНІЮ"
   ============================================ */

/* Блок "Про компанію" */
.about-block {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 30px;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.about-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin: 0 0 20px 0;
}

.about-block strong {
    color: #1a73e8;
}

/* Підзаголовок */
.about-subtitle {
    text-align: center;
    margin: 30px 0 20px 0;
}

.about-subtitle span {
    font-size: 20px;
    font-weight: 700;
    color: #1a2c3e;
    background: rgba(26, 115, 232, 0.10);
    padding: 8px 24px;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid rgba(26, 115, 232, 0.2);
}

/* Сітка переваг */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.about-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 12px 16px;
    border-left: 3px solid #1a73e8;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.about-item .about-icon {
    font-size: 18px;
    color: #1a73e8;
}

/* Футер блоку */
.about-footer {
    background: #f0f4f8;
    border-radius: 12px;
    padding: 18px 22px;
    border-left: 4px solid #1a73e8;
}

.about-footer p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.about-footer strong {
    color: #1a73e8;
}

.about-footer .block {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #555;
}

/* Блок "Команда" */
.team-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px 35px;
    margin: 40px 0;
    border: 1px solid #eee;
}

.team-block__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.team-block__image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-block__image-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-block__image-wrapper img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.team-block__image-wrapper img:hover {
    transform: scale(1.02);
}

.team-block__content {
    flex: 1.5;
    min-width: 280px;
}

.team-block__title {
    font-size: 26px;
    font-weight: 700;
    color: #1a2c3e;
    margin: 0 0 15px 0;
    padding-left: 16px;
    border-left: 4px solid #1a73e8;
    line-height: 1.3;
}

.team-block__text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.team-block__text strong {
    color: #1a73e8;
}

.team-block__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 25px;
    margin-bottom: 25px;
}

.team-block__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.team-block__feature .icon {
    font-size: 20px;
}

.team-block__feature .text {
    font-size: 15px;
    color: #333;
}

.team-block__bottom-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

/* Адаптація для мобільних */
@media (max-width: 600px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .team-block__features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .team-block {
        padding: 25px 18px;
    }
    .team-block__inner {
        flex-direction: column;
        gap: 25px;
    }
    .team-block__title {
        font-size: 22px;
    }
}