    /* Основной фон - светлый */
    body, .t-container, .t-content {
        background-color: #f0f6ff !important;
        color: #1a2a4a !important;
        font-family: 'Arial', sans-serif;
    }
    
    /* Карточки - белые с тенью */
    .service-card, .stat-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 25px;
        margin: 15px;
        box-shadow: 0 8px 25px rgba(26, 42, 74, 0.10);
        border: 1px solid rgba(26, 42, 74, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        color: #1a2a4a;
    }
    .service-card:hover, .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(26, 42, 74, 0.18);
    }
    
    /* КНОПКИ - синие */
    .btn-primary {
        background: #1a4a8a;
        color: #fff !important;
        padding: 14px 36px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        display: inline-block;
        transition: 0.3s;
        border: none;
        box-shadow: 0 4px 15px rgba(26, 74, 138, 0.3);
    }
    .btn-primary:hover {
        background: #0f3a6a;
        transform: scale(1.03);
        box-shadow: 0 6px 20px rgba(26, 74, 138, 0.4);
        color: #fff !important;
    }
    
    /* Цифры и акценты - синие */
    .accent-number {
        color: #1a4a8a;
        font-size: 48px;
        font-weight: 700;
    }
    .accent-link {
        color: #1a4a8a;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 2px solid transparent;
        transition: 0.3s;
    }
    .accent-link:hover {
        border-bottom-color: #1a4a8a;
        color: #0f3a6a;
    }
    
    /* Заголовки */
    h1, h2, h3 {
        color: #1a2a4a;
        font-weight: 700;
    }
    h2:after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: #1a4a8a;
        margin: 12px auto 0;
        border-radius: 2px;
    }
    
    .my-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }
    .flex-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    /* ШАПКА - синяя */
    .blue-header {
        background: #1a3a6a;
        padding: 15px 0;
        border-bottom: 3px solid #4a8ac8;
    }
    
    /* Подвал - синий */
    .blue-footer {
        background: #1a3a6a;
        color: #fff;
        padding: 25px 0;
        margin-top: 40px;
    }
    .blue-footer a {
        color: #8ab8e8;
    }
    
    .text-white {
        color: #fff;
    }
    .text-white h1, .text-white h2, .text-white h3 {
        color: #fff;
    }
    .text-white h2:after {
        background: #fff;
    }
