@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #1C1C1C;

    /* Дозволяємо прокручування по горизонталі, якщо контент вилазить */




}

body,
html {
    /* Не дає нічому вилазити за межі ширини екрана */
    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: #1C1C1C;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ========================================= */
/* 1. БАЗОВА ДЕСКТОПНА КОНФІГУРАЦІЯ */
/* ========================================= */

.header {
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 35px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.logo-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo-img {
    max-width: 300px;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-left: 5px;
    color: #1C1C1C;
}

/* Приховуємо бургер та його логіку на десктопі */
.menu-toggle-input,
.menu-toggle {
    display: none;
}

/* Контейнер меню/кнопок на десктопі */
.menu-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-nav ul {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    display: flex;
    gap: 12px;
}

.main-nav a {
    font-weight: 700;
    padding: 10px 10px;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    height: 2px;
    background-color: #0e38b1;
    width: 0;
    transition: width 0.3s ease-out;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: #0C3EAA;
}

.button-consultation {
    font-family: 'Montserrat', sans-serif;
    background-color: #1D4ED8;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    white-space: nowrap;
    transition: 500ms ease;
}

.button-consultation:hover {
    background-color: #0C3EAA;
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1D4ED8;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 200ms ease;
}

.social-icon:hover {
    background-color: #0C3EAA;
    transform: scale(1.1);
}

.social-icon img {
    width: 20px;
    height: 20px;
    transition: transform 200ms ease;
}

.social-icon:hover img {
    transform: scale(1.1);
}

.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}















.main-text {
    flex: 1;
    max-width: 40%;
    /* Обмежуємо ширину, щоб слова переносилися як на макеті */
}

.main-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1C1C1C;
    text-align: left;
    font-size: 48px;
    /* Збільшено для відповідності макету */
    line-height: 1.1;
    /* Щільний інтервал */
    margin-bottom: 20px;
    max-width: 400px;
}

.main-text p {
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    /* Звичайний, як на макеті */
    color: #1C1C1C;
    font-size: 16px;
    /* Зменшено з 20px, щоб текст помістився */
    line-height: 1.6;
    margin-bottom: 15px;
}

.icf-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Відступ між галочкою та текстом */
    margin-bottom: 10px;
}

.icf-badge .check-mark img {
    width: 20px;
    /* Розмір галочки */
    height: 20px;
    display: block;
    /* Важливо для вирівнювання */
}

.icf-badge p {
    margin-bottom: 0;
    font-weight: 500;
}



.coach-photo {

    margin-top: 0;
    /* ЗМІНА: Збільшуємо розмір фото */

    width: 45%;

    /* Збільшуємо відносну ширину */

    /* ВАЖЛИВО: Опускаємо фотографію вниз, щоб вона починалася нижче кнопки */

    /* Збільшено! Експериментуй (120px-160px) */

    /* ДОДАТКОВО: Якщо фото обрізається, це може допомогти */
    position: relative;

}

.section-consult-button {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    background-color: #1D4ED8;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    transition: 500ms ease;
}

.section-consult-button:hover {
    background-color: #0C3EAA;
    transform: scale(1.1);
}

.section-consult-button img {
    width: 20px;
    /* Розмір стрілки */
    height: 20px;
}

.about-section {
    padding: 0;
    background-color: white;
}

.about-content {
    padding: 0 20px;
    align-items: flex-end;
}





.work-results-section {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #e5e5e5;

}

.work-results {
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    flex-direction: column;
    background-color: #e5e5e5;
}

.work-results img {
    width: 35px;
    /* Ширина зображення стрілки */
    height: 35px;
    /* Висота зображення стрілки */
    object-fit: contain;
    /* Зберігає пропорції, якщо зображення іншої форми */
    flex-shrink: 0;
    /* Запобігає стисканню зображення */

    /* Невеликий зсув вниз, якщо потрібно для візуального центрування */
    margin-top: 0;
    /* Видаляємо будь-який вертикальний зсув */
    margin-bottom: 0;

    /* Якщо це символ (span), переконайся, що line-height не заважає */
    line-height: 1.5;
    vertical-align: top;

}


.work-results h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 20px;
}

.work-results p {
    display: flex;
    align-items: flex-start;
    /* Вирівнює верхній край стрілки з текстом */
    gap: 15px;
    /* Відступ між стрілкою та текстом */
    margin-bottom: 25px;
    text-align: left;

    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    color: #333333;
}





.for-chom-section {
    padding-top: 80px;
    padding-bottom: 30px;
    background-color: #fff;

}

.for-chom {
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    flex-direction: column;
}


.benefits-list img {
    width: 50px;
    /* Ширина зображення стрілки */
    height: 50px;
    /* Висота зображення стрілки */
}

.for-chom h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 10px;
}

.benefits-list h3 {
    display: flex;
    /* Робимо h3 гнучким контейнером */
    align-items: flex-start;
    /* Вирівнюємо вміст по верхньому краю */
    gap: 10px;
    /* Додаємо невеликий відступ між галочкою і текстом */
    /* ... інші стилі h3 ... */
    margin-bottom: 5px;
    /* Зменшимо відступ, щоб P був ближче */
}

