/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Палитра синих и фиолетовых цветов:

СИНИЕ ЦВЕТА:
1. #0f172a - Очень темный синий (почти черный)
2. #1e293b - Темно-синий сланцевый
3. #334155 - Средний синий сланцевый
4. #475569 - Светло-синий сланцевый
5. #1e3a8a - Насыщенный темно-синий
6. #1e3a8a - Темно-синий средней насыщенности
7. #1e3a8a - Насыщенный синий
8. #1e3a8a - Яркий синий
9. #1e3a8a - Светло-синий
10. #1e3a8a - Очень светло-синий
11. #1e3a8a - Пастельный синий
12. #dbeafe - Очень светлый синий (фон)

ФИОЛЕТОВЫЕ ЦВЕТА:
13. #581c87 - Очень темный фиолетовый
14. #7c2d12 - Темно-фиолетовый
15. #86198f - Насыщенный фиолетовый
16. #a21caf - Яркий фиолетовый
17. #c026d3 - Светло-фиолетовый
18. #d946ef - Очень светло-фиолетовый
19. #e879f9 - Пастельный фиолетовый
20. #f3e8ff - Очень светлый фиолетовый (фон)

ТЕМНО-СИНИЕ С ФИОЛЕТОВЫМ ОТТЕНКОМ:
21. #1e3a8a - Темно-синий с фиолетовым
22. #1e3a8a - Средний синий с фиолетовым
23. #4338ca - Насыщенный синий с фиолетовым
24. #6366f1 - Яркий синий с фиолетовым
25. #818cf8 - Светло-синий с фиолетовым
26. #a5b4fc - Очень светло-синий с фиолетовым
27. #c7d2fe - Пастельный синий с фиолетовым
28. #e0e7ff - Очень светлый синий с фиолетовым (фон)

