/* Текстовая страница */
.text-page {
    padding: 40px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.page-header h1 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}

.page-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: Arial, Helvetica, sans-serif;
}

/* Основной контент */
.text-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-block {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    font-family: Arial, Helvetica, sans-serif;
}

.text-block h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 3px solid #000000;
    padding-bottom: 10px;
}

.text-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* Философия */
.philosophy-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.point:hover {
    transform: translateX(10px);
}

.point i {
    font-size: 24px;
    color: #000000;
    margin-top: 5px;
    flex-shrink: 0;
}

.point h3 {
    color: #333;
    margin-bottom: 8px;
    font-size: 18px;
}

.point p {
    color: #666;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Список особенностей */
.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list strong {
    color: #333;
}

/* Достижения */
.achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.achievement {
    text-align: center;
    padding: 25px;
    background: #3a3a3a;
    color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.achievement-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 8px;
}

.achievement-text {
    font-size: 14px;
    opacity: 0.9;
}

/* Планы на будущее */
.future-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.plan-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #000000;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card h3 {
    color: #000000;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.plan-card p {
    color: #666;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Призыв к действию */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #000000, #3a3a3a);
    color: white;
    padding: 50px 40px;
    border-radius: 15px;
    margin-top: 40px;
    font-family: Arial, Helvetica, sans-serif;
}

.cta-section h2 {
    color: white;
    border: none;
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: #000000;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #000000;
    transform: translateY(-2px);
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-block {
    animation: fadeInUp 0.6s ease;
}

/* Адаптивность */
@media (max-width: 768px) {
    .text-page {
        padding: 20px 0;
    }
    
    .page-header {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .text-block {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .text-block h2 {
        font-size: 24px;
    }
    
    .point {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .achievements {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .future-plans {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .text-block {
        padding: 20px;
    }
    
    .achievements {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-section h2 {
        font-size: 26px;
    }
}