.for-chom .h3-for-whom {
    color: #5C607C;
}



.for-chom h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 35px;
    text-align: left;
}


.for-chom p {
    padding-left: 60px;
    margin-bottom: 25px;
    text-align: left;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 500;
    font-style: italic;

    color: #5C607C;
}









.about-me-section {
    padding-top: 80px;
    padding-bottom: 30px;
    background-color: #e5e5e5;
}

.about-me {
    background-color: #e5e5e5;
    margin: 0 auto;
    padding: 0 20px;
}

.text-about-me h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 55px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 60px;
}

.text-about-me p {
    text-align: left;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #4E5169;
}

.text-about-me img {
    width: 50px;
    height: 50px;
}

.text-about-me h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 50px;
    font-size: 24px;
    color: #333333;
    font-weight: 600;
    align-items: flex-start;
    /* Вирівнюємо вміст по верхньому краю */
    gap: 10px;
    display: flex;
}

.cert-img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    margin-left: 20px;
    border-radius: 20px;
    width: 50%;
    height: auto;
}







/* ================================================= */
/* 1. БАЗОВІ СТИЛІ ТА ВИПРАВЛЕННЯ ВИРІВНЮВАННЯ СЕКЦІЇ */
/* ================================================= */

.coach-with-me-section {
    padding-top: 90px;
    padding-bottom: 90px;

    /* Якщо потрібен світлий фон */
}

.container.coach-with-me {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;

    /* ВИПРАВЛЕННЯ: ЗАБЕЗПЕЧУЄМО ВЕРТИКАЛЬНИЙ ПОРЯДОК ТА ЦЕНТРУВАННЯ */
    display: flex;
    flex-direction: column;
    /* H2, P, та .coach-with-list будуть йти один під одним */
    align-items: center;
    /* Центрує їх по горизонталі */

    text-align: center;
    /* Центрування всього тексту за замовчуванням */
}

.coach-with-me h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 55px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 25px;
}

.coach-with-me .intro-text {
    /* Обмежуємо ширину, щоб текст не розтягувався на весь екран */
    margin-left: auto;
    margin-right: auto;

    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #5C607C;
    margin-bottom: 80px;
    /* Додатковий відступ до списку */
}


/* ================================================= */
/* 2. FLEXBOX ДЛЯ ТРЬОХ КОЛОНОК */
/* ================================================= */


.coach-with-list {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    /* Проміжок між трьома колонками */
    width: 100%;
    /* Займає всю доступну ширину контейнера */

}

.coach-item {
    flex: 1;
    /* FLEXBOX ДЛЯ ВИРІВНЮВАННЯ ІКОНКИ ТА ТЕКСТУ */
    display: flex;
    align-items: flex-start;
    /* Вирівнюємо по верхньому краю */
    gap: 15px;
    /* Відстань між стрілкою та текстом */
    text-align: left;
    /* Текст колонки має вирівнюватися по лівому краю */
}

/* ================================================= */
/* 3. СТИЛІ ІКОНКИ ТА ТЕКСТУ */
/* ================================================= */

.coach-item img {
    width: 50px;
    /* Розмір стрілки */
    height: 50px;
    flex-shrink: 0;
    /* Запобігаємо стисненню іконки */
    margin-top: 5px;
}

.coach-item .text-content {
    flex: 1;
}

.coach-item .text-content h3 {
    display: block;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 40px;
}

.coach-item .text-content p {
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    color: #5C607C;
    margin-top: 0;
}

/* ================================================= */
/* 4. АДАПТИВНІСТЬ ДЛЯ ТЕЛЕФОНУ */
/* ================================================= */

