/* Стили для страницы "О нас" */

/* Заголовок страницы */
.page-header {
    margin: 40px 0;
    text-align: center;
}

.page-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.brand-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* О компании */
.about-section {
    margin: 40px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 16px;
}

.about-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Наша команда */
.team-section {
    margin: 60px 0;
    
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.team-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-text);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--border-color);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.member-position {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

.member-specialty {
    font-size: 14px;
    color: var(--secondary-color);
}

/* Декоративная секция */
.decorative-section {
    margin: 60px 0;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.decorative-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .about-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .member-photo {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .page-header {
        margin: 20px 0;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .about-section,
    .team-section {
        margin: 40px 0;
    }
    
    .divider {
        margin: 40px 0;
    }
    
    .team-description {
        margin-bottom: 30px;
    }
}