/* Импорт шрифта Inter для современного вида */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

/* Базовые стили */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    background-color: #f4f7f6; /* Светлый фон */
    color: #333; /* Основной цвет текста */
}

.info-icon {
    background: #2ac7fdb5; color: white; border-radius: 50%; 
width: 19px; height: 19px; 
display: flex; align-items: center; justify-content: center; 
font-size: 13px; font-weight: bold; cursor: help; transition: all 0.2s;
margin-top: -2px;
}

.func-with-tooltip {
    display: flex;
   color: #333;
   margin: 0 0 0px 0;
   font-size: 18px;
}

.tooltip-container:hover .function-info-tooltip {
    display: block!important;
}

.function-info-tooltip {
   position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); background: #333; color: white; padding: 12px 16px; border-radius: 6px; font-size: 13px; width: 300px; max-width: 300px; z-index: 1000; display: none; box-shadow: 0 4px 15px rgba(0,0,0,0.3); text-align: left; line-height: 1.5; white-space: normal; word-wrap: break-word; margin-bottom: 8px;
}

.info-tooltip-bottom {
   style="position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-top: 8px solid #333;
}

.func {
display: flex; justify-content: space-between; align-items: center; 
padding: 20px 20px 18px 20px; border: 1px solid #e9ecef; 
border-radius: 8px; background: white; position: relative; 
border-left: 4px solid #00b3ff4f; margin-bottom: 20px
}

.func h3 {
   color: #333;
   margin: 0 0 0px 0;
   font-size: 18px;
}

.func p {
padding-left: 3em;padding-top: 1em;font-size: 0.9em;
}

/* Контейнер для центрирования контента */
.container {
    max-width: 960px;
    margin: 0 auto;
    #padding: 20px;
}

/* --- Шапка (Hero) --- */
.hero {
    text-align: center;
    padding: 40px 50px;
    background-color: #1a1a2e; /* Темно-синий фон */
    color: #ffffff;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 2.3	rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #e0e0e0;
}

.hero .intro {
    font-size: 1.15rem;
    color: #c0c0c0;
    max-width: 700px;
    margin: 0 auto 0px auto;
}

.hero-video {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 3px solid #333;
}

/* --- Секции контента --- */
.content-section {
    background-color: #ffffff;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.content-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e; /* Темно-синий заголовок */
    margin-bottom: 20px;
    border-bottom: 3px solid #4a90e2; /* Синий акцент */
    padding-bottom: 10px;
}

.content-section p {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.content-section strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* Стили для списков */
.content-section ul {
    margin: 15px 0 20px 20px;
    padding-left: 15px;
}

.content-section li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    padding-left: 5px;
}

/* Список преимуществ с "галочками" */
.advantages-list {
    list-style-type: none;
    padding-left: 0;
}

.advantages-list li {
    position: relative;
    padding-left: 35px; /* Место для галочки */
    #font-size: 1.1rem;
    #font-weight: 700;
    color: #2c5282; /* Темно-голубой */
}

.advantages-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
}

/* Секция "Команда" */
.team-member {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.team-photo {
    border-radius: 50%;
    width: 185px;
    height: 185px;
    object-fit: cover;
    border: 4px solid #2ac7fd;/*#4a90e2;*/
}

.team-member div {
    flex: 1;
}

/* Секция "Заключение" */
.conclusion-section {
    background-color: #1a1a2e;
    color: #ffffff;
    text-align: center;
}

.conclusion-section p {
    font-size: 1.2rem;
    #font-weight: 700;
}

.conclusion-section strong {
    color: white;
}

/* --- Секция "Призыв к действию" (CTA) --- */
.cta-section {
    background-color: #4a90e2; /* Яркий синий */
    color: white;
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.cta-section h2 {
    color: white;
    border-bottom: none;
    font-size: 2rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #1a1a2e;
    padding: 15px 35px;
    margin: 0px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* --- Футер --- */
.footer {
    text-align: center;
    padding: 10px 20px;
    background-color: #1a1a2e; /* Темно-синий */
    color: #e0e0e0;
    #margin-top: 30px;
    border-radius: 12px 12px 0 0;
}

.footer h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer p {
    #margin-bottom: 15px;
    line-height: 1.8;
}

.footer a {
    color: #4a90e2; /* Яркий синий */
    text-decoration: none;
    font-weight: 700;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .copyright {
    #margin-top: 30px;
    font-size: 0.9rem;
    color: #888;
}

/* --- Адаптивность --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }

    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-photo {
        width: 120px;
        height: 120px;
    }

    .container {
        padding: 10px;
    }

    .content-section {
        padding: 20px;
    }
}