@media (max-width: 768px) {
    .coach-with-me-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .coach-with-me .intro-text {
        font-size: 18px;
    }

    .coach-with-me h2 {
        font-size: 34px;
    }

    .coach-with-list {
        flex-direction: column;
        /* Колонки стають вертикальним списком */
        gap: 30px;
        margin-top: 30px;
    }

    .coach-item .text-content h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .coach-item .text-content p {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

@media (max-width: 860px) {
    .coach-with-me-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .coach-with-me .intro-text {
        font-size: 18px;
    }

    .coach-with-me h2 {
        font-size: 34px;
    }

    .coach-with-list {
        flex-direction: column;
        /* Колонки стають вертикальним списком */
        gap: 30px;
        margin-top: 30px;
    }

    .coach-item .text-content h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .coach-item .text-content p {
        font-size: 16px;
        margin-bottom: 40px;
    }
}



.for-chom .h2-1 {

    margin-bottom: 60px;
}








.cost-section {
    background-color: #e5e5e5;
    padding-top: 60px;
    padding-bottom: 90px;

    /* Якщо потрібен світлий фон */
}

.container.cost {
    background-color: #e5e5e5;
    margin: 0 auto;

    padding: 0 20px;

    /* ВИПРАВЛЕННЯ: ЗАБЕЗПЕЧУЄМО ВЕРТИКАЛЬНИЙ ПОРЯДОК ТА ЦЕНТРУВАННЯ */
    display: flex;
    flex-direction: column;
    /* H2, P, та .coach-with-list будуть йти один під одним */
    align-items: center;
    /* Центрує їх по горизонталі */

    text-align: center;
    /* Центрування всього тексту за замовчуванням */
}

.cost h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 55px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 25px;
}

.cost .intro-text {
    /* Обмежуємо ширину, щоб текст не розтягувався на весь екран */
    margin-left: auto;
    margin-right: auto;

    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #5C607C;
    margin-bottom: 50px;
    /* Додатковий відступ до списку */
}


/* ================================================= */
/* 2. FLEXBOX ДЛЯ ТРЬОХ КОЛОНОК */
/* ================================================= */

.cost-list {
    display: flex;


    /* Проміжок між трьома колонками */
    /* Займає всю доступну ширину контейнера */
    justify-content: center;
    /* Центруємо всі три картки */
    gap: 60px;
    width: 100%;

    align-items: center;


}

.cost-item .price-session .price-underline {
    text-decoration: underline;
    color: #333333;
}

.cost-item .price-session {
    font-size: 18px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-style: italic;
    color: #333333;
    margin-bottom: 20px;
}

.cost-item .session-1 {
    font-size: 22px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #333333;
    margin-bottom: 20px;
}

.cost-item .session-2 {
    font-size: 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #333333;
    margin-bottom: 20px;
}

.cost-item .session {
    font-size: 22px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #333333;
    margin-bottom: 20px;
}

.cost-item {
    max-width: 30%;
    flex-basis: 300px;

    /* Задаємо бажану базову ширину */
    flex-grow: 0;
    /* ЗАБОРОНЯЄМО КАРТЦІ РОЗТЯГУВАТИСЯ! */
    flex-shrink: 0;


    height: 450px;
    flex: 1;
    /* FLEXBOX ДЛЯ ВИРІВНЮВАННЯ ІКОНКИ ТА ТЕКСТУ */
    background-color: #fff;
    /* Белый фон */
    border-radius: 25px;
    /* Скругленные углы */
    padding: 30px 20px;
    /* Внутренние отступы */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
    /* Відстань між стрілкою та текстом */
    text-align: center;
    /* Текст колонки має вирівнюватися по лівому краю */
}

/* ================================================= */
/* 3. СТИЛІ ІКОНКИ ТА ТЕКСТУ */
/* ================================================= */



.cost-item h3 {
    display: block;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 20px;
}

.cost-item p {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    color: #333333;
    margin-bottom: 20px;
}














/* ========================================= */
/* 1. СЕКЦІЯ ЦИТАТИ (Quote Section) */
/* ========================================= */

.quote-section {
    padding-top: 80px;
    padding-bottom: 80px;

    /* Легкий фон, щоб виділити блок */
}

.quote-container {
    /* Використовуємо твій основний клас контейнера для центрівки та відступів */
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.quote-block {

    /* Обмежуємо ширину цитати для зручності читання */
    margin: 0 auto;
    /* Центруємо сам блок цитати всередині контейнера */
    padding-left: 70px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    padding-top: 30px;
    padding-bottom: 30px;
}

/* Створення вертикальної лінії зліва */
.quote-block::before {
    content: '';
    position: absolute;

    opacity: 0.3;
    top: 0;
    bottom: 0;
    width: 1.5px;
    background-color: #000;
    left: 0px;
    /* Розміщуємо лапки ліворуч від блоку */

}

/* Створення великих лапок */
.quote-block::after {
    content: '”';
    font-size: 80px;
    line-height: 0.1;
    left: 45px;
    bottom: 0;
    color: #000;
    position: absolute;
    left: 0;
    top: 0;
}

/* Стиль основного тексту цитати */
.quote-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 15px;
    font-style: italic;
    font-weight: 400;
    text-align: left;
}

/* Стиль автора */
.quote-author {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    text-align: left;
    font-style: italic;
    margin-bottom: 0;
    margin-top: 10px;

}







/* ========================================= */
/* СЕКЦИЯ ЗАПИСИ (Sign-up Section) */
/* ========================================= */

.sign-section {
    padding-top: 85px;
    padding-bottom: 85px;
    background-color: #1e1e1e;
    /* Светлый фон для контраста */
}

.container.signup {

    max-width: 500px;
    /* Ограничиваем ширину контента */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    /* Элементы идут вертикально */
    align-items: center;
    /* Центрируем по горизонтали */
    text-align: center;
}

.container.signup h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 15px;
}

.button-wrapper {
    /* Важно: заставляет <a> занимать всю ширину */
    width: 100%;
    /* Ограничиваем максимальную ширину обертки */
    margin: 0 auto;
    /* Центрируем обертку */
    margin-bottom: 15px;
    /* Заменяем margin-bottom на самой кнопке */
}