ТЕКУЩАЯ ПАЛИТРА:
- Заголовки таблиц: #1e3a8a (5)
- Акценты/границы: #1e3a8a (22)  
- Выделения: #1e3a8a (7)
- Hover эффекты: #1e3a8a (9)
- Основной текст: #1e3a8a (21)
*/

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Заголовки */
h1, h2, h3 {
    font-weight: 500;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

h3 {
    font-size: 1.5rem;
    color: #34495e;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #1e3a8a;
    color: white;
    box-shadow: 0 4px 8px rgba(44, 62, 80, 0.3);
}

.btn-primary:hover {
    background-color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(44, 62, 80, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #1e3a8a;
    border: 2px solid #6c757d;
    box-shadow: 0 2px 4px rgba(44, 62, 80, 0.2);
}

.btn-secondary:hover {
    background-color: #1e3a8a;
    color: white;
    box-shadow: 0 4px 8px rgba(44, 62, 80, 0.3);
}

/* Шапка */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}

.logo-text {
    min-width: 280px;
    flex: 1;
}

.logo-text h1 {
    color: #1e3a8a;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 900;
    line-height: 1.2;
    text-align: left;
    width: 100%;
    white-space: pre;
}

.tagline {
    color: #1e3a8a;
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
    margin-top: 0;
    line-height: 1.2;
    text-align: left;
    width: 100%;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navigation a {
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #1e3a8a;
}

.contact-info {
    text-align: right;
}

.contact-info a {
    display: block;
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.contact-info a:hover {
    color: #1e3a8a;
}

/* Бургер-меню */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #1e3a8a;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Главная секция */
.hero {
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 120, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(100, 100, 100, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(140, 140, 140, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%, #f8f8f8 100%);
    background-color: #f5f5f5;
    color: #1e3a8a;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(0, 0, 0, 0.02) 100px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(0, 0, 0, 0.02) 100px
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1e3a8a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #34495e;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
    line-height: 1.6;
}

.hero-text {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: left;
    line-height: 1.8;
}

.hero-text .author {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.1rem;
}

.hero-text p {
    margin-bottom: 1.5rem;
    color: #444;
    font-size: 1.1rem;
}

.hero-features {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #1e3a8a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-features p {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1e3a8a;
}

.hero-features p:last-child {
    margin-bottom: 0;
}

.hero-promo {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e3a8a 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 2.5rem;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.hero-promo h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-promo p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.hero-promo p:last-child {
    margin-bottom: 0;
}

.hero-promo strong {
    color: #ffd700;
    font-weight: 700;
}

/* Секция этапов регистрации */
.registration-steps {
    padding: 80px 0;
    background-color: white;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.registration-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
    font-size: 2rem;
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
    transition: all 0.3s ease;
}

.step-item:hover {
    background-color: #e8eaf6;
    transform: translateX(5px);
}

.step-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-text {
    font-size: 1.1rem;
    color: #1e3a8a;
    font-weight: 500;
    line-height: 1.4;
}

/* Секция временной шкалы */
.registration-timeline {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.registration-timeline h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e3a8a;
    font-size: 2rem;
}

.timeline-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.timeline-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-table {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.timeline-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    background-color: #1e3a8a;
    color: white;
    font-weight: 600;
    padding: 1.5rem 1rem;
}

.timeline-header .timeline-col {
    color: white;
}

.timeline-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.timeline-row:hover {
    background-color: #f0f9ff;
}

.timeline-row:last-child {
    border-bottom: none;
}

.timeline-col {
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-header .timeline-col {
    padding: 0;
    background-color: #1e3a8a;
}

.timeline-col-stage {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1e3a8a;
}

.timeline-col-content {
    color: #555;
    line-height: 1.5;
}

.timeline-col-duration {
    font-weight: 600;
    color: #1e3a8a;
    text-align: center;
    justify-content: center;
}

.stage-number {
    background-color: #1e3a8a;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 120, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(100, 100, 100, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%, #f8f8f8 100%);
    background-color: #f5f5f5;
    color: #1e3a8a;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(0, 0, 0, 0.02) 100px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(0, 0, 0, 0.02) 100px
        );
    pointer-events: none;
    border-radius: 10px;
}

.timeline-summary .summary-icon {
    font-size: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-summary .summary-text {
    font-size: 1.1rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.summary-text {
    font-size: 1.1rem;
    line-height: 1.5;
}

.summary-text strong {
    font-size: 1.2rem;
}

/* Секция ускоренной регистрации */
.accelerated-registration {
    padding: 80px 0;
    background-color: white;
}

.accelerated-registration h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e3a8a;
    font-size: 2rem;
}

.accelerated-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.accelerated-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.accelerated-conditions {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.accelerated-conditions h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.conditions-list {
    display: grid;
    gap: 1rem;
}

.condition-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
    transition: all 0.3s ease;
}

.condition-item:hover {
    background-color: #e8eaf6;
    transform: translateX(5px);
}

.condition-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.condition-text {
    font-size: 1.1rem;
    color: #1e3a8a;
    font-weight: 500;
    line-height: 1.4;
}

.accelerated-timeline {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.accelerated-timeline h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.accelerated-table {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.accelerated-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    background: #1e3a8a;
    color: white;
    font-weight: 600;
    padding: 1.5rem 1rem;
}

.accelerated-header .accelerated-col {
    color: white;
}

.accelerated-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.accelerated-row:hover {
    background-color: #f0f9ff;
}

.accelerated-row:last-child {
    border-bottom: none;
}

.accelerated-col {
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accelerated-header .accelerated-col {
    padding: 0;
}

.accelerated-col-stage {
    color: #1e3a8a;
    font-weight: 500;
}

.accelerated-col-duration {
    font-weight: 600;
    color: #1e3a8a;
    text-align: center;
    justify-content: center;
}

.accelerated-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e3a8a 100%);
    color: white;
    border-radius: 10px;
    text-align: center;
}

.summary-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary-text {
    font-size: 1.2rem;
    line-height: 1.5;
}

.accelerated-warning {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
}

.warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.warning-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Секция прав и привилегий */
.rights-timeline {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.rights-timeline h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e3a8a;
    font-size: 2rem;
}

.rights-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.rights-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rights-table {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.rights-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: #1e3a8a;
    color: white;
    font-weight: 600;
    padding: 1.5rem 1rem;
}

.rights-header .rights-col {
    color: white;
    background-color: #1e3a8a;
}

.rights-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.rights-row:hover {
    background-color: #f0f9ff;
}

.rights-row:last-child {
    border-bottom: none;
}

.rights-col {
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rights-header .rights-col {
    padding: 0;
}

.rights-col-moment {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1e3a8a;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rights-col-meaning {
    color: #555;
    line-height: 1.5;
}



.privileges-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.privileges-section h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.privileges-intro {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 2rem;
}

.privileges-list {
    display: grid;
    gap: 1rem;
}

.privilege-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
    transition: all 0.3s ease;
}

.privilege-item:hover {
    background-color: #f0f9ff;
    transform: translateX(5px);
    border-left-color: #1e3a8a;
}


.privilege-text {
    font-size: 1rem;
    color: #1e3a8a;
    line-height: 1.5;
}

.privilege-text strong {
    color: #1e3a8a;
}

.symbols-warning {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
}

.warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.warning-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.legal-conclusion {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.legal-conclusion h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.conclusion-points {
    display: grid;
    gap: 1rem;
}

.conclusion-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
    transition: all 0.3s ease;
}

.conclusion-point:hover {
    background-color: #e8eaf6;
    transform: translateX(5px);
}

.point-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.point-text {
    font-size: 1rem;
    color: #1e3a8a;
    line-height: 1.5;
    font-weight: 500;
}

/* Секция чек-листа */
.checklist-section {
    padding: 80px 0;
    background-color: white;
}

.checklist-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e3a8a;
    font-size: 2rem;
}

.checklist-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.checklist-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.checklist-container {
    max-width: 1000px;
    margin: 0 auto;
}

.checklist-category {
    margin-bottom: 3rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.checklist-category h3 {
    background-color: #1e3a8a;
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.checklist-items {
    padding: 1.5rem;
}

.checklist-item {
    margin-bottom: 1rem;
}

.checklist-item:last-child {
    margin-bottom: 0;
}

.checkbox {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.checkbox-label:hover {
    background-color: #f8f9fa;
    border-left-color: #1e3a8a;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #6c757d;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkbox:checked + .checkbox-label {
    background-color: #e8eaf6;
    border-left-color: #1e3a8a;
}

.checkbox:checked + .checkbox-label .checkmark {
    background-color: #1e3a8a;
    border-color: #6c757d;
}

.checkbox:checked + .checkbox-label .checkmark::after {
    opacity: 1;
}

.checkbox:checked + .checkbox-label .check-text {
    color: #1e3a8a;
    font-weight: 500;
}

.check-text {
    font-size: 1rem;
    color: #1e3a8a;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.red-text {
    color: #1e3a8a !important;
    font-weight: 600;
}

.checklist-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e3a8a 100%);
    color: white;
    border-radius: 10px;
    text-align: center;
}

.summary-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary-text {
    font-size: 1.1rem;
    line-height: 1.5;
}

.summary-text strong {
    font-size: 1.2rem;
}

/* Секция частых ошибок */
.common-mistakes {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.common-mistakes h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e3a8a;
    font-size: 2rem;
}

.mistakes-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.mistakes-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.mistakes-table {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.mistakes-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #1e3a8a;
    color: white;
    font-weight: 600;
    padding: 1.5rem 1rem;
}

.mistakes-header .mistakes-col {
    color: white;
    background-color: #1e3a8a;
}

.mistakes-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.mistakes-row:hover {
    background-color: #f0f9ff;
}

.mistakes-row:last-child {
    border-bottom: none;
}

.mistakes-col {
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mistakes-header .mistakes-col {
    padding: 0;
}

.mistakes-col-error {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1e3a8a;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mistakes-col-consequence {
    color: #555;
    line-height: 1.5;
}


.mistakes-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
}

.warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.warning-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.warning-text strong {
    color: #1e3a8a;
}

/* Секция вариантов регистрации */
.registration-options-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.registration-options-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
    font-size: 2rem;
}

.registration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.registration-card {
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 120, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(100, 100, 100, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(140, 140, 140, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%, #f8f8f8 100%);
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.registration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(0, 0, 0, 0.02) 100px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(0, 0, 0, 0.02) 100px
        );
    pointer-events: none;
    border-radius: 10px;
}

.registration-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #1e3a8a;
}

.registration-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.registration-card h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.registration-features {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.registration-features p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.telegram-link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.telegram-link:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

.registration-price {
    color: #1e3a8a;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.price-lines {
    margin-top: 1rem;
}

.price-line {
    background: transparent;
    color: #1e3a8a;
    padding: 0.5rem 1rem;
    margin-bottom: 0.3rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.price-line:last-child {
    margin-bottom: 0;
}

/* Секция окошек */
.windows-section {
    padding: 100px 0;
    background-color: white;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.windows-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
    font-size: 2rem;
}

.windows-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.window-card {
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 120, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(100, 100, 100, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(140, 140, 140, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%, #f8f8f8 100%);
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.window-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(0, 0, 0, 0.02) 100px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(0, 0, 0, 0.02) 100px
        );
    pointer-events: none;
    border-radius: 10px;
}

.window-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #1e3a8a;
}

.window-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.window-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.window-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Секция услуг */
.services {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Секция о компании */
.about {
    padding: 100px 0;
    background-color: white;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.stat-label {
    font-size: 1rem;
    color: #7f8c8d;
}

/* Секция клиентов */
.clients {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.clients-description {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clients-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.client-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.client-category h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.client-category p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Секция контактов и публикаций */
.contact-publications {
    padding: 100px 0;
    background-color: white;
}

.contact-publications-content {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section h2,
.publications-section h2 {
    color: #1e3a8a;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.publications-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.publications-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.publication-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.publication-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-left-color: #1e3a8a;
}

.publication-item h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.publication-item p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.publication-link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.publication-link:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

/* Секция контактов */
.contact {
    padding: 100px 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-section h3 {
    color: #1e3a8a;
    margin-bottom: 2rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #1e3a8a;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item span {
    color: #555;
}

/* Форма */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

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

/* Статьи */
.article-content {
    padding: 3rem 0;
}

.article-content h1 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.article-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #333;
}

.article-section {
    margin: 3rem 0;
}

.article-section h2 {
    font-size: 2rem;
    color: #2c5282;
    margin: 2rem 0 1rem;
    border-bottom: 2px solid #2c5282;
    padding-bottom: 0.5rem;
}

.article-section h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin: 1.5rem 0 1rem;
}

.article-section h4 {
    font-size: 1.2rem;
    color: #2c5282;
    margin: 1rem 0 0.5rem;
}

.article-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.important-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
}

.important-note p {
    margin: 0;
}

.strategy-list {
    margin: 2rem 0;
}

.strategy-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2c5282;
}

.strategy-item h4 {
    color: #1e3a8a;
    margin-top: 0;
}

.process-block {
    margin: 2rem 0;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
}

.timeline-step .stage-number {
    background-color: #2c5282;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-step .step-content {
    flex: 1;
}

.timeline-step h4 {
    margin-top: 0;
    color: #1e3a8a;
}

.benefits-block {
    background-color: #e7f3ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.benefits-block h4 {
    color: #1e3a8a;
    margin-top: 0;
}

.benefits-block ul {
    margin: 1rem 0;
}

.benefits-block li {
    margin: 0.5rem 0;
    color: #333;
}

.cta-section {
    background-color: #2c5282;
    padding: 3rem 0;
    margin: 3rem 0;
}

.cta-block {
    text-align: center;
    color: white;
}

.cta-block h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-block p {
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #d97706;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #b45309;
}

.cta-phone {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.cta-phone a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 500;
}

.cta-phone a:hover {
    text-decoration: underline;
}

.related-articles {
    margin: 3rem 0;
}

.related-articles h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.related-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.related-card h3 a {
    color: #1e3a8a;
    text-decoration: none;
}

.related-card h3 a:hover {
    color: #2c5282;
    text-decoration: underline;
}

.related-card p {
    color: #666;
    margin: 0;
}

/* Подвал */
.breadcrumbs {
    background-color: #f8f9fa;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumbs a {
    color: #2c5282;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #6c757d;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 0 1rem;
    width: 100%;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-content p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-info h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
}

.footer-info p {
    color: #ffffff;
}

.footer-info .logo {
    text-decoration: none;
    color: inherit;
}

.footer-info .logo h1 {
    color: white;
}

.footer-info .logo .tagline {
    color: #bdc3c7;
}

.footer-links h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-links p {
    margin: 0.3rem 0;
    color: white;
}

.footer-links a {
    color: #1e3a8a;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-contact {
    color: white;
}

.footer-contact p {
    color: white;
    margin: 0.5rem 0;
}

.footer-contact a {
    color: #1e3a8a;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Простые стили для таблиц */
.timeline-table,
.accelerated-table,
.rights-table,
.mistakes-table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 2rem auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    table-layout: fixed;
}

.timeline-header,
.accelerated-header,
.rights-header,
.mistakes-header {
    background: #1e3a8a;
    color: white;
    font-weight: 600;
    padding: 1rem;
    text-align: center;
}

.timeline-row,
.accelerated-row,
.rights-row,
.mistakes-row {
    border-bottom: 1px solid #e0e0e0;
}

.timeline-row:hover,
.accelerated-row:hover,
.rights-row:hover,
.mistakes-row:hover {
    background: #f8f9fa;
}

.timeline-col,
.accelerated-col,
.rights-col,
.mistakes-col {
    padding: 1rem;
    border-right: 1px solid #e0e0e0;
    text-align: left;
    vertical-align: top;
}

.timeline-col:last-child,
.accelerated-col:last-child,
.rights-col:last-child,
.mistakes-col:last-child {
    border-right: none;
}

/* Специальное выравнивание для колонок сроками */
.timeline-col-duration,
.accelerated-col-duration {
    text-align: center;
    font-weight: 600;
    color: #1e3a8a;
}


/* Адаптивность */
@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
    }
    
    .navigation.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    
    /* Предотвращение прокрутки при открытом меню */
    body.menu-open {
        overflow: hidden;
    }
    
    .navigation ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .navigation ul li {
        margin: 0;
    }
    
    .navigation ul li a {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1e3a8a;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .navigation ul li a:hover {
        color: #1e3a8a;
    }
    
    .contact-info {
        display: none;
    }
    
    .logo {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }
    
    .logo-img {
        height: 50px;
        max-width: 60px;
    }
    
    .logo-text {
        min-width: auto;
        text-align: center;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
        color: #1e3a8a;
        text-align: center;
        font-weight: 900;
    }
    
    .tagline {
        font-size: 1.2rem;
        color: #1e3a8a;
        font-weight: 600;
        text-align: center;
    }
    
    .navigation ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .registration-steps {
        padding: 60px 0;
    }
    
    .registration-steps h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .steps-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-item {
        padding: 0.8rem;
    }
    
    .step-text {
        font-size: 1rem;
    }
    
    .registration-timeline {
        padding: 60px 0;
    }
    
    .registration-timeline h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .timeline-intro {
        margin-bottom: 2rem;
    }
    
    .timeline-intro p {
        font-size: 1rem;
    }
    
    /* Обертка для таблиц на мобильных */
    .timeline-table,
    .accelerated-table,
    .rights-table,
    .mistakes-table {
        font-size: 0.9rem;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
        margin: 1rem 0;
    }
    
    .timeline-header,
    .accelerated-header,
    .rights-header,
    .mistakes-header {
        display: table;
        width: 100%;
        min-width: 500px;
    }
    
    .timeline-row,
    .accelerated-row,
    .rights-row,
    .mistakes-row {
        display: table;
        width: 100%;
        min-width: 500px;
    }
    
    .timeline-col,
    .accelerated-col,
    .rights-col,
    .mistakes-col {
        padding: 0.8rem;
        display: table-cell;
        white-space: normal;
    }
    
    .timeline-summary {
        flex-direction: column;
        text-align: center;
        margin: 2rem 1rem 0;
        padding: 1.5rem;
    }
    
    .summary-text {
        font-size: 1rem;
    }
    
    .accelerated-registration {
        padding: 60px 0;
    }
    
    .accelerated-registration h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .accelerated-intro {
        margin-bottom: 2rem;
    }
    
    .accelerated-intro p {
        font-size: 1rem;
    }
    
    .accelerated-conditions,
    .accelerated-timeline {
        margin-bottom: 2rem;
    }
    
    .accelerated-conditions h3,
    .accelerated-timeline h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .condition-item {
        padding: 1rem;
    }
    
    .condition-text {
        font-size: 1rem;
    }
    
    
    .accelerated-summary {
        flex-direction: column;
        text-align: center;
        margin: 0 1rem 1.5rem;
        padding: 1.5rem;
    }
    
    .accelerated-warning {
        margin: 0 1rem;
        padding: 1rem;
    }
    
    .warning-text {
        font-size: 0.9rem;
    }
    
    .hero-text {
        margin: 1.5rem auto 0;
        padding: 0 1rem;
    }
    
    .hero-text .author {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-features {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .hero-features p {
        font-size: 1rem;
    }
    
    .hero-promo {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .hero-promo h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-promo p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .registration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .registration-card {
        padding: 1.5rem;
    }
    
    .registration-icon {
        font-size: 2.5rem;
    }
    
    .registration-card h3 {
        font-size: 1.2rem;
    }
    
    .registration-features p {
        font-size: 0.9rem;
    }
    
    .registration-price {
        font-size: 1.1rem;
    }
    
    .price-lines {
        margin-top: 0.8rem;
    }
    
    .price-line {
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.25rem;
        font-size: 0.85rem;
    }
    
    .windows-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .window-card {
        padding: 1.5rem;
    }
    
    .window-icon {
        font-size: 2.5rem;
    }
    
    .window-card h3 {
        font-size: 1.2rem;
    }
    
    .window-card p {
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-publications-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .publications-section {
        padding: 1.5rem;
    }
    
    .publication-item {
        padding: 1.2rem;
    }
    
    .publication-item h3 {
        font-size: 1rem;
    }
    
    .publication-item p {
        font-size: 0.9rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-text h1 {
        font-size: 1rem;
        color: #1e3a8a;
        text-align: left;
        font-weight: 900;
    }
    
    .tagline {
        font-size: 1rem;
        color: #1e3a8a;
        font-weight: 600;
        text-align: left;
    }
    
    .navigation ul li a {
        font-size: 1.3rem;
    }
    
    /* Простые стили для таблиц на мобильных */
    .timeline-table,
    .accelerated-table,
    .rights-table,
    .mistakes-table {
        font-size: 0.8rem;
    }
    
    .timeline-col,
    .accelerated-col,
    .rights-col,
    .mistakes-col {
        padding: 0.6rem;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .registration-steps {
        padding: 40px 0;
    }
    
    .registration-steps h2 {
        font-size: 1.3rem;
    }
    
    .step-text {
        font-size: 0.9rem;
    }
    
    .registration-timeline {
        padding: 40px 0;
    }
    
    .registration-timeline h2 {
        font-size: 1.3rem;
    }
    
    .timeline-intro p {
        font-size: 0.9rem;
    }
    
    .timeline-summary {
        margin: 1.5rem 0.5rem 0;
        padding: 1rem;
    }
    
    .summary-text {
        font-size: 0.9rem;
    }
    
    .summary-text strong {
        font-size: 1rem;
    }
    
    .accelerated-registration {
        padding: 40px 0;
    }
    
    .accelerated-registration h2 {
        font-size: 1.3rem;
    }
    
    .accelerated-intro p {
        font-size: 0.9rem;
    }
    
    .accelerated-conditions h3,
    .accelerated-timeline h3 {
        font-size: 1.1rem;
    }
    
    .condition-text {
        font-size: 0.9rem;
    }
    
    .accelerated-summary {
        margin: 0 0.5rem 1rem;
        padding: 1rem;
    }
    
    .accelerated-warning {
        margin: 0 0.5rem;
        padding: 0.8rem;
    }
    
    .warning-text {
        font-size: 0.8rem;
    }
    
    .rights-timeline {
        padding: 60px 0;
    }
    
    .rights-timeline h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .rights-intro {
        margin-bottom: 2rem;
    }
    
    .rights-intro p {
        font-size: 1rem;
    }
    
    .rights-table {
        margin: 0;
    }
    
    .rights-header,
    .rights-row {
        grid-template-columns: 1fr;
    }
    
    .rights-header .rights-col {
        padding: 1rem;
        border-bottom: 1px solid #444;
    }
    
    .rights-row .rights-col {
        padding: 1rem;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .rights-col-moment {
        flex-direction: row;
        align-items: center;
    }
    
    .rights-col-moment::before {
        content: "Момент: ";
        font-weight: 600;
        color: #666;
    }
    
    .rights-col-meaning::before {
        content: "Значение: ";
        font-weight: 600;
        color: #666;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .privileges-section {
        margin-bottom: 2rem;
    }
    
    .privileges-section h3 {
        font-size: 1.3rem;
    }
    
    .privilege-item {
        padding: 1rem;
    }
    
    .privilege-text {
        font-size: 0.9rem;
    }
    
    .symbols-warning {
        margin: 0 1rem 2rem;
        padding: 1rem;
    }
    
    .legal-conclusion {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .legal-conclusion h3 {
        font-size: 1.3rem;
    }
    
    .conclusion-point {
        padding: 0.8rem;
    }
    
    .point-text {
        font-size: 0.9rem;
    }
    
    .rights-timeline {
        padding: 40px 0;
    }
    
    .rights-timeline h2 {
        font-size: 1.3rem;
    }
    
    .rights-intro p {
        font-size: 0.9rem;
    }
    
    .privileges-section h3 {
        font-size: 1.1rem;
    }
    
    .privilege-text {
        font-size: 0.8rem;
    }
    
    .legal-conclusion {
        margin: 0 0.5rem;
        padding: 1rem;
    }
    
    .legal-conclusion h3 {
        font-size: 1.1rem;
    }
    
    .conclusion-point {
        padding: 0.6rem;
    }
    
    .point-text {
        font-size: 0.8rem;
    }
    
    .checklist-section {
        padding: 60px 0;
    }
    
    .checklist-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .checklist-intro {
        margin-bottom: 2rem;
    }
    
    .checklist-intro p {
        font-size: 1rem;
    }
    
    .checklist-category {
        margin-bottom: 2rem;
    }
    
    .checklist-category h3 {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .checklist-items {
        padding: 1rem;
    }
    
    .checkbox-label {
        padding: 0.8rem;
    }
    
    .check-text {
        font-size: 0.9rem;
    }
    
    .checklist-summary {
        flex-direction: column;
        text-align: center;
        margin: 2rem 1rem 0;
        padding: 1.5rem;
    }
    
    .summary-text {
        font-size: 1rem;
    }
    
    .checklist-section {
        padding: 40px 0;
    }
    
    .checklist-section h2 {
        font-size: 1.3rem;
    }
    
    .checklist-intro p {
        font-size: 0.9rem;
    }
    
    .checklist-category h3 {
        font-size: 1rem;
        padding: 0.8rem;
    }
    
    .checklist-items {
        padding: 0.8rem;
    }
    
    .checkbox-label {
        padding: 0.6rem;
    }
    
    .check-text {
        font-size: 0.8rem;
    }
    
    .checklist-summary {
        margin: 1.5rem 0.5rem 0;
        padding: 1rem;
    }
    
    .checklist-summary .summary-text {
        font-size: 0.9rem;
    }
    
    .checklist-summary .summary-text strong {
        font-size: 1rem;
    }
    
    .common-mistakes {
        padding: 60px 0;
    }
    
    .common-mistakes h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .mistakes-intro {
        margin-bottom: 2rem;
    }
    
    .mistakes-intro p {
        font-size: 1rem;
    }
    
    .mistakes-table {
        margin: 0;
    }
    
    .mistakes-header,
    .mistakes-row {
        grid-template-columns: 1fr;
    }
    
    .mistakes-header .mistakes-col {
        padding: 1rem;
        border-bottom: 1px solid #444;
    }
    
    .mistakes-row .mistakes-col {
        padding: 1rem;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .mistakes-col-error {
        flex-direction: row;
        align-items: center;
    }
    
    .mistakes-col-error::before {
        content: "Ошибка: ";
        font-weight: 600;
        color: #666;
    }
    
    .mistakes-col-consequence::before {
        content: "Последствие: ";
        font-weight: 600;
        color: #666;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .mistakes-warning {
        margin: 0 1rem;
        padding: 1rem;
    }
    
    .warning-text {
        font-size: 0.9rem;
    }
    
    .common-mistakes {
        padding: 40px 0;
    }
    
    .common-mistakes h2 {
        font-size: 1.3rem;
    }
    
    .mistakes-intro p {
        font-size: 0.9rem;
    }
    
    .mistakes-warning {
        margin: 0 0.5rem;
        padding: 0.8rem;
    }
    
    .mistakes-warning .warning-text {
        font-size: 0.8rem;
    }
    
    .registration-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .registration-card {
        padding: 1.2rem;
    }
    
    .registration-icon {
        font-size: 2rem;
    }
    
    .registration-card h3 {
        font-size: 1.1rem;
    }
    
    .registration-features p {
        font-size: 0.85rem;
    }
    
    .registration-price {
        font-size: 1rem;
    }
    
    .price-lines {
        margin-top: 0.6rem;
    }
    
    .price-line {
        padding: 0.3rem 0.6rem;
        margin-bottom: 0.2rem;
        font-size: 0.8rem;
    }
    
    .registration-options-section {
        padding: 60px 0;
    }
    
    .registration-options-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .windows-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .window-card {
        padding: 1.2rem;
    }
    
    .window-icon {
        font-size: 2rem;
    }
    
    .window-card h3 {
        font-size: 1.1rem;
    }
    
    .window-card p {
        font-size: 0.85rem;
    }
    
    .windows-section {
        padding: 60px 0;
    }
    
    .windows-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .services,
    .about,
    .clients,
    .contact {
        padding: 60px 0;
    }
}

/* Дополнительные эффекты */
.service-card,
.client-category,
.window-card,
.registration-card {
    transition: all 0.3s ease;
}

.service-card:hover,
.client-category:hover,
.window-card:hover,
.registration-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Анимации при прокрутке */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.client-category,
.window-card,
.registration-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Стили для формы обратной связи */
.contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.95rem;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.submit-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e3a8a 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline;
}

/* Адаптивные стили для формы */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .submit-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
}

/* Стили для секции преимуществ */
.advantages-content {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.advantage-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f8f9fa;
}

.advantage-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.advantage-section h3 {
    color: #495057;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.advantage-section p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Стили для секции статей на главной странице */
.articles {
    padding: 80px 0;
    background: #fafafa;
}

.articles h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.article-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.article-content {
    padding: 2rem;
}

.article-content h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.2rem;
}

.article-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content h3 a:hover {
    color: #34495e;
}

.article-excerpt {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #9ca3af;
}

.read-more {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.read-more:hover {
    border-bottom-color: #374151;
}

/* Стили для отдельных статей */
.article {
    padding: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 2rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 1rem;
    font-style: italic;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #64748b;
    font-size: 0.9rem;
}

.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-content h2 {
    color: #1e3a8a;
    margin: 2rem 0 1rem 0;
    font-size: 1.8rem;
}

.article-content h3 {
    color: #1e3a8a;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.4rem;
}

.article-content p {
    margin-bottom: 1rem;
}

.article-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.alert-box {
    background: #f8f9fa;
    border-left: 4px solid #6c757d;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.alert-box h3 {
    color: #495057;
    margin-top: 0;
}

.price-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th {
    background: #6c757d;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 500;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    vertical-align: top;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.example-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 6px;
}

.highlight-box {
    background: #e9ecef;
    border: 1px solid #ced4da;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.expert-comment {
    background: #f8f9fa;
    border-left: 4px solid #6c757d;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-item {
    background: white;
    padding: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.tip-item h3 {
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.source-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.source-box h3 {
    color: #495057;
    margin-top: 0;
}

.cta-box {
    background: #495057;
    color: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    text-align: center;
}

.cta-box h3 {
    color: white;
    margin-top: 0;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #6c757d;
    color: white;
}

.btn-primary:hover {
    background: #5a6268;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #495057;
}

/* Стили для страницы представительства */
.about-representation {
    padding: 80px 0;
    background-color: white;
}

.representation-content {
    max-width: 900px;
    margin: 0 auto;
}

.representation-text {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.representation-text-content {
    flex: 1;
}

.representation-text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.representation-text p:last-child {
    margin-bottom: 0;
}

.opening-image {
    flex-shrink: 0;
}

.opening-image img {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 100%;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
    font-size: 2rem;
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
}

.team-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
}

.team-leader {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-leader h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.leader-info {
    max-width: 600px;
    margin: 0 auto;
}

.leader-details h4 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.leader-details p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: left;
}

.services-section {
    padding: 80px 0;
    background-color: white;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
    font-size: 2rem;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1e3a8a;
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: #e8eaf6;
    transform: translateX(5px);
}

.service-number {
    background-color: #1e3a8a;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.service-text {
    font-size: 1.1rem;
    color: #1e3a8a;
    font-weight: 500;
    line-height: 1.5;
}

.advantages-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.advantages-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
    font-size: 2rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.advantage-item h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-item p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-location {
    padding: 80px 0;
    background-color: white;
}

.contact-location h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
    font-size: 2rem;
}

.location-info {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1e3a8a;
}

.location-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.location-text {
    font-size: 1.1rem;
    color: #1e3a8a;
    line-height: 1.6;
}

.location-text strong {
    color: #1e3a8a;
    font-weight: 600;
}

.cta-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.2rem;
    color: #1e3a8a;
    font-weight: 500;
    line-height: 1.6;
}

.stats-section {
    padding: 80px 0;
    background-color: white;
}

.stats-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
    font-size: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.stat-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.representation-benefits {
    padding: 80px 0;
    background-color: white;
}

.representation-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
    font-size: 2rem;
}

.benefits-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-text-content {
    flex: 1;
}

.office-image {
    flex-shrink: 0;
}

.office-image img {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 100%;
}

.benefit-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.benefit-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.benefit-section h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-section p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

.pricing-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e3a8a;
    font-size: 2rem;
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.pricing-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.pricing-features {
    margin-bottom: 1.5rem;
}

.pricing-features p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.pricing-features p:last-child {
    margin-bottom: 0;
}

.pricing-price {
    text-align: center;
}

.price-line {
    background: transparent;
    color: #1e3a8a;
    padding: 0.5rem 1rem;
    margin-bottom: 0.3rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #e0e0e0;
}

.price-line:last-child {
    margin-bottom: 0;
}

.pricing-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
}

.pricing-note p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Стили для мобильных устройств */
@media (max-width: 768px) {
    .advantages-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .advantage-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .advantage-section h3 {
        font-size: 1.1rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .article-card {
        margin: 0 1rem;
    }
    
    .article-content {
        padding: 1.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .navigation {
        width: 100%;
    }
    
    .navigation ul {
        width: 100%;
        justify-content: center;
    }
    
    /* Адаптивные стили для страницы представительства */
    .about-representation {
        padding: 60px 0;
    }
    
    .representation-text {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .opening-image {
        order: -1;
        text-align: center;
    }
    
    .opening-image img {
        width: 100%;
        max-width: 400px;
    }
    
    .representation-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .benefits-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .office-image {
        order: -1;
        text-align: center;
    }
    
    .office-image img {
        width: 100%;
        max-width: 400px;
    }
    
    .team-section {
        padding: 60px 0;
    }
    
    .team-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .team-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .team-leader {
        padding: 2rem 1.5rem;
    }
    
    .team-leader h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .leader-details h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .leader-details p {
        font-size: 1rem;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .services-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-item {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .service-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .service-text {
        font-size: 1rem;
    }
    
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantages-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-item {
        padding: 1.5rem;
    }
    
    .advantage-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .advantage-item p {
        font-size: 0.95rem;
    }
    
    .contact-location {
        padding: 60px 0;
    }
    
    .contact-location h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .location-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-item {
        padding: 1.2rem;
    }
    
    .location-text {
        font-size: 1rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    /* Адаптивные стили для секции статистики */
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .stat-description {
        font-size: 0.9rem;
    }
    
    /* Адаптивные стили для секции преимуществ представительства */
    .representation-benefits {
        padding: 60px 0;
    }
    
    .representation-benefits h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .benefit-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .benefit-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .benefit-section p {
        font-size: 1rem;
    }
    
    /* Адаптивные стили для секции цен */
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-intro {
        margin-bottom: 2rem;
    }
    
    .pricing-intro p {
        font-size: 1.1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .pricing-features p {
        font-size: 0.9rem;
    }
    
    .price-line {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .pricing-note {
        padding: 1.2rem;
    }
    
    .pricing-note p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .about-representation {
        padding: 40px 0;
    }
    
    .representation-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .team-section {
        padding: 40px 0;
    }
    
    .team-section h2 {
        font-size: 1.3rem;
    }
    
    .team-content p {
        font-size: 1rem;
    }
    
    .team-leader {
        padding: 1.5rem 1rem;
    }
    
    .team-leader h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .leader-details h4 {
        font-size: 1.1rem;
    }
    
    .leader-details p {
        font-size: 0.95rem;
    }
    
    .services-section {
        padding: 40px 0;
    }
    
    .services-section h2 {
        font-size: 1.3rem;
    }
    
    .service-item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .service-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .service-text {
        font-size: 0.95rem;
    }
    
    .advantages-section {
        padding: 40px 0;
    }
    
    .advantages-section h2 {
        font-size: 1.3rem;
    }
    
    .advantage-item {
        padding: 1.2rem;
    }
    
    .advantage-item h3 {
        font-size: 1.1rem;
    }
    
    .advantage-item p {
        font-size: 0.9rem;
    }
    
    .contact-location {
        padding: 40px 0;
    }
    
    .contact-location h2 {
        font-size: 1.3rem;
    }
    
    .location-item {
        padding: 1rem;
    }
    
    .location-text {
        font-size: 0.95rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    /* Адаптивные стили для секции статистики на мобильных */
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-section h2 {
        font-size: 1.3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .stat-description {
        font-size: 0.85rem;
    }
    
    /* Адаптивные стили для секции преимуществ представительства на мобильных */
    .representation-benefits {
        padding: 40px 0;
    }
    
    .representation-benefits h2 {
        font-size: 1.3rem;
    }
    
    .benefit-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .benefit-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .benefit-section p {
        font-size: 0.95rem;
    }
    
    /* Адаптивные стили для секции цен на мобильных */
    .pricing-section {
        padding: 40px 0;
    }
    
    .pricing-section h2 {
        font-size: 1.3rem;
    }
    
    .pricing-intro p {
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 1.2rem;
    }
    
    .pricing-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .pricing-features p {
        font-size: 0.85rem;
    }
    
    .price-line {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .pricing-note {
        padding: 1rem;
    }
    
    .pricing-note p {
        font-size: 0.9rem;
    }
    
    /* Дополнительные адаптивные стили для изображений */
    .opening-image img,
    .office-image img {
        max-width: 100%;
        width: 100%;
    }
}

/* Стили подвала из Crimea */
/* 4 окна над подвалом */
.info-windows-section {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    padding: 3rem 0;
    color: white;
}

.info-windows {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.info-window {
    flex: 1;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.info-window h3 {
    color: #ecf0f1;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

.info-content p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.info-content p strong {
    color: #ecf0f1;
    font-weight: 600;
}

.telegram-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.telegram-link {
    display: inline-block;
    padding: 10px 20px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
}

.telegram-link:hover {
    background: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
}

.telegram-channels-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.telegram-channel-link {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    color: #ecf0f1;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #ecf0f1;
}

.telegram-channel-link:hover {
    background: #ecf0f1;
    color: #2c3e50;
    transform: translateY(-2px);
}


/* Адаптивность для 4 окон */
@media (max-width: 768px) {
    .info-windows {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .info-window {
        max-width: none;
        padding: 1.5rem;
    }
    
    .telegram-links,
    .telegram-channels-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
