:root{
  /* Нейтральная палитра + один акцент */
  --bg-0:#0f1115;         /* общий тёмный фон блока */
  --bg-1:#161a20;         /* внутренний фон */
  --fg-0:#e9ecef;         /* основной текст на тёмном */
  --muted:#8a919e;        /* вторичный текст/границы */
  --accent:#1f7a8c;       /* аккуратный акцент (не розовый) */
  --accent-2:#155c68;     /* hover для акцента */
  --shadow:0 10px 24px rgba(0,0,0,.25);
}

    .slider-container {
        position: relative;
        width: 100%;
        height: 600px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-0);
        border-radius: 10px;
        box-shadow: var(--shadow);
    }

    .about-container {
        position: relative;
        width: 80%;
        overflow: hidden;
        display: flex;
        align-items: center;
        background: #9c51f1;
    }

    .slides {
        width: 100%;
        height: 100%;
        display: flex;
        position: relative;
    }

    .t-slds__item {
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        /* display: none;  Скрываем все слайды */
    }

    .t-slds__arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: var(--accent);
        color: white;
        border: white;
        padding: 10px 20px;
        cursor: pointer;
        font-size: 18px;
        border-radius: 10px;
        opacity: 0.3;
    }

    .t-slds__arrow-left {
        left: 10px;
    }

    .t-slds__arrow-right {
        right: 10px;
    }

    .t-slds__bullet_wrapper {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 5px;
    }

    .t-slds__bullet {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background:var(--muted); cursor:pointer;
        cursor: pointer;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
        transition: all 0.3s ease;
    }

    .t-slds__bullet:hover {
        transform: scale(1.2);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    }

    .t-slds__bullet_active {
        background: var(--accent);  /* можно сменить цвет активной пули */
        box-shadow:0 0 0 2px rgba(0,0,0,.25) inset, 0 0 10px rgba(31,122,140,.35);
        transform: scale(1.2);
    }




    /* Адаптивность для мобильных устройств */
    @media (max-width: 768px) {
        .slider-container {
            height: 300px;
        }
        .about-container {
            width: 95%;
            flex-direction: column; /* если внутри два элемента рядом */
        }
        .image-src {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .col-md-6 {
            max-width: 80%; /* Уменьшаем ширину для маленьких экранов */
        }
    }

    /* Адаптивность для больших экранов */
    @media (min-width: 1200px) {
        .image-src {
            height: 400px; /* Увеличиваем высоту для больших экранов */
        }
    }