.container.signup p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #5C607C;
    line-height: 1.4;
    margin-bottom: 30px;
}

/* Стиль для кнопок-мессенджеров */
.container.signup button {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Центрируем содержимое кнопки */

    width: 100%;
    /* Максимальная ширина кнопки */
    border: none;
    padding: 12px 25px;
    /* Отступ между кнопками */


    border-radius: 25px;
    background-color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;

    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.container.signup button:hover {
    background-color: #1c1c1c;

}

.container.signup button img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}











/* ========================================= */
/* Адаптивность */
/* ========================================= */
@media (max-width: 1124px) {
    .sign-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .container.signup button img {
        margin-right: 15px;
    }

    .container.signup {
        max-width: 500px;
        /* Знімаємо фіксоване обмеження 500px, займаємо 90% екрану */
        /* Гарантуємо, що він використовує 100% від цих 90% */
        padding: 15px 10px;
        /* Додаткові внутрішні відступи для повітря */
    }




    .container.signup h3 {
        font-size: 26px;
    }

    .container.signup p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .container.signup button {
        padding: 10px 20px;
        font-size: 16px;
    }
}

@media (max-width: 820px) {
    .sign-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .container.signup button img {
        margin-right: 15px;
    }

    .container.signup {
        max-width: 500px;
        /* Знімаємо фіксоване обмеження 500px, займаємо 90% екрану */
        /* Гарантуємо, що він використовує 100% від цих 90% */
        padding: 30px 20px;
        /* Додаткові внутрішні відступи для повітря */
    }
}

