   /* Базовые настройки */
    .uj-landing {
    font-family: inherit;
    color: #334155;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.uj-landing h1, .uj-landing h2, .uj-landing h3 {
    font-family: inherit; 
    margin: 0;
    color: #1e293b;
}

        /* Главный экран (Hero) */
        .uj-hero {
            background: linear-gradient(135deg, #164F9B 0%, #10b981 100%);
            color: white;
            padding: 60px 30px;
            border-radius: 24px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(22, 79, 155, 0.2);
            margin-bottom: 60px;
        }
        .uj-hero h1 {
            color: white;
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .uj-hero .subtitle {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            font-weight: 500;
            opacity: 0.95;
        }
        .uj-benefits {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .uj-benefit-tag {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
        }

        /* Заголовки секций */
        .uj-section-title {
            text-align: center;
            font-size: 2.2rem;
            margin: 50px 0 20px;
            position: relative;
        }
   .uj-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #164F9B; /* единый синий цвет */
    margin: 15px auto 0;
    border-radius: 2px;
}

        /* Сетка карточек */
        .uj-grid-4, .uj-grid-2 {
            display: grid;
            gap: 24px;
        }
        .uj-grid-4 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
        .uj-grid-2 { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
		
		@media (max-width: 390px){
			.uj-grid-2 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
		}

        .uj-card {
		    background: #ffffff;
		    border-radius: 10px;
		    padding: 15px;
		    box-shadow: 0px 4px 70px rgba(124, 134, 148, 0.15);
		    margin-top: 10px;
		    color: #333333;
		    line-height: normal;
		    font-size: 1.6rem;
			text-align:left
        }

        .uj-card h3 {
		    font-size: 2.1rem;
		    font-family: 'Gilroy Bold';
		    padding-bottom: 10px;
        }

        /* Цены и форматы */
        .uj-prices-wrapper {
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
.uj-price-btn {
    display: inline-block;
    background: #164F9B; /* Единый синий цвет сайта */
    color: #ffffff !important; /* Принудительно белый цвет текста */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 10px;
    transition: background 0.3s, transform 0.2s;
}

.uj-price-btn:hover { 
    background: #123F7C; /* Чуть более темный синий при наведении */
    transform: translateY(-2px);
}

        /* Карточки педагогов и отзывов */
        .uj-person-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: #f8fafc;
            padding: 24px;
            border-radius: 16px;
        }
        .uj-avatar {
            width: 80px;
            height: 80px;
            background: #cbd5e1;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64748b;
            font-size: 0.8rem;
            text-align: center;
        }

        /* Шаги */
        .uj-steps {
            max-width: 800px;
            margin: 0 auto;
        }
        .uj-step-item {
            display: flex;
            gap: 20px;
            margin-bottom: 24px;
            background: white;
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.04);
            align-items: center;
        }
.uj-step-num {
    background: #164F9B; /* единый синий цвет */
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* FAQ */
.uj-faq { max-width: 800px; margin: 0 auto; }
.uj-faq details {
	background: white;
	margin-bottom: 15px;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.uj-faq summary {
	padding: 20px;
	font-weight: 600;
	font-size: 1.1rem;
	cursor: pointer;
	list-style: none;
	position: relative;
}
.uj-faq summary::-webkit-details-marker { display: none; }
.uj-faq summary::after {
	content: '+';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	color: #164F9B;
}
.uj-faq details[open] summary::after { content: '-'; }
.uj-faq .faq-content {
	padding: 0 20px 20px;
	color: #475569;
}

        /* SEO Блок */
.uj-seo-text {
    background: #f1f5f9;
    padding: 40px;
    border-radius: 20px;
    margin-top: 80px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.uj-seo-text h2 { 
    margin-bottom: 20px; 
    font-size: 1.8rem; 
}

.uj-seo-text p {
    margin-bottom: 16px;
}

.uj-seo-text ul { 
    padding-left: 20px; 
    margin-bottom: 16px;
}

.uj-seo-text li {
    margin-bottom: 8px;
}
        
/* Заметки для редактора */
.uj-note {
	background: #fffbeb;
	color: #b45309;
	padding: 10px 15px;
	border-left: 4px solid #f59e0b;
	border-radius: 4px;
	font-size: 0.9rem;
	margin-bottom: 20px;
margin-top:24px;
}

@media (max-width: 768px) {
	.uj-hero h1 { font-size: 2rem; }
	.uj-step-item { flex-direction: column; text-align: center; }
	.uj-person-card { flex-direction: column; align-items: center; text-align: center; }
}