/* Стили для страницы "О нас" */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

h1, h2, h3 {
    color: #2F2FA2;
}

.team-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.team-member {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
}

.roadmap {
    background-color: #f0f0f0; /* Светлый фон для роадмапа */
    border-radius: 10px; /* Закругленные углы */
    padding: 20px; /* Отступы внутри */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Тень для глубины */
}

.roadmap-step {
    display: flex;
    align-items: center;
    position: relative;
    margin: 20px 0;
}

.circle {
    width: 30px;
    height: 30px;
    background-color: transparent; /* Прозрачный фон */
    border: 6px solid #2F2FA2; /* Полый кружок */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-right: 10px; /* Промежуток между кружком и текстом */
}

.line {
    width: 6px;
    height: 40px;
    background-color: #2F2FA2;
    position: absolute;
    top: 30px;
    left: 12px;
    z-index: 0;
}

.roadmap-step:last-child .line {
    display: none;
}

.roadmap-step h3 {
    font-size: 1.2em; /* Увеличенный размер шрифта */
    margin: 10px 0; /* Отступы сверху и снизу */
}

.roadmap-description {
    color: #555; /* Более светлый цвет для описания */
    font-style: italic; /* Курсив для описания */
}

.completed {
    background: linear-gradient(135deg, rgb(15, 236, 26), #11a11f); /* Яркий градиент */
    border: 6px solid #2F2FA2; /* Сохранение границы */
}

.in-progress {
    background: linear-gradient(135deg, #f0dc52, #ffb700); /* Желтый градиент */
    border: 6px solid #2F2FA2; /* Сохранение границы */
}

.not-started {
    background: linear-gradient(135deg, #fa5335, #fe3a20); /* Красный градиент */
    border: 6px solid #2F2FA2; /* Сохранение границы */
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #2F2FA2;
    color: white;
} 