
        @media (min-width: 992px) {
            body {
                padding-top: 60px;
            }
        }



        .company_cards_wrapper {
            position: relative;
            padding: 0px;
            background: #ffffff;
            max-width: 1600px;
            width: 100%;
            margin: 0 auto;
            border-radius: 12px;
        }
        
        .cards_container::-webkit-scrollbar {
            display: none;
        }

        .company_card {
            display: block;
            width: var(--card-w, 260px);
            height: 382px;
            background: #fff;
            color: #1a202c;
            text-decoration: none;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(17, 24, 39, 0.05);
            overflow: hidden;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            user-select: none;
        }

        .company_card:hover {
            box-shadow: 0 6px 20px rgba(17, 24, 39, 0.08);
            transform: translateY(-3px);
        }

        .company_card img {
            display: block;
            width: 100%;
            height: 320px;
            object-fit: cover;
        }

        .card_content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 16px;
            font-size: 16px;
            font-weight: 500;
        }

        /* Стили для модального окна - УЖЕ */
        .team-modal .modal-dialog {
            max-width: 400px; /* Уже чем стандартные модальные окна */
        }

        .team-modal .modal-content {
            border-radius: 16px;
            overflow: hidden;
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .team-modal .modal-header {
            border-bottom: none;
            padding: 1.2rem 1.2rem 0;
            position: relative;
        }

        .team-modal .btn-close {
            position: absolute;
            top: 0.8rem;
            right: 0.8rem;
            z-index: 10;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            padding: 0.5rem;
        }

        .team-modal .btn-close:hover {
            opacity: 1;
        }

        .team-modal .modal-body {
            padding: 0 1.2rem 1.2rem;
        }

        .member-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.2rem;
            display: block;
            border: 3px solid #fff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            animation: pulse 2s infinite ease-in-out;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(49, 173, 236, 0.2);
            }
            50% {
                transform: scale(1.03);
                box-shadow: 0 6px 20px rgba(49, 173, 236, 0.4);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(49, 173, 236, 0.2);
            }
        }

        .member-title {
            font-size: 1.3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 0.8rem;
            color: #1a202c;
        }

        .member-description {
            text-align: center;
            color: #6c757d;
            margin-bottom: 1.2rem;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            margin-top: 1.2rem;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8f9fa;
            color: #6c757d;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .social-icon:hover {
            transform: translateY(-2px);
            background-color: #31ADEC;
            color: white;
        }

        .facebook:hover {
            background-color: #3b5998;
        }

        .linkedin:hover {
            background-color: #0077b5;
        }

        .instagram:hover {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }

        /* Адаптивность для мобильных */
        @media (max-width: 576px) {
            .team-modal .modal-dialog {
                margin: 1rem;
                max-width: none;
            }
            
            .team-modal .modal-content {
                border-radius: 12px;
            }
            
            .member-avatar {
                width: 90px;
                height: 90px;
            }
            
            .member-title {
                font-size: 1.2rem;
            }
            
            .member-description {
                font-size: 0.9rem;
            }
        }