/* Общие стили для страницы О нас */
body {
    padding-top: 80px;
    background-color: #f8f9fa;
}

/* Раздел О проекте */
.about-project-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-content {
    text-align: left;
    max-width: 100%;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

/* Стили для разделов */
.about-section {
    margin-bottom: 2.5rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Стили для списков */
.about-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.about-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
}

.about-list li:before {
    content: "•";
    color: #1e3a8a;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.about-numbered-list {
    list-style: none;
    padding-left: 0;
    counter-reset: item;
    margin-bottom: 0;
}

.about-numbered-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    counter-increment: item;
}

.about-numbered-list li:before {
    content: counter(item) ".";
    color: #1e3a8a;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}



/* Раздел Команда */
.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4rem;
}

.team-member {
    text-align: center;
    padding: 1rem;
}

.team-avatar {
    width: 240px;
    height: 240px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    /*border: 4px solid #f0f0f0;*/
    position: relative;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.team-position {
    font-size: 1rem;
    color: #888;
    margin-bottom: 0;
    font-weight: 400;
}

/* Адаптивность для планшетов */
@media (max-width: 1200px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .team-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 992px) {
    .about-project-section,
    .team-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .team-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .about-content {
        text-align: center;
        margin-bottom: 3rem;
        padding-right: 1rem;
    }
    

    
    .team-member {
        margin-bottom: 2rem;
    }
}

/* Адаптивность для мобильных телефонов */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .about-project-section,
    .team-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .team-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .about-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .about-section {
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .about-list li,
    .about-numbered-list li {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0.6rem;
    }
    
    .about-content {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .team-member {
        padding: 1rem 0.5rem;
    }
    
    .team-avatar {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .team-name {
        font-size: 1.2rem;
    }
    
    .team-position {
        font-size: 0.9rem;
    }
}

/* Адаптивность для маленьких мобильных */
@media (max-width: 576px) {
    .about-project-section,
    .team-section {
        padding: 30px 0;
    }
    
    .about-title {
        font-size: 1.6rem;
    }
    
    .team-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .about-text {
        font-size: 0.95rem;
    }
    
    .about-section {
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        letter-spacing: 0.3px;
    }
    
    .about-list li,
    .about-numbered-list li {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }
    
    .about-list li {
        padding-left: 1.2rem;
    }
    
    .about-numbered-list li {
        padding-left: 1.8rem;
    }
    
    .team-member {
        padding: 0.8rem 0.5rem;
    }
    
    .team-avatar {
        width: 80px;
        height: 80px;
    }
    
    .team-name {
        font-size: 1.1rem;
    }
    
    .team-position {
        font-size: 0.85rem;
    }
} 