.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Главная страница */
.main-page {
    background: var(--gradient-main);
    padding: 70px 0 60px;
    border-bottom: 1px solid var(--color-border-dark);
}

.main-page-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #142f3c;
}

.main-page img {
    border-radius: var(--radius-lg);
}

/* Стартовая страница */
.home-page {
    background: var(--gradient-main);
    padding: 20px 0 60px;
    border-bottom: 1px solid var(--color-border-dark);
}

.home-page img {
    border-radius: var(--radius-lg);
}

/* Текстовый блок */
.page-text {
    flex: 1;
    min-width: 260px;
}

.page-text h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #0a2e3f;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-text p,
.page-text ul {
    font-size: 1.2rem;
    color: #2c3e4e;
    margin-bottom: 30px;
}

.page-text li {
    margin-left: 20px;
}

/* ==================== АДАПТИВНОСТЬ ==================== */

@media (max-width: 768px) {
    body {
        min-height: 100vh;
    }
    
    .home-page {
        padding: 20px 0 20px;
    }
    
    .home-page h1 {
        font-size: 2rem;
    }
    
    .main-page {
        padding: 20px 0 20px;
    }
    
    .main-page-title {
        margin-bottom: 15px;
    }
}