/* Основные стили */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: #f0faff url('https://get.wallhere.com/photo/sunlight-space-sky-blue-horizon-circle-atmosphere-glare-light-background-star-line-screenshot-computer-wallpaper-atmosphere-of-earth-outer-space-astronomical-object-698646.jpg') no-repeat center center fixed; /* Добавляем фоновую картинку */
    background-size: cover; /* Масштабируем картинку на весь экран */
    color: #333;
    overflow: hidden; /* Убираем полосы прокрутки */
}

.page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    background: #dfebf8 url('https://get.wallhere.com/photo/sunlight-space-sky-blue-horizon-circle-atmosphere-glare-light-background-star-line-screenshot-computer-wallpaper-atmosphere-of-earth-outer-space-astronomical-object-698646.jpg') no-repeat center center; /* Добавляем фоновую картинку */
    background-size: cover; /* Масштабируем картинку на весь блок */
    transition: background 0.5s;
}

/* Фон с узором */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.jpg') repeat; /* Узоры для фона */
    z-index: -1;
    opacity: 0.6; /* Полупрозрачный фон */
}

.content-section {
    text-align: left;
    color: #333;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    max-width: 800px;
    width: 90%;
    margin: auto;
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease-out;
}

.content-section h2 {
    font-size: 2.5rem;
    margin: 20px 0;
    color: #003366; /* Синий цвет заголовков */
    border-bottom: 2px solid #003366;
    padding-bottom: 10px;
}

.content-section h3 {
    font-size: 2rem;
    margin: 20px 0;
    color: #003366; /* Синий цвет подзаголовков */
}

.content-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

ul li {
    font-size: 1.2rem;
    margin: 10px 0;
}

.btn {
    display: inline-block;
    background-color: #007bff; /* Ярко-синяя кнопка */
    color: white;
    border: none;
    padding: 12px 24px;
    margin: 15px;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #0056b3; /* Темно-синяя кнопка при наведении */
    transform: scale(1.05);
}

/* Анимации и переходы */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Мобильные стили */
@media (max-width: 768px) {
    .content-section {
        padding: 20px;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .content-section h3 {
        font-size: 1.5rem;
    }
}
