@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #201b21;
    --bg-secondary: #1a161b;
    --bg-card: rgba(255, 255, 255, 0.03);
    --gold-light: #f4e4c1;
    --gold-bright: #ffd700;
    --gold-dark: #d4af37;
    --text-primary: #f5f5f7;
    --text-secondary: #a89f91;
    --border: rgba(244, 228, 193, 0.15);
    --border-hover: rgba(244, 228, 193, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 300;
	scrollbar-gutter: stable;
}
body.loading {
    overflow: hidden;
}
p a{
	color:#fff;
}
/* Фоновое изображение для правой части */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 300px; /* Начинается от края сайдбара */
    right: 0;
    bottom: 0;
    background-image: url('/image/bg.jpg'); /* Замените на ваше изображение */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2;
    opacity: 0.3; /* Настроить прозрачность по вкусу */
    pointer-events: none; /* Чтобы не мешало кликам */
}

/* Дополнительный градиент для плавного перехода */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 300px;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(32, 27, 33, 0.7) 0%,
        rgba(32, 27, 33, 0.4) 10%,
        rgba(32, 27, 33, 0.2) 30%,
        transparent 50%
    );
    z-index: -1;
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--gold-dark), var(--gold-light));
    border-radius: 3px;
}

/* Для мобильных устройств убираем фоновое изображение */
@media (max-width: 768px) {
    body::before,
    body::after {
        display: none;
    }
    
    body {
        background-color: var(--bg-primary);
    }
}

/* Остальные стили остаются без изменений */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold-dark);
    margin-bottom: 1rem;
    display: block;
    font-weight: 400;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--gold-light) 0%, #ffe65d 50%, #ffe660 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
    position: relative; /* Добавляем для позиционирования псевдоэлемента */
    text-align: center; /* Центрируем заголовок */
    margin-bottom: 4rem; /* Увеличиваем отступ снизу для картинки */
}

