/* Основні стилі */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #/* Заголовок */
}
  /* Заголовок */
header {
    background: #2c3e50;
    color: white;
    padding: 15px 0; /* Зменшено висоту синього фону */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 50px; /* Фіксована мінімальна висота */
}
 /* Логотип */
.logo-container img {
    max-width: 450px; /* Збільшено логотип */
    height: auto;
    display: block;
    margin-bottom: 10px; /* Трохи більший відступ під логотипом */
}
/* Текст під логотипом */
.header-text {
    font-size: 18px;
    text-align: center;
    margin-top: 0px; /* Прибрано зайві відступи */
    padding: 0; /* Щільно під логотипом */
}
header p {
    font-size: 16px;
}

/* Контейнер */
.container {
    width: 80%;
    margin: auto;
    overflow: visible; /* Вимикає обрізку тексту */
    max-height: none; /* Прибирає обмеження висоти */
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Секції */
h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
}

p {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Блоки подій */
.event, .course {
    background: #ecf0f1;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Кнопки */
.cta-button {
    display: inline-block;
    padding: 10px 15px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.cta-button:hover {
    background: #2980b9;
}

/* Зображення */
img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Підвал */
footer {
    text-align: center;
    padding: 20px;
    background: #2c3e50;
    color: white;
    margin-top: 20px;
}

/* Адаптація під мобільні пристрої */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    
    header h1 {
        font-size: 22px;
    }

    p {
        font-size: 16px;
    }
/* Загальний контейнер для засновників */
.founder {
    display: flex;
    flex-direction: row; /* Розташування фото і тексту в один рядок */
    align-items: center; /* Вирівнювання по центру */
    gap: 15px; /* Відстань між фото і текстом */
    margin-bottom: 25px; /* Відступ між блоками */
}

/* Фото засновників */
.founder img {
    width: 180px; /* Фіксована ширина */
    height: 180px; /* Фіксована висота */
    object-fit: cover; /* Щоб фото не розтягувалися */
    border-radius: 8px; /* Округлені кути */
    border: 3px solid #3498db; /* Синя рамка */
}

/* Текстовий блок */
.founder-text {
    font-size: 13px; /* Зменшений шрифт */
    max-width: 65%; /* Оптимальна ширина блоку */
    text-align: left; /* Вирівнювання тексту */
    display: flex;
    flex-direction: column; /* Щоб текст був вертикально */
    justify-content: center; /* Вирівнювання по центру фото */
}
}
}тексту */
}
    тексту */
}
}
/* Секція для кнопки завантаження */
.download {
    text-align: center;
    background: #ecf0f1;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

/* Стиль кнопок */
.cta-button {
    display: inline-block;
    padding: 12px 20px;
    background: #3498db; /* Синій колір */
    color: white;
    text-decoration: none;
    border-radius: 8px; /* Закруглені краї */
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s, transform 0.2s;
}

/* Ефект при наведенні */
.cta-button:hover {
    background: #2980b9; /* Темніший синій */
    transform: scale(1.05); /* Легке збільшення */
}

/* Для мобільних пристроїв */
@media (max-width: 768px) {
    .cta-button {
        font-size: 14px;
        padding: 10px 16px;
    }
}
