body {
            font-family: 'System UI', Tahoma, Geneva, Verdana, sans-serif;
            
        }
        p{
            font-size: 1.05rem;
            font-weight: 400;
        }
        li{
            list-style: inside;
        }
        
        /* Слайдер */
        .carousel-item {
            height: 40vh;
            min-height: 400px;
        }
        
        .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }
        
        .carousel-caption {
            background: rgba(0, 0, 0, 0.6);
            border-radius: 10px;
            padding: 20px;
            bottom: 30%;
        }
        
        /* Текстовые блоки */
        .about-section {
            padding: 40px 0;
        }
        
        .about-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            height: 100%;
            margin-bottom: 30px;
        }

        
        .card-icon {
            font-size: 3rem;
            color: #0d6efd;
            margin-bottom: 20px;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .carousel-item {
                height: 50vh;
            }
            
            .carousel-caption {
                bottom: 20%;
                padding: 15px;
            }
            
            .carousel-caption h3 {
                font-size: 1.2rem;
            }
            
            .about-section {
                padding: 50px 0;
            }
        }
        
        @media (max-width: 576px) {
            .carousel-item {
                height: 40vh;
                min-height: 300px;
            }
            
            .carousel-caption {
                bottom: 10%;
                padding: 10px;
            }
            
            .carousel-caption h3 {
                font-size: 1rem;
            }
        }
        .partners-section {
            padding: 60px 0;
            background: #f8f9fa;
        }
        
        .partners-title {
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
            color: #333;
        }
        
        .partners-slider {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .partners-track {
            display: flex;
            animation: scroll 30s linear infinite;
        }
        
        .partner-item {
            flex: 0 0 auto;
            width: 200px;
            margin: 0 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .partner-item:hover {
            transform: translateY(-5px);
        }
        
        .partner-logo {
            max-width: 100%;
            height: 60px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s;
        }
        
        .partner-item:hover .partner-logo {
            filter: grayscale(0%);
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-200px * 6));
            }
        }
        
        /* Пауза при наведении */
        .partners-track:hover {
            animation-play-state: paused;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .partner-item {
                width: 150px;
                margin: 0 20px;
            }
            
            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-150px * 6));
                }
            }
        }
        
        @media (max-width: 576px) {
            .partner-item {
                width: 120px;
                margin: 0 15px;
                padding: 15px;
            }
            
            .partner-logo {
                height: 40px;
            }
            
            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-120px * 6));
                }
            }
        }
         /* Аккордеон стиль 1 - Простой */
        .accordion-simple .accordion-item {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .accordion-simple .accordion-header {
            background: #fff;
            padding: 0;
        }
        
        .accordion-simple .accordion-button {
            background: #fff;
            color: #2c3e50;
            font-weight: 600;
            padding: 18px 20px;
            border: none;
            box-shadow: none;
        }
        
        .accordion-simple .accordion-button:not(.collapsed) {
            background: #f1f8ff;
            color: #0d6efd;
        }
        
        .accordion-simple .accordion-body {
            padding: 20px;
            background: #fff;
            border-top: 1px solid #e9ecef;
        }
        .fa{
            height: 54px;
            width: 54px;
            border-radius: 50%;
        }
        .fa.colored{
            background: #2E4C8F;
            line-height: 54px;
            text-align: center;
            color: white;
            font-size: 29px;
            margin: 0 20px 20px 0;
        }
        iframe {
            width: 70%;
            height: 500px;
        }
        .button_check {
            background-color: #b8d6f5;
            border: solid rgb(121, 121, 121) 1px;
            margin-top: 10px;
            border-radius: 5px;
            padding: 5px 60px;
        }
        .button_check:hover{
            background-color: #d4e4f5;
        }