 /* Основные стили */
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f7fa;
            margin: 0;
            padding: 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        h1, h2, h3 {
            color: #1a3a6e;
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-top: 30px;
        }
        
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #ff6c00;
            padding-bottom: 10px;
            margin-top: 40px;
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .highlight {
            background-color: #fff9e6;
            border-left: 4px solid #ff6c00;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .benefits-list {
            background: linear-gradient(135deg, #1a3a6e 0%, #0d2444 100%);
            color: white;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
        }
        
        .benefits-list ul {
            columns: 2;
            column-gap: 40px;
        }
        
        .benefits-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 25px;
        }
        
        .benefits-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #ff9d00;
            font-weight: bold;
        }
        
        .cta-section {
            text-align: center;
            padding: 50px 20px;
            background: linear-gradient(135deg, #ff6c00 0%, #ff9d00 100%);
            color: white;
            border-radius: 10px;
            margin: 50px 0;
        }
        
        .btn {
            display: inline-block;
            background: #1a3a6e;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            margin-top: 20px;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .btn:hover {
            background: #0d2444;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        
        @media (max-width: 768px) {
            .benefits-list ul {
                columns: 1;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.7rem;
            }
        }