/* Декоративная PNG картинка под заголовком H1 */
h1::after {
    content: '';
    position: absolute;
    bottom:-30px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
     height: 26px;
    background-image: url(/image/liana.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0px;
    opacity: 1;
    z-index: 1;
}

/* Декоративная PNG картинка под заголовком H2 */
h2::after {
    content: '';
    position: absolute;
    bottom:-30px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 26px;
    background-image: url(/image/liana.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0px;
    opacity: 1;
    z-index: 1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(to right, var(--gold-light), #ffe660);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

h3 {
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
}

ul {
    list-style: none;
    margin-bottom: 2rem;
}

li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-primary);
}

li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #e7d589;
    font-size: 0.6rem;
    top: 1.2rem;
}

strong {
    color: var(--gold-light);
    font-weight: 500;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Layout */
.container {
    display: flex;
    min-height: 100vh;
}

/* Left Sidebar */
.sidebar {
    width: 300px;
    background: rgba(26, 22, 27, 0.95);
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
    z-index: 100;
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 2rem;
    padding-bottom: 0rem;
    border-bottom: 0px solid var(--border);
    text-align: center;
}

.logo img {
    max-width: 273px; /* Максимальная ширина картинки */
    max-height: 132px; /* Максимальная высота картинки */
    width: auto;
    height: auto;
    object-fit: contain;
}

.sidebar {
	overflow-y: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.sidebar::-webkit-scrollbar {
	display: none;
}
.sidebar:hover {
  overflow-y: auto;
  scrollbar-width: none;
}
.sidebar:hover::-webkit-scrollbar {
	display: none;
}

/* Удаляем старый текстовый логотип */
.logo-text {
    display: none;
}

.nav-menu {
    list-style: none;
}
.nav-menu .nav-item,
.nav-item {
    margin-bottom: 0.1rem;
	padding-left:0;
}
.nav-menu .nav-item:before,
.nav-menu .nav-icon{
	display:none;
}
.nav-item .submenu{
	margin:0;
	padding:0;
	padding-left:0.2rem;
	display: none;
}
.nav-item.open .submenu {
    display: block;
}
.toggle-btn {
    padding: 5px;
    display: flex;
    align-items: center;
	width:24px;
	height:24px;
    justify-content: center;
    transition: transform 0.1s ease;
    border-radius: 5px;
	border:1px solid #463e1b;
	background:#1a1811;
	margin-left:10px;
	position:relative;
}
.toggle-btn:after{
	content:'';
	border-top:1px solid var(--gold-light);
	border-right:1px solid var(--gold-light);
	display:block;
	width:5px;
	height:5px;
	transform: rotate(135deg);
	position:absolute;
	top: 7px;
	left: 8px;
}
.toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}
.nav-item.open .toggle-btn {
    transform: scaleY(-1);
}

.toggle-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.nav-item .submenu .nav-link{
	font-weight:400;
	padding:0.3rem 1.2rem;
	margin:0;
	border:0;
	font-size: 0.9rem;
	line-height:0.95rem;
}
.nav-item .submenu .nav-link.active{
	color: var(--gold-light);
}
.nav-item .submenu .nav-link:hover{
	background:transparent;
	border:0;
}
.nav-item .submenu li{
	margin-bottom:0;
	position:relative;
	padding:0;
	padding-left:1rem;
}
.nav-item .submenu li:before{
	content:'-';
	top:50%;
	left:0.9rem;
	width:20px;
	height:2px;
	line-height:1px;
	position:absolute;
	display:inline-block;
	color:#bcad72;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.2rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    font-size: 1rem;
    letter-spacing: 0.05em;
	font-weight:bold;
}

.nav-link:hover {
    background: rgba(244, 228, 193, 0.05);
    color: var(--gold-light);
    border-color: var(--border);
    transform: translateX(5px);
}

.nav-link.active {
    background: rgba(244, 228, 193, 0.08);
    color: #e7d589;
    border-color: #e7d589;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.nav-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    fill: currentColor;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.nav-link:hover .nav-icon,
.nav-link.active .nav-icon {
    opacity: 1;
    transform: scale(1.1);
}

.social-btns{
	display: flex;
	align-items: center;
	justify-content: center; 
	gap:17px;
}
.social-btn{
	display:block;
	width:45px;
	height:45px;
	background:#3b3530;
	border-radius:5px;
}
.social-btn:hover{
	opacity:0.9;
	box-shadow:0 0 20px rgba(255,255,255,0.2);
}
.social-btn-wa{
	background:#3b3530 url('./image/wa.svg') no-repeat center / 19px;
}
.social-btn-tg{
	background:#3b3530 url('./image/tg.svg') no-repeat center / 22px;
}

/* Main Content - Centered */
.content {
    margin-left: 300px;
    padding: 6rem 2rem;
    width: calc(100% - 300px);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1; /* Чтобы контент был поверх фона */
}

.section {
    width: 100%;
    max-width: 1240px;
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    /* Добавляем небольшой фон для лучшей читаемости */
    background: rgba(32, 27, 33, 0.85);
    backdrop-filter: blur(5px);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    opacity: 0.5;
}

.section:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(244, 228, 193, 0.05);
    transform: translateY(-2px);
}

/* Practice Cards */
.practice-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.practice-item::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.practice-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.practice-item:hover::after {
    opacity: 0.6;
}

.practice-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(244, 228, 193, 0.1);
}

.practice-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(244, 228, 193, 0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.practice-icon {
    width: 55px;
    height: 55px;
    fill: var(--gold-light);
}

/* Tables */
.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2.5rem 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.schedule-table th {
    background: rgba(244, 228, 193, 0.08);
    color: var(--gold-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.schedule-table td {
    padding: 1.2rem 1.5rem;
	padding-right:1rem;
    border-bottom: 1px solid rgba(244, 228, 193, 0.05);
    font-size: 0.95rem;
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table tr:hover td {
    background: rgba(244, 228, 193, 0.02);
}

/* Pricing */
.pricing-grid {
    display: grid;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin: 2.5rem 0;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    background: rgba(26, 22, 27, 0.8);
}

.pricing-cell {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
}

.pricing-cell:first-child {
    border-right: 1px solid var(--border);
    font-weight: 400;
    color: var(--text-primary);
}

.pricing-cell:last-child {
    color: var(--gold-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    justify-content: flex-end;
}

/* Form */
.registration-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem;
    margin-top: 3rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--gold-light);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

/* Стили для селектов и опций */
.form-select {
    background-color: var(--bg-secondary);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg ' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f4e4c1' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 10px;
}

/* Для Firefox */
.form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 var(--text-primary);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-input.error {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.error-message {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
}

.error-message.show {
    display: block;
}

.submit-btn {
    background: linear-gradient(135deg, rgba(244, 228, 193, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
    border: 1px solid var(--gold-dark);
    color: var(--gold-light);
    padding: 1.2rem 4rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin: 3rem auto 0;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover {
    background: linear-gradient(135deg, rgba(244, 228, 193, 0.2) 0%, rgba(212, 175, 55, 0.3) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.submit-btn:hover::before {
    left: 100%;
}


a.phone{
	color:#fff;
	white-space:nowrap;
	font-weight:bold;
	text-decoration:none;
}

/* Highlight Box */
.highlight-box {
    background: rgba(244, 228, 193, 0.03);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold-light);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 0 12px 12px 0;
    position: relative;
}
.highlight-box a{
	color:#fff;
	text-decoration:underline;
}

.highlight-box::before,
.highlight-box::after {
    content: '❝';
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--bg-primary);
    padding: 0 10px;
    color: var(--gold-dark);
    font-size: 1.5rem;
    font-family: serif;
}
.highlight-box::after{
	top:auto;
	left:auto;
	bottom:-10px;
	right:20px;
	transform:rotate(-180deg);
}

/* Mobile */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(32, 27, 33, 0.9);
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.burger-line {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold-light);
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* Анимация для бургер-крестика */
.mobile-menu-btn.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
    backdrop-filter: blur(5px);
}

.overlay.active {
    display: block;
}

/* Стили для списков в правой части (контенте) */
.content ul {
    list-style: none;
    margin-bottom: 2rem;
}

/* Класс для обычных списков с ромбиками (для навигации или если нужно) */
.list-diamond li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-primary);
}

.list-diamond li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #e7d589;
    font-size: 0.6rem;
    top: 1.2rem;
}

/* Класс для списков с галочками (для контента) */
.list-check li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-primary);
}

.list-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-size: 0.9rem;
    top: 0.25rem;
    font-weight: bold;
}

/* Галочки для вложенных списков */
.list-check ul li {
    padding-left: 3rem;
}

.list-check ul li::before {
    content: '→';
    color: var(--gold-light);
    font-size: 0.8rem;
}



/* Стили для сильных элементов в списках с галочками */
.list-check li strong {
    color: var(--gold-light);
    font-weight: 500;
}

@media (max-width: 1400px) {
	.nav-link {
		padding: 0.3rem 1.2rem; 
	}
	.sidebar {
		padding-top:2rem;
	}
}

@media (max-width: 1200px) {
    .section {
        max-width: 900px;
    }
	
}

@media (max-width: 1024px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        width: 300px;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .content {
        margin-left: 0;
        width: 100%;
        padding: 5rem 1rem 2rem;
    }

    .section {
        padding: 2rem 1.5rem;
        margin-bottom: 4rem;
    }

    /* МОБИЛЬНАЯ ТИПОГРАФИКА - 14px */
    p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 28px;
        margin-bottom: 1.2rem;
    }

    li {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }

    .practice-item {
        padding: 1.5rem;
    }

    .registration-form {
        padding: 1.5rem;
    }

    /* ИСПРАВЛЕНИЕ: Таблица цен в одну строку */
    .pricing-row {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-cell {
        padding: 0.8rem;
		padding-left:0.3rem;
    }

    .pricing-cell:first-child {
        border-right: 1px solid var(--border); /* Вернул границу */
        border-bottom: none; /* Убрал нижнюю границу */
        font-size: 14px; /* Увеличил до 14px */
		padding: 0.8rem;
    }

    .pricing-cell:last-child {
        font-size: 1.1rem;
        justify-content: flex-end; /* Цена справа */
    }

    .schedule-table {
        font-size: 0.9rem;
    }

    .schedule-table th, .schedule-table td {
        padding: 1rem;
        font-size: 14px;
    }

    .form-label {
        font-size: 12px;
    }

    .form-input, .form-select, .form-textarea {
        font-size: 14px;
        padding: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
	h2::after {
		
	}
	h1::after {
		
	}
	
	.sidebar {
		padding: 1rem 2rem;
	}
	.logo {
		margin-bottom: 1rem;
	}
}

/* =========================================== */
/* СТИЛИ ДЛЯ ЮРИДИЧЕСКОЙ ИНФОРМАЦИИ */
/* =========================================== */

.legal-info {
    margin-top: 3rem;
    text-align: center;
    width: 100%;
    display: block;
}

.legal-text {
    font-size: 14px !important;
    color: var(--text-secondary) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0.8 !important;
    text-align: center !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    display: block !important;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .legal-info {
        margin-top: 2rem;
    }
    
    .legal-text {
        font-size: 13px !important;
    }
}

/* Дополнительная специфичность для гарантии */
section#contacts .legal-info .legal-text {
    font-size: 14px !important;
    color: #a89f91 !important;
    text-align: center !important;
}