@media (max-width: 768px) {
    .sign-section {
        position: relative;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .container.signup button img {
        margin-right: 15px;
    }

    .container.signup {
        max-width: 400px;
        /* Знімаємо фіксоване обмеження 500px, займаємо 90% екрану */
        /* Гарантуємо, що він використовує 100% від цих 90% */
        padding: 15px 10px;
        /* Додаткові внутрішні відступи для повітря */
    }




    .container.signup h3 {
        font-size: 26px;
    }

    .container.signup p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .container.signup button {
        padding: 10px 20px;
        font-size: 16px;
    }

}


/* ========================================= */
/* 1. ОСНОВНЫЕ СТИЛИ ФУТЕРА */
/* ========================================= */

.main-footer {
    background-color: #1E1E1E;
    /* Темный фон, как на скриншоте */
    color: #ffff;
    /* Белый текст */
    padding-top: 50px;
    padding-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-content {
    background-color: #1E1E1E;
    /* Используем твой базовый класс .container, если он не имеет display: flex; */
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-footer h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-contact p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #ffff;
}

/* ========================================= */
/* 2. ИКОНКИ И РАЗДЕЛИТЕЛЬ */
/* ========================================= */

/* Переопределяем social-links для футера, чтобы разместить иконки вертикально */
.footer-social {
    display: flex;
    gap: 15px;
    /* Расстояние между иконками */
    margin-bottom: 0;
}

/* Переопределяем стиль иконки, если он был у тебя */
.footer-social .social-icon {
    /* На скриншоте иконки просто черные/белые, без круглой синей заливки */
    background: none;
    width: 30px;
    height: 30px;
    /* Убедись, что твои SVG/PNG иконки белого цвета */
}

.footer-social img {
    /* Если твои иконки цветные, этот фильтр сделает их белыми */
    filter: brightness(0) invert(1);
    width: 30px;
    height: 30px;
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: #444444;
    /* Серый разделитель */
    margin: 30px 0 15px 0;
}

.footer-copyright {
    font-size: 10px;
    color: #fff;
    text-align: right;
    /* Копирайт справа, как на скриншоте */
    padding-right: 20px;
}


/* ========================================= */
/* КНОПКА "НАГОРУ" */
/* ========================================= */
.scroll-top-button {
    /* 1. Позиціонування */
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;

    /* 2. Вигляд */
    display: none;
    width: 70px;
    height: 70px;
    background-color: #1D4ED8;
    border-radius: 50%;

    /* 3. Тінь */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);

    /* 4. Центрування */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.scroll-top-button:hover,
.scroll-top-button:focus,
.scroll-top-button:active {
    background-color: #0C3EAA;
    transform: scale(1.05);
    outline: none;
}

.scroll-top-button:visited {
    /* Гарантуємо, що відвідана кнопка виглядає так само, як і звичайна */
    background-color: #1D4ED8;
    /* Колір тексту, якщо він є */
}

.scroll-top-button img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    /* Зробимо стрілку білою */


    /* Поворот на -90deg (якщо твоя стрілка дивиться вправо, щоб дивилася вгору) */
    transform: rotate(-90deg);
    transition: transform 0.3s;
}

/* Скасовуємо будь-яку реакцію на :hover на пристроях, які не мають миші */
@media (hover: none) and (pointer: coarse) {
    .scroll-top-button:hover {
        /* Встановлюємо основний колір, скасовуючи ефект hover */
        background-color: #1D4ED8 !important;
        transform: none !important;
    }
}


/* Адаптивність для мобільних пристроїв */
@media (max-width: 768px) {
    .scroll-top-button {
        width: 50px;
        height: 50px;
        bottom: 30px;
        right: 20px;
    }

    .scroll-top-button img {
        width: 30px;
        height: 30px;
    }
}



/* ========================================= */
/* 3. АДАПТИВНОСТЬ */
/* ========================================= */

@media (max-width: 768px) {
    .main-footer {
        padding-top: 30px;
    }

    .footer-content {
        text-align: left;
        padding: 0 20px;
    }

    .main-footer h3 {
        font-size: 16px;
    }

    .footer-contact p {
        font-size: 10px;
    }

    /* Центрируем социальные иконки на мобильном */
    .footer-social {
        justify-content: center;
        margin-right: 10px;
    }

    .footer-copyright {
        font-size: 8px;
        text-align: center;
        padding-right: 0;
    }
}


@media (max-width: 820px) {
    .main-footer {
        padding-top: 30px;
    }

    .footer-content {
        text-align: left;
        padding: 0 20px;
    }

    .main-footer h3 {
        font-size: 16px;
    }

    .footer-contact p {
        font-size: 10px;
    }

    /* Центрируем социальные иконки на мобильном */
    .footer-social {
        justify-content: center;
    }

    .footer-copyright {
        font-size: 8px;
        text-align: center;
        padding-right: 0;
    }
}







/* ================================================= */
/* 4. АДАПТИВНІСТЬ ДЛЯ ТЕЛЕФОНУ */
/* ================================================= */

@media (max-width: 768px) {
    .cost-section {
        padding-top: 50px;
        padding-bottom: 50px;

    }

    .cost-item {
        max-width: 300px;
    }

    .cost .intro-text {
        font-size: 18px;
    }

    .cost h2 {
        font-size: 34px;
    }

    .cost-list {
        width: 100%;
        flex-direction: column;
        /* Колонки стають вертикальним списком */
        gap: 30px;

        margin-top: 30px;
    }

    .cost-item {
        height: auto;
        max-height: 500px;
        /* <--- ФІКСОВАНА ВИСОТА! */
        flex: 1;
        /* <--- Розтягує по горизонталі */
        /* ... */
    }

    .cost-list .cost-item h3 {
        font-size: 40px;
        margin-bottom: 20px;
    }


}


@media (max-width: 860px) {
    .cost-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .cost .intro-text {
        font-size: 18px;
    }

    .cost h2 {
        font-size: 34px;
    }

    .cost-item {
        height: auto;
        max-height: 550px;
        text-align: center;
        /* <--- ФІКСОВАНА ВИСОТА! */
        flex: 1;
        /* <--- Розтягує по горизонталі */
        /* ... */
    }

    .cost-list {

        /* Колонки стають вертикальним списком */
        gap: 30px;
        margin-top: 30px;
    }

    .cost-item h3 {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .cost-item .session-2 {
        font-size: 20px;
    }

    .cost-item p {
        font-size: 16px;
        margin-bottom: 40px;
    }


}

@media (max-width: 1124px) {
    .cost-list {
        gap: 30px;
    }



    .cost-item {
        display: flex;
        /* 1. Робимо контейнер гнучким */
        flex-direction: column;
        /* 2. Розташовуємо елементи вертикально */
        justify-content: space-between;
        text-align: center;
        /* 3. **Ключове:** Розтягує вміст, притискаючи верхній елемент до верху, а нижній (ціну) до низу. */
        height: 550px;
    }

    .cost-item .session-2 {
        font-size: 20px;
    }

}

/* ========================================= */
/* 2. АДАПТИВНІСТЬ ЦИТАТИ */
/* ========================================= */

@media (max-width: 768px) {
    .quote-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .quote-block {
        padding-left: 40px;
        /* Зменшуємо відступ */
    }

    .quote-block::before {
        left: 15px;
        width: 3px;
    }

    .quote-block::after {
        font-size: 60px;
        left: -5px;
        /* Зсуваємо, щоб краще помістилося */
    }

    .quote-text {
        font-size: 16px;
    }

    .quote-author {
        font-size: 14px;
    }
}






/* ========================================= */
/* 2. АДАПТИВНІ ПРАВИЛА ТА БУРГЕР */
/* ========================================= */


@media (max-width: 1124px) {

    .container {
        padding: 25px 20px;
        /* Зменшуємо padding */
    }

    .logo-img {
        max-width: 180px;
        /* Трохи зменшуємо лого */
    }

    .menu-content-wrapper {
        gap: 10px;
    }

    .tagline {
        font-size: 14px;
    }

    .main-nav ul {
        gap: 12px;
        /* Абсолютний мінімум відстані */
        flex-shrink: 1;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .main-nav a {
        padding: 5px 3px;
        /* Мінімум повітря навколо слів */

        /* Дуже малий шрифт */
        white-space: nowrap;
        flex-shrink: 1;
        min-width: 0;
    }

    .coach-photo {

        margin-top: 0;
        /* ЗМІНА: Збільшуємо розмір фото */

        width: 55%;
        height: auto;
        /* Збільшуємо відносну ширину */

        /* ВАЖЛИВО: Опускаємо фотографію вниз, щоб вона починалася нижче кнопки */

        /* Збільшено! Експериментуй (120px-160px) */

        /* ДОДАТКОВО: Якщо фото обрізається, це може допомогти */
        position: relative;

    }

    .about-content {
        align-items: flex-end;
        padding-bottom: 0;

        /* Текст зверху, фотографія знизу */

        /* Вся секція вирівняна по лівому краю */
        gap: 20px;
        /* Відступ між текстом та фото */
    }

    .about-me-section {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .about-me {
        max-width: 100%;
        display: flex;
        align-items: flex-start;
        /* Прибираємо внутрішній padding, який конфліктує */



        /* Вирівнюємо весь вміст зліва */

        margin: 0 auto;

        text-align: start;
        flex-direction: column;
    }

    .cert-img {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        margin: 0 0;
        /* ЗМІНА: Збільшуємо розмір фото */

        width: 100%;
        height: auto;
        align-items: center;
        /* Збільшуємо відносну ширину */

        /* ВАЖЛИВО: Опускаємо фотографію вниз, щоб вона починалася нижче кнопки */

        /* Збільшено! Експериментуй (120px-160px) */

        /* ДОДАТКОВО: Якщо фото обрізається, це може допомогти */

    }

    .section-consult-button {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 860px) {

    .container {
        padding: 25px 10px;
    }

    /* ЛОГОТИП: РОБИМО МАКСИМАЛЬНО МАЛИМ І НЕСТИСКАЮЧИМ */
    .logo-img {
        max-width: 120px;
        /* Сильно зменшуємо для звільнення місця */
    }

    .tagline {
        font-size: 11px;
        /* Дуже малий шрифт */
        white-space: nowrap;
        flex-shrink: 1;
        min-width: 0;
    }

    /* 1. КОНТЕЙНЕР УСІХ ПРАВИХ ЕЛЕМЕНТІВ */
    .menu-content-wrapper {
        gap: 8px;
        /* Мінімізуємо загальний відступ */
    }

    /* 2. МЕНЮ: МІНІМАЛЬНИЙ ШРИФТ ТА ВІДСТУП */
    .main-nav ul {
        gap: 4px;
        /* Абсолютний мінімум відстані */
    }

    .main-nav a {
        padding: 5px 3px;
        /* Мінімум повітря навколо слів */
        font-size: 12px;
        /* Дуже малий шрифт */
    }

    /* 3. КНОПКА */
    .button-consultation {
        padding: 8px 15px;
        /* Мінімізуємо внутрішній відступ */
        font-size: 15px;
    }

    .section-consult-button {
        justify-content: center;
        text-align: center;
    }

    /* 4. ІКОНКИ СОЦМЕРЕЖ */
    .social-links {
        gap: 3px;
        /* Мінімальний відступ */
        flex-shrink: 0;
    }

    .social-icon {
        width: 35px;
        /* Сильно зменшуємо іконки */
        height: 35px;
    }

    .social-icon img {
        width: 20px;
        /* Сильно зменшуємо іконки */
        height: 20px;
    }

    .coach-photo {

        margin-top: 0;
        /* ЗМІНА: Збільшуємо розмір фото */

        width: 55%;
        height: auto;
        /* Збільшуємо відносну ширину */

        /* ВАЖЛИВО: Опускаємо фотографію вниз, щоб вона починалася нижче кнопки */

        /* Збільшено! Експериментуй (120px-160px) */

        /* ДОДАТКОВО: Якщо фото обрізається, це може допомогти */
        position: relative;

    }

    .about-content {
        align-items: flex-end;
        padding-bottom: 0;

        /* Текст зверху, фотографія знизу */

        /* Вся секція вирівняна по лівому краю */
        gap: 20px;
        /* Відступ між текстом та фото */
    }

    .about-me-section {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .about-me {
        max-width: 100%;
        display: flex;
        align-items: flex-start;
        /* Прибираємо внутрішній padding, який конфліктує */



        /* Вирівнюємо весь вміст зліва */

        margin: 0 auto;

        text-align: start;
        flex-direction: column;
    }

    .cert-img {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        margin: 0 0;
        /* ЗМІНА: Збільшуємо розмір фото */

        width: 100%;
        height: auto;
        align-items: center;
        /* Збільшуємо відносну ширину */

        /* ВАЖЛИВО: Опускаємо фотографію вниз, щоб вона починалася нижче кнопки */

        /* Збільшено! Експериментуй (120px-160px) */

        /* ДОДАТКОВО: Якщо фото обрізається, це може допомогти */

    }
}

@media (max-width: 768px) {

    /* 1. КОНТЕЙНЕР: Логотип і бургер в ряд */
    .container {
        padding: 20px 25px;
        /* Більший відступ, щоб бургер не різався */
        flex-direction: row;
        justify-content: space-between;
        align-items: center;


        min-width: 320px;
    }

    /* 2. ЛОГОТИП: Більший на мобільному */
    .logo-img {
        max-width: 280px;
        /* Збільшений розмір, як ти просив */
    }

    .logo-block {
        flex-shrink: 1;
        /* Дозволяємо йому трохи стиснутися */
        min-width: 0;
    }

    .tagline {
        font-size: 14px;
        z-index: 101;
        /* Збільшений розмір */
    }

    /* 3. ПОКАЗУЄМО БУРГЕР */
    .menu-toggle {
        display: block;
        width: 35px;
        /* Ширина бургера */
        height: 35px;
        /* Висота бургера */
        position: relative;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
    }

    /* 4. ПРИХОВУЄМО ДЕСКТОПНЕ МЕНЮ ТА СТИЛІЗУЄМО ВИСУВНЕ */
    .menu-content-wrapper {
        display: none;
        /* Приховуємо на мобільному за замовчуванням */

        position: absolute;
        top: 85px;
        /* Відступ від шапки */
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 100;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 45px 0 30px 0;

        /* Розташування вмісту вертикально */
        flex-direction: column;
        align-items: center;
        gap: 20px;
        /* Гарантуємо, що меню поміститься на екрані */
        max-height: calc(100vh - 85px);
        overflow-y: auto;
    }

    /* 5. КОЛИ ЧЕКБОКС АКТИВНИЙ -> ПОКАЗУЄМО МЕНЮ */
    .menu-toggle-input:checked~.menu-content-wrapper {
        display: flex;
    }

    /* 6. СТИЛІ ДЛЯ БУРГЕРА ТА ХРЕСТА */
    .menu-toggle .bar {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #333;
        border-radius: 4px;
        margin: 4px 0;
        /* Зменшений відступ */
        transition: all 0.3s ease-in-out;
    }

    /* ТРАНСФОРМАЦІЯ В ХРЕСТ */
    .menu-toggle-input:checked~.menu-toggle .top-bar {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle-input:checked~.menu-toggle .middle-bar {
        opacity: 0;
    }

    .menu-toggle-input:checked~.menu-toggle .bottom-bar {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* 7. СТИЛІ ДЛЯ ЕЛЕМЕНТІВ МЕНЮ В СТОВПЧИК */
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
    }

    .main-nav a {
        font-size: 16px;
        /* ЗМІНА: Дамо ще більше для меню у стовпчику */
    }

    .button-consultation {
        width: 80%;
        max-width: 300px;
        text-align: center;
        padding: 12px 20px;
        font-size: 16px;

    }










    .about-content {
        flex-direction: column;
        align-items: flex-end;
        padding-bottom: 0;

        /* Текст зверху, фотографія знизу */

        /* Вся секція вирівняна по лівому краю */
        gap: 20px;
        /* Відступ між текстом та фото */
    }

    .main-text {
        flex: 1;
        max-width: 100%;
        /* Обмежуємо ширину, щоб слова переносилися як на макеті */
    }

    .main-text h2 {
        font-size: 32px;
        line-height: 1.1;
    }


    .section-consult-button {
        justify-content: center;
        text-align: center;
        gap: 4px;
        max-width: 350px;
        padding: 10px 20px;

        font-size: 15px;

    }

    .section-consult-button img {
        width: 15px;
        /* Розмір стрілки */
        height: 15px;
    }

    .coach-photo {

        margin-top: 0;
        /* ЗМІНА: Збільшуємо розмір фото */

        width: 100%;
        height: auto;

        /* Збільшуємо відносну ширину */

        /* ВАЖЛИВО: Опускаємо фотографію вниз, щоб вона починалася нижче кнопки */

        /* Збільшено! Експериментуй (120px-160px) */

        /* ДОДАТКОВО: Якщо фото обрізається, це може допомогти */
        position: relative;

    }







    .work-results {
        /* Прибираємо margin: 0 auto; та задаємо ширину */
        width: 100%;
        max-width: 100%;
        margin: 0;

        /* Додаємо padding, щоб уникнути прилипання до країв телефону */
        padding: 0 20px;

        /* Вирівнювання: Гарантуємо, що заголовок і вміст будуть вирівняні */
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    /* 1. Заголовок */
    .work-results h2 {
        width: 100%;
        font-size: 24px;
        /* Зменшуємо для мобільного */
        margin-bottom: 20px;
        text-align: center;
        /* Залишаємо центрування для заголовка */
    }

    /* 2. Стилізація окремого пункту (p) */
    .work-results p {
        /* Текст всередині абзацу залишається зліва */
        text-align: left;
        font-size: 16px;
        /* Зменшуємо розмір шрифту */

        /* Зменшуємо вертикальний відступ */
        margin-bottom: 15px;
    }

    /* 3. Стилізація стрілки */
    .work-results p img {
        width: 15px;
        height: 15px;
        margin-top: 5px;
        /* Регулювання вирівнювання */
    }






    /* УБЕРИ ЦІ СТИЛІ З .for-chom-section, якщо вони є у тебе: */
    .for-chom-section {
        width: 100%;
        max-width: 100%;
        margin: 0;

        /* Залишимо лише вертикальний padding */
        /* ... */
    }

    /* ЗАЛИШИМО ТІЛЬКИ НА .for-chom */
    .for-chom {
        max-width: 100%;
        display: flex;
        align-items: center;
        /* Прибираємо внутрішній padding, який конфліктує */



        /* Вирівнюємо весь вміст зліва */

        margin: 0 auto;

        text-align: center;
        flex-direction: column;
        /* <-- ЦЕ НЕ ПРАЦЮЄ БЕЗ display: flex */

    }

    .for-chom h3 {
        font-size: 20px;
        align-items: center;
    }

    /* Стиль контейнера пункту (наприклад, .benefit-item) */


    /* Стиль для H3, який тепер іде в ряд із галочкою */
    .benefits-list h3 {
        display: flex;
        /* H3 стає контейнером для галочки та тексту */
        align-items: flex-start;
        gap: 10px;
        font-size: 22px;
        /* Зменшуємо шрифт для мобільного */
        /* ... інші стилі ... */
    }

    .benefits-list img {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    /* Стиль для P (Опис) */
    .for-chom p {
        font-size: 18px;
        /* Зменшуємо, щоб помістився */
        /* ВАЖЛИВО: Зсуваємо опис, щоб він починався під текстом H3 */
        padding-left: 20px;
    }

    .for-chom h2 {
        font-size: 40px;
        margin-bottom: 20px;

    }

    .for-chom .h3-for-whom {
        /* Встановлюємо центрування тексту */
        text-align: center;
        font-size: 18px;

        /* Прибираємо margin-bottom, якщо хочеш зменшити відступ */
        margin-bottom: 30px;
        /* Наприклад, зменшити відступ до H2 */

        /* Якщо ти хочеш інший колір: */
        /* color: #5C607C; */
    }






    .about-me-section {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .about-me {
        max-width: 100%;
        display: flex;
        align-items: flex-start;
        /* Прибираємо внутрішній padding, який конфліктує */



        /* Вирівнюємо весь вміст зліва */

        margin: 0 auto;

        text-align: start;
        flex-direction: column;
    }




    .text-about-me h2 {

        font-size: 38px;

        margin-bottom: 50px;
    }

    .text-about-me p {
        margin-bottom: 30px;
        text-align: left;


        font-size: 20px;

    }

    .text-about-me img {
        width: 20px;
        height: 20px;
    }

    .text-about-me h3 {

        margin-bottom: 50px;
        font-size: 22px;

        align-items: flex-start;
        /* Вирівнюємо вміст по верхньому краю */
        gap: 5px;
        display: flex;
    }

    .cert-img {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        margin: 0 0;
        /* ЗМІНА: Збільшуємо розмір фото */

        width: 100%;
        height: auto;
        align-items: center;
        /* Збільшуємо відносну ширину */

        /* ВАЖЛИВО: Опускаємо фотографію вниз, щоб вона починалася нижче кнопки */

        /* Збільшено! Експериментуй (120px-160px) */

        /* ДОДАТКОВО: Якщо фото обрізається, це може допомогти */

    }





}

@media (hover: none) and (pointer: coarse) {
    .social-icon {
        background-color: #1D4ED8 !important;
        transform: none !important;
    }

    .menu-content-wrapper .button-consultation {
        background-color: #1D4ED8 !important;
        transform: none !important;
    }

    .section-consult-button {
        background-color: #1D4ED8 !important;
        transform: none !important;
    }

    .footer-social .social-icon {
        background-color: #1E1E1E !important;
        transform: none !important;
    }

    .container.signup button {
        background-color: #333 !important;
        transform: none !important;
    }
}

@media (hover: none) and (pointer: coarse) {
    /* ... твої існуючі стилі ... */

    /* 1. Скидаємо дію :hover для підкреслення */
    .main-nav a:hover::after {
        width: 0 !important;
        /* Гарантуємо, що :hover не залишає підкреслення */
    }

    /* 2. Скидаємо колір тексту, щоб він не "залипав" */
    .main-nav a:hover {
        color: inherit !important;
    }

    /* 3. Гарантуємо, що колір посилання повертається до початкового після тапу */
    .main-nav a:active {
        /* Колір, який має бути під час натискання */
        color: #0C3EAA !important;
        transform: none
    }

    /* 4. Прибираємо фокус, який також може викликати "залипання" */
    .main-nav a:focus {
        color: inherit !important;
    }
}

/* --- СТИЛЬ, ЯКИЙ СТВОРЮЄ КОРОТКОЧАСНИЙ ВІЗУАЛЬНИЙ ВІДГУК НА ТАП --- */