/* ======================================================= */
/* 1. БАЗОВЫЕ СТИЛИ, СБРОСЫ И ПЕРЕМЕННЫЕ (ROOT) */
/* ======================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* --- ОПРЕДЕЛЕНИЕ ЦВЕТОВ И ПЕРЕМЕННЫХ --- */
:root {
    --accent-color-dark: #38761d;
    --accent-color-light: #6aa84f;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --background-light: #f9ffef;
    --background-white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --section-padding: 6rem 0;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* ======================================================= */
/* 2. UTILITY & TYPOGRAPHY */
/* ======================================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    margin-bottom: 4rem;
    text-align: left; /* Базовое выравнивание по левому краю */
}

/* УНИФИКАЦИЯ: Единый стиль заголовков для всех секций */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-align: inherit;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: inherit;
    max-width: 600px;
    margin: 0 0 3rem; /* Сброс margin-auto */
    line-height: 1.7;
}

/* Если нужно центрирование для секции */
.section-header.text-center {
    text-align: center;
}
.section-header.text-center .section-subtitle {
    margin: 0 auto 3rem;
}

/* ======================================================= */
/* 3. HEADER & NAVIGATION */
/* ======================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color-dark), var(--accent-color-light)); 
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #4a5568;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 4. HERO SECTION */
/* ======================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1a202c;
    background-image: url('../pictures/hero-landscape.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35); 
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 80px;
}

.hero-title {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5); 
}

.title-main {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.title-highlight {
    display: block;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #f7fafc, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none; 
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 1;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7); 
    color: white; 
}

/* УНИФИКАЦИЯ КНОПОК */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-color-dark), var(--accent-color-light));
    color: white;
    box-shadow: 0 4px 20px rgba(56, 118, 29, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(56, 118, 29, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* ======================================================= */
/* 🚀 НОВЫЕ СТИЛИ ДЛЯ ТРЕХ КНОПОК ТУРА (hero-cta-tours) */
/* ======================================================= */

/* Контейнер для трех кнопок */
.hero-cta-tours {
    display: flex;
    justify-content: center;
    gap: 1.5rem; /* Отступ между кнопками */
    flex-wrap: wrap; /* Разрешаем перенос на новую строку */
    margin-bottom: 3rem; /* Отступ от кнопок до статистики */
}

/* Стилизация новой третьей кнопки (Tertiary) */
.cta-button.tertiary {
    background: var(--background-light); /* Светлый фон */
    color: var(--accent-color-dark); /* Темно-зеленый текст */
    border: 2px solid var(--accent-color-light); /* Светло-зеленая рамка */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.tertiary:hover {
    background: var(--background-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: var(--text-primary); /* Более темный текст при наведении */
}

/* Адаптивность для трех кнопок на мобильных устройствах */
@media (max-width: 768px) {
    .hero-cta-tours {
        flex-direction: column; /* Кнопки одна под другой */
        gap: 1rem;
    }
    .hero-cta-tours .cta-button {
        width: 100%; /* Растягиваем кнопки на всю ширину контейнера */
        max-width: 300px; /* Ограничиваем максимальную ширину для красоты */
        margin-left: auto;
        margin-right: auto;
        justify-content: center; /* Центрируем содержимое (иконку и текст) */
    }
}

/* ======================================================= */
/* 4. HERO SECTION (СТАТИСТИКА И ПРОКРУТКА) */
/* ======================================================= */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    opacity: 0.8;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}


/* ======================================================= */
/* 5. HOTEL (ABOUT) SECTION */
/* ======================================================= */
/* ... (СТИЛИ HOTEL SECTION БЕЗ ИЗМЕНЕНИЙ) ... */
.hotel {
  padding: var(--section-padding);
  background: var(--background-light);
}

.hotel-gallery {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hotel-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hotel-card.reverse {
  flex-direction: row-reverse;
}

.hotel-card img {
  width: 48%;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.hotel-card img:hover {
  transform: scale(1.03);
}

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

.hotel-text h3 {
  font-size: 1.5rem;
  color: var(--accent-color-dark);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.hotel-footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


/* ======================================================= */
/* 6. ATTRACTIONS SECTION (ФИНАЛЬНОЕ ИСПРАВЛЕНИЕ: Hover-эффект и Grid) */
/* ======================================================= */
.attractions {
    padding: var(--section-padding);
    background: var(--background-white);
}

.attractions-grid {
    display: grid;
    /* Структура для 5 элементов: Большая (2fr) и две пары маленьких (1fr 1fr) */
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    height: 450px; /* КЛЮЧ: Фиксированная высота сетки */
}

/* Элемент в сетке */
.attraction-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* КЛЮЧ: Занимает 100% высоты ячейки Grid */
}

/* Эффект при наведении на элемент */
.attraction-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.attraction-item.large {
    grid-row: 1 / 3; /* Большая карточка занимает 2 строки */
}

/* Изображение */
.attraction-photo {
    width: 100%;
    height: 100%; /* КЛЮЧ: Изображение заполняет 100% высоты контейнера */
    object-fit: cover; /* Заполняет и обрезает, сохраняя пропорции */
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

/* 🚀 КОНТЕЙНЕР ДЛЯ ТЕКСТА (Оверлей) */
/* 🚀 КОНТЕЙНЕР ДЛЯ ТЕКСТА (Оверлей) - ФИНАЛЬНЫЙ ВАРИАНТ */
.attraction-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; 
    
    /* 💥 КЛЮЧ: Уменьшаем padding, чтобы дать тексту больше места */
    padding: 1.5rem; /* Симметричный padding по 1.5rem со всех сторон */
    
    /* ЭФФЕКТ СКРЫТИЯ/ПОКАЗА */
    opacity: 0;
    visibility: hidden; 
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.6); 
    color: white;
    
    /* 💥 Flexbox для центрирования */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Центрируем, чтобы текст не прижимался к верху */
    align-items: center; 
    text-align: center;
    
    /* Отступ между заголовком и описанием */
    gap: 0.5rem; 
} 
/* ПОКАЗЫВАЕМ ТЕКСТ ПРИ НАВЕДЕНИИ */
.attraction-item:hover .attraction-info {
    opacity: 1;
    visibility: visible;
}

.attraction-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0 rem;
    color: white; 
}

.attraction-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    max-width: 80%;
    color: rgba(255, 255, 255, 0.9); 
}

/* Адаптивность для мобильных устройств */
@media (max-width: 992px) {
    .attractions-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .attraction-item.large {
        grid-row: auto;
    }
    .attraction-item {
        height: 350px; 
    }
    .attraction-info {
        opacity: 1;
        visibility: visible;
        background: rgba(0, 0, 0, 0.75); 
    }
}
.attraction-info .attraction-title {
    margin-top: 0 !important; 
    margin-bottom: 0 !important; /* На всякий случай */
}

/* ======================================================= */
/* 7. NATURE SECTION (ИСПРАВЛЕНО: Заголовок на всю ширину) */
/* ======================================================= */
.nature {
    padding: var(--section-padding);
    background: var(--background-white); 
}

/* КЛЮЧЕВОЕ ИСПРАВЛЕНИЕ: Выравнивание заголовка и подзаголовка по левому краю */
/* Для этого мы оборачиваем заголовок и подзаголовок в контейнер .section-header в HTML, 
   и он уже по умолчанию выровнен по левому краю (text-align: left;) */
.nature .section-header {
    margin-bottom: 4rem;
    text-align: left !important; /* Принудительно левое выравнивание */
    max-width: 100%;
}
.nature .section-subtitle {
    max-width: none; 
    margin: 0 0 3rem; 
}


.nature-content {
    /* Начинается здесь, чтобы заголовок был СВЕРХУ на всю ширину */
    display: flex; 
    align-items: flex-start; 
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nature-text {
    flex: 1.5; 
}

.nature-visual {
    flex: 1; 
    display: flex;
    justify-content: flex-end;
    min-width: 300px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden; 
}

/* Стили для тега <img> внутри nature-visual */
.nature-visual img.nature-image {
    width: 100%;
    height: 100%; 
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.nature-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.nature-features {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: row; 
    flex-wrap: wrap; 
    gap: 1.5rem 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    flex: 1 1 45%; 
    gap: 1rem;
}

.feature-item i {
    font-size: 2.5rem; 
    color: var(--accent-color-dark); 
    width: 40px;
    text-align: center;
    flex-shrink: 0; 
}

.feature-text h4 {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 992px) {
    .nature-content {
        flex-direction: column; 
        align-items: center;
        text-align: center;
    }
    .nature-text, .nature-visual {
        flex: none;
        width: 100%;
        min-width: unset;
    }
    .nature-visual {
        order: 1; 
        margin-top: 2rem;
        height: auto; 
    }
    .nature-visual img.nature-image {
        height: auto; 
        max-height: 400px; 
    }
    .nature .section-header,
    .nature-description {
        text-align: center !important; 
    }
    .nature .section-subtitle {
        text-align: center;
        margin: 0 auto 3rem;
    }
    .feature-item {
        flex: 1 1 100%; 
        justify-content: flex-start;
        text-align: left;
    }
}

/* ======================================================= */
/* 8. PROGRAM SECTION (ФИНАЛЬНЫЙ КОД) */
/* ======================================================= */
.program {
    /* Оставляем только вертикальные отступы, удаляем горизонтальные: */
    padding-top: 6rem; 
    padding-bottom: 6rem;
    padding-left: 0; 
    padding-right: 0; 
    background-color: var(--background-white); 
}

/* 🚀 ФИНАЛЬНОЕ ИСПРАВЛЕНИЕ ДЕСКТОПА: Заголовок и подзаголовок */
.program .section-header {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
    text-align: left !important;
}

.program .section-subtitle-full {
    font-family: var(--font-body);
    font-size: 1.25rem; 
    color: var(--text-secondary); 
    line-height: 1.7;
    text-align: left;
    
    width: 100%;
    max-width: 1200px; /* Ограничиваем ширину как у .container */
    margin: 0 auto 3rem; 
    padding: 0 20px; /* Отступы, чтобы не прилипать к краям */
    
    box-sizing: border-box; 
}

/* Общий контейнер для элементов программы */
.program-timeline {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 0;
}

/* Удаление вертикальной линии и кругов (элементы таймлайна) */
.program-timeline::before,
.timeline-item::before {
    content: none; 
}

/* Двухколоночный элемент программы (ДЕСКТОП) */
.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 4rem; 
    gap: 3rem; 
}

/* Чередование колонок */
.timeline-item:nth-child(odd) {
    flex-direction: row; 
}
.timeline-item:nth-child(even) {
    flex-direction: row-reverse; 
}

/* Карточка (контент) */
.timeline-content {
    width: 50%; 
    background: transparent; 
    padding: 0; 
    box-shadow: none;
    border: none;
    z-index: 2;
}
.timeline-content h3 {
    color: var(--accent-color-dark); 
    font-size: 1.6rem;
}

/* Картинка */
.timeline-image {
    width: 50%; 
    z-index: 2;
}
.timeline-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px; 
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Кнопка в конце (если есть) */
.investment-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ======================================================= */
/* 9. INCLUSIONS SECTION */
/* ======================================================= */
.inclusions {
    /* 🚀 КЛЮЧ: Растягиваем фон на всю ширину */
    background-color: var(--background-light); 
    padding-top: 6rem;
    padding-bottom: 6rem;
    /* Убираем горизонтальный отступ, чтобы фон растянулся: */
    padding-left: 0; 
    padding-right: 0; 
}

/* 🚀 ВОССТАНОВЛЕНИЕ: Гарантируем, что контент внутри центрирован и имеет отступы */
.inclusions .container {
    padding-left: 20px; 
    padding-right: 20px;
    margin: 0 auto;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem;
    margin-top: 3rem;
}

.inclusion-block {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.block-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left; 
    /* 💥 ВСЕГДА ЗЕЛЕНЫЙ ЦВЕТ ДЛЯ ЗАГОЛОВКОВ: */
    color: var(--accent-color-dark); 
}

.inclusion-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusion-block li {
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

/* Стилизация иконок */
.inclusion-block li i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    flex-shrink: 0; 
}

/* 🚀 ЦВЕТА ИКОНОК (ВСЕ ЗЕЛЕНЫЕ) */
.inclusion-block.included i,
.inclusion-block.excluded i,
.inclusion-block.details i {
    color: var(--accent-color-dark); 
}
/* ======================================================= */
/* Адаптив (на маленьких экранах - в один столбец) */
/* ======================================================= */
@media (max-width: 992px) {
    
    /* 1. Настройка шапки на мобильных */
    .program .section-header {
        text-align: center !important;
        padding: 0 20px; 
    }
    
    .program .section-subtitle-full {
        text-align: center;
        padding: 0 20px; 
    }

    /* 2. Сброс двухколоночного макета и установка одного столбца */
    .timeline-item,
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        flex-direction: column; /* Элементы идут один под другим */
        align-items: center;
        gap: 1.5rem;
    }
    
    /* 3. Установка 100% ширины для контента и изображений */
    .timeline-content, 
    .timeline-image {
        width: 100%; 
        max-width: none; /* 🚀 Снимаем ограничение ширины контейнера */
        text-align: center;
    }
    
    /* Добавляем горизонтальный отступ внутри контейнера контента */
    .timeline-content {
        padding: 0 20px; 
    }
    
    /* 4. Изменение порядка: Изображение идет первым */
    .timeline-image {
        order: -1; 
    }
    
    /* 5. ФИНАЛЬНОЕ ИСПРАВЛЕНИЕ ИЗОБРАЖЕНИЙ: Гарантируем 100% ширину и сохранение пропорций */
    .timeline-image img {
        width: 100%;
        height: auto; 
        object-fit: cover;
    }
}

/* ======================================================= */
/* 9. INVESTMENT SECTION (ИСПРАВЛЕНО: Заголовок/Подзаголовок по левому краю) */
/* ======================================================= */
.investment {
  padding: var(--section-padding);
  background: var(--background-light); 
}

/* КЛЮЧЕВОЕ ИСПРАВЛЕНИЕ: Выравнивание заголовка и подзаголовка по левому краю */
.investment .section-header {
    text-align: left !important; /* Принудительно левое выравнивание */
}
.investment .section-subtitle {
    margin: 0 0 3rem; /* Убираем центрирование */
}

/* Стиль вступительного текста (если он не использует класс section-subtitle) */
.investment-intro-text {
    /* Наследует .section-subtitle, но задаем параметры ширины и отступа */
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px; 
    margin: 0 0 3rem 0; /* Убираем auto и центрирование */
    text-align: left; 
}


/* Контейнер, который содержит ТОЛЬКО СПЛИТ-КОЛОНКИ (список и картинку) */
.investment-content {
  display: flex;
  align-items: flex-start; 
  justify-content: space-between;
  gap: 4rem; 
  flex-direction: row; 
  max-width: 1200px;
  margin: 0 auto;
}

.investment-text {
  flex: 1.5; 
  min-width: 50%;
}

.investment-image {
  flex: 1; 
  display: flex;
  justify-content: flex-end; 
  min-width: 300px; 
}

.investment-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Стили для многоколоночного списка внутри investment-day (если используется) */
.investment-day-grid {
    display: flex;
    gap: 2rem;
}
.investment-day-grid .column {
    flex: 1;
}

/* Фиксируем выравнивание подзаголовков и списков внутри левой колонки */
.investment-text .section-subtitle {
    max-width: none;
    margin: 1.5rem 0 1rem 0; 
    text-align: left; 
}
.investment-text .benefits-list {
    text-align: left;
    list-style-type: none; 
    padding-left: 0;
}
.investment-text .benefits-list li {
    margin-bottom: 0.5rem;
}

/* Адаптивность: на маленьких экранах - в один столбец */
@media (max-width: 992px) {
    .investment-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .investment-image {
        order: 1; 
        margin-top: 2rem;
    }
    .investment-text {
        order: 0; 
        min-width: 100%;
        text-align: center; 
    }
    /* На мобильных: центрируем текст внутри колонки */
    .investment .section-header,
    .investment-intro-text {
        text-align: center !important;
        margin: 0 auto 3rem;
    }
    .investment-text .section-subtitle,
    .investment-text .benefits-list {
        text-align: center;
    }
    .investment-day-grid {
        flex-direction: column;
        gap: 0;
    }
}

/* ======================================================= */
/* 7.5. CHAKVI SECTION (НОВЫЙ РАЗДЕЛ) */
/* ======================================================= */
/* ======================================================= */
/* 7.5. CHAKVI SECTION (НОВЫЙ РАЗДЕЛ) */
/* ======================================================= */
.chakvi {
    padding: var(--section-padding);
    background: var(--background-light); 
}

/* 🚀 НОВЫЙ FLEX-КОНТЕЙНЕР ДЛЯ ДВУХ КОЛОНОК */
.chakvi-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem; /* Отступ между колонками */
    align-items: flex-start;
    
    max-width: 1200px; /* Ограничиваем максимальную ширину */
    margin: 0 auto; /* Центрируем, если .container вдруг не используется */
}

/* Левая колонка: Текст */
.advantages-column {
    flex: 1.5; /* Занимает больше места, чем картинка */
    min-width: 50%;
}

/* Правая колонка: Картинка */
.chakvi-image {
    flex: 1; /* Занимает меньше места */
    display: flex;
    justify-content: flex-end;
    min-width: 300px;
    
    /* Добавляем стили для оформления */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.chakvi-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Контейнер для списка преимуществ */
.advantages-list {
    /* Удаляем ограничение max-width, чтобы он растянулся на всю колонку */
    max-width: none; 
    margin: 0;
    padding: 0;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem; 
}

.advantage-item .check-icon {
    font-size: 2.5rem;
    color: var(--accent-color-light); 
    flex-shrink: 0; 
    margin-top: 5px; 
}

.advantage-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.advantage-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0; 
}

/* Адаптивность: на маленьких экранах - в один столбец */
@media (max-width: 992px) {
    .chakvi-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .advantages-column,
    .chakvi-image {
        flex: none;
        width: 100%;
        min-width: unset;
    }
    .chakvi-image {
        order: -1; /* Помещаем картинку сверху на мобильных */
    }
    .advantage-item {
        /* Центрируем иконку и текст на мобильных, если нужно */
        align-items: center; 
    }
}

/* ======================================================= */
/* 10. FOOTER */
/* ======================================================= */
/* ... (СТИЛИ FOOTER БЕЗ ИЗМЕНЕНИЙ) ... */
.footer {
    background: #1a202c; 
    color: white; 
    
    /* Сохраняем вертикальный padding, горизонтальный убираем для фона */
    padding: 4rem 0 2rem; 
    font-family: var(--font-body);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Увеличим min-width для 4 колонок */
    
    /* 💥 КЛЮЧ: Задаем одинаковый отступ между всеми колонками */
    gap: 3rem; 
    
    margin-bottom: 2rem;
    
    /* 🚀 КЛЮЧ: Гарантируем, что сетка занимает всю доступную ширину контейнера */
    width: 100%; 
    max-width: none; 
}
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-subtitle {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    font-family: var(--font-heading);
}

.footer-description {
    color: #a0aec0;
    line-height: 1.7;
}

/* 1. ИСПРАВЛЕНИЕ ЦВЕТА ССЫЛОК НАВИГАЦИИ */
.footer-links a {
    text-decoration: none;
    color: #cbd5e0; 
    transition: color 0.3s ease;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.social-link {
  display: inline-flex; /* или flex */
  align-items: center; /* Выравнивает иконку и текст по вертикали */
  gap: 8px; /* Создает отступ между иконкой и текстом */
}

/* 2. ИСПРАВЛЕНИЕ ЦВЕТА ССЫЛОК СОЦИАЛЬНЫХ СЕТЕЙ */
.social-link {
    background: rgba(56, 118, 29, 0.1); 
    border: 1px solid rgba(56, 118, 29, 0.3);
    color: var(--accent-color-light); 
}
.social-links a {
    color: var(--accent-color-light); 
}

/* Общее правило для всех ссылок в футере (если понадобится) */
.footer a {
    color: #cbd5e0; 
}

/* Цвет при наведении */
.footer a:hover {
    color: var(--accent-color-light); 
}

/* Контакты, если они используют стандартные a теги */
.contact-item a {
    color: #cbd5e0; 
}
.contact-item i {
    color: var(--accent-color-light); 
}

/* ======================================================= */
/* 11. SCROLLBARS & ANIMATIONS */
/* ======================================================= */
/* ... (СТИЛИ SCROLLBARS & ANIMATIONS БЕЗ ИЗМЕНЕНИЙ) ... */
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-color-dark), var(--accent-color-light));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-color-dark), #4a902b);
}


.program .container, 
.investment .container,
.chakvi .container,
.footer .container {
    padding-left: 20px; 
    padding-right: 20px;
    margin: 0 auto;
}
