/* Загальні стилі для всього сайту */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
}

/* --- Стилі для головної сторінки (index.html) --- */

.splash-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.splash-container .logo {
    max-width: 150px; /* Можете змінити розмір лого */
    margin-bottom: 20px;
}

.splash-container .slogan {
    font-size: 1.5em; /* 24px */
    font-weight: 300; /* Тонкий шрифт */
    color: #555;
    margin: 0 0 30px 0;
}

.splash-container .main-button {
    display: inline-block;
    background-color: #007aff; /* Синій колір, як у iOS */
    color: white;
    padding: 15px 35px;
    border-radius: 50px; /* Робить кнопку овальною */
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 40px;
    transition: background-color 0.3s;
}

.splash-container .main-button:hover {
    background-color: #0056b3;
}

.splash-container .footer-links a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-top: 15px;
    font-size: 0.9em;
}

.splash-container .footer-links a:hover {
    text-decoration: underline;
}


/* --- Стилі для внутрішніх сторінок (About, Terms, Privacy) --- */

.page-header {
    /* Цей блок тепер просто створює рамку і відступ */
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-content {
    /* А цей блок обмежує ширину і центрує вміст хедера */
    max-width: 720px; /* Така ж ширина, як у колонки з текстом */
    margin: 0 auto;
    padding: 0 20px;
}

.header-content .logo {
    height: 80px; /* Висота лого в хедері */
    display: block; /* Для правильних відступів */
}

.content-column {
    max-width: 720px; /* Ширина текстової колонки */
    margin: 40px auto; /* Центрування колонки */
    padding: 0 20px;
    box-sizing: border-box;
}

.content-column h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.content-column p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}