
         .main-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .card {
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            border: none;
            overflow: hidden;
            transition: transform 0.3s ease;
            margin-bottom: 2rem;
        }
        
        .card-header {
            background: var(--secondary-color);
            color: white;
            font-weight: 600;
            font-size: 1.5rem;
            padding: 1.5rem;
        }
        
        .content-section {
            padding: 2rem;
            background: white;
        }
        
        .section-title {
            color: var(--primary-color);
            
            padding-bottom: 10px;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .model-card {
            border: 1px solid #e1e5eb;
            border-radius: 10px;
            padding: 20px;
            height: 100%;
            transition: all 0.3s;
            background: white;
        }
        
        .model-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-color: var(--secondary-color);
        }
        
        .model-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .model-name {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .process-steps {
            counter-reset: step-counter;
            margin-left: 0;
            padding-left: 0;
        }
        
        .process-steps li {
            list-style: none;
            margin-bottom: 30px;
            position: relative;
            padding-left: 70px;
        }
        
        .process-steps li:before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .partner-logo {
            max-width: 180px;
            max-height: 80px;
            margin: 15px;
            filter: grayscale(100%);
            opacity: 0.8;
            transition: all 0.3s;
        }
        
        .partner-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.05);
        }
        
        .footer {
            background: var(--primary-color);
            color: rgba(255, 255, 255, 0.8);
            padding: 2rem 0;
            margin-top: 3rem;
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        @media (max-width: 768px) {
            .logo {
                font-size: 2rem;
            }
            
            .card-header {
                font-size: 1.3rem;
            }
            
            .content-section {
                padding: 1.5rem;
                color: black;
            }
            
            .process-steps li {
                padding-left: 60px;
            }
            
            .process-steps li:before {
                width: 40px;
                height: 40px;
            }
        }

    .mission-box {
        border: 3px solid var(--secondary-color); /* Цвет и толщина рамки */
        padding: 15px; /* Отступы внутри рамки */
        border-radius: 5px; /* Закругление углов рамки */
        background-color: #f9f9f9; /* Цвет фона */
    }
    .mission-text {
        font-size: 20px;
    }