.audit-case-root{
            --primary: #e22027;
            --secondary: #e22027;
            --accent: #e22027;
            --light: #f5f5f5;
            --dark: #393939;
            --text: #333;
            --border: #ddd;
        } .audit-case-root .t250{font-size:2.5em} .audit-case-root *{
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        } .audit-case-root{
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: #f9f9f9;
            padding: 0;
            margin: 0;
            scroll-behavior: smooth;
        } .audit-case-root .container{
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        } .audit-case-root header{
background: linear-gradient(90deg, rgb(0, 85, 130) 0%, rgb(0, 85, 130) 20%, rgb(0, 111, 116) 20%, rgb(0, 111, 116) 40%, rgb(31, 137, 110) 40%, rgb(31, 137, 110) 60%, rgb(160, 160, 111) 60%, rgb(160, 160, 111) 80%, rgb(255, 178, 121) 80%, rgb(255, 178, 121) 100%);
            color: white;
            padding: 20px 0;
            text-align: center;
            margin-bottom: 30px;
            border-bottom: 5px solid var(--accent);
            position: relative;
        } .audit-case-root h1{
            font-size: 2.2rem;
            margin-bottom: 8px;
        } .audit-case-root .header-info{
            font-size: 1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 10px;
        } .audit-case-root h2{
            color: var(--primary);
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
            scroll-margin-top: 100px;
        } .audit-case-root h3{
            color: var(--secondary);
            margin: 20px 0 10px;
        } .audit-case-root p{
            margin-bottom: 15px;
        } .audit-case-root .highlight{
            background-color: var(--light);
            padding: 20px;
            border-radius: 5px;
            margin: 20px 0;
            border-left: 4px solid var(--secondary);
        } .audit-case-root ul, .audit-case-root ol{
            margin: 15px 0 15px 25px;
            padding-left: 20px;
        } .audit-case-root li{
            margin-bottom: 8px;
            padding-left: 5px;
        } .audit-case-root ul ul, .audit-case-root ol ol, .audit-case-root ul ol, .audit-case-root ol ul{
            margin-top: 5px;
            margin-bottom: 5px;
        } .audit-case-root .highlight ul, .audit-case-root .highlight ol{
            margin-left: 15px;
        } .audit-case-root /* Image styles */
        .audit-image{
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border: 1px solid var(--border);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        } .audit-case-root .image-caption{
            text-align: center;
            font-style: italic;
            margin-top: -15px;
            margin-bottom: 20px;
            color: #666;
            font-size: 0.9em;
        } .audit-case-root /* Table styles */
        table{
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            background: white;
            font-size: 0.9em;
        } .audit-case-root th, .audit-case-root td{
            padding: 10px 12px;
            text-align: left;
            border-bottom: 1px solid var(--border);
            word-break: break-word;
        } .audit-case-root th{
            background-color: var(--primary);
            color: white;
            font-weight: bold;
        } .audit-case-root tr:nth-child(even){
            background-color: #f8f8f8;
        } .audit-case-root tr:hover{
            background-color: #f1f1f1;
        } .audit-case-root .responsive-table{
            overflow-x: auto;
            margin: 20px 0;
            -webkit-overflow-scrolling: touch;
        } .audit-case-root /* Badge styles */
        .badge{
            display: inline-block;
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 0.8em;
            font-weight: bold;
            margin-left: 5px;
            cursor: help;
            position: relative;
        } .audit-case-root .badge.green{
            background-color: #2ecc71;
            color: white;
        } .audit-case-root .badge.red{
            background-color: #e74c3c;
            color: white;
        } .audit-case-root .badge.blue{
            background-color: #3498db;
            color: white;
        } .audit-case-root .badge.gray{
            background-color: #95a5a6;
            color: white;
        } .audit-case-root .badge.yellow{
            background-color: #f39c12;
            color: white;
        } .audit-case-root .badge-tooltip{
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--dark);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8em;
            white-space: nowrap;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 10;
            margin-bottom: 5px;
        } .audit-case-root .badge:hover .badge-tooltip{
            visibility: visible;
            opacity: 1;
        } .audit-case-root /* Navigation styles */
        .nav-links{
            display: none;
            background-color: #333;
            padding: 15px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        } .audit-case-root .nav-links.active{
            display: block;
        } .audit-case-root .nav-container{
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        } .audit-case-root .nav-link{
            color: white;
            text-decoration: none;
            padding: 5px 10px;
            border-radius: 3px;
            transition: all 0.3s ease;
        } .audit-case-root .nav-link:hover{
            background-color: var(--secondary);
        } .audit-case-root .anchor-link{
            color: var(--secondary);
            text-decoration: none;
            border-bottom: 1px dashed var(--secondary);
            transition: all 0.3s ease;
        } .audit-case-root .anchor-link:hover{
            border-bottom: 1px solid var(--secondary);
            color: var(--primary);
        } .audit-case-root /* Footer styles */
        footer{
            background-color: var(--dark);
            color: white;
            text-align: center;
            padding: 30px 0;
            margin-top: 50px;
        } .audit-case-root footer .footer-content{
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        } .audit-case-root footer .footer-content a{
            color: white;
            text-decoration: none;
        } .audit-case-root footer .footer-content a:hover{
            text-decoration: underline;
        } .audit-case-root footer .footer-logo{
            max-width: 300px;
            margin: 10px auto;
            display: block;
        } .audit-case-root footer .footer-slogan{
            font-size: 1.1em;
            color: #ccc;
            margin-top: 5px;
        } .audit-case-root .contacts{
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        } .audit-case-root .contact-link{
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        } .audit-case-root .contact-link:hover{
            text-decoration: underline;
        } .audit-case-root /* Button styles */
        .report-btn{
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 12px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin: 20px 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        } .audit-case-root .report-btn:hover{
            background-color: #c01a22;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        } .audit-case-root /* Scroll buttons */
        .scroll-btn{
            position: fixed;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            z-index: 99;
        } .audit-case-root .scroll-btn.active{
            opacity: 1;
            visibility: visible;
        } .audit-case-root .scroll-btn.up{
            bottom: 30px;
        } .audit-case-root .scroll-btn.down{
            bottom: 90px;
            opacity: 1;
            visibility: visible;
        } .audit-case-root .scroll-btn.hidden{
            opacity: 0;
            visibility: hidden;
        } .audit-case-root .scroll-btn svg{
            width: 24px;
            height: 24px;
            fill: currentColor;
        } .audit-case-root /* Media queries */
        @media (max-width: 768px){
            h1 {
                font-size: 2rem;
            } .audit-case-root .scroll-btn{
                display: none;
            } .audit-case-root .nav-links{
                display: none;
            } .audit-case-root .nav-container{
                gap: 4px;
                padding: 0 5px;
            } .audit-case-root .nav-link{
                padding: 3px 5px;
                font-size: 12px;
                white-space: nowrap;
            } .audit-case-root .badge-tooltip{
                white-space: normal;
                width: 150px;
                left: 0;
                transform: none;
            } .audit-case-root .badge{
                position: relative;
                display: inline-flex;
                font-size: 10px;
            } .audit-case-root }
        @media (min-width: 769px){
            .nav-links {
                display: block;
            } .audit-case-root .scroll-btn{
                display: flex;
            } .audit-case-root }
        /* Прелоадер */
        .preloader{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #333;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.5s ease;
        } .audit-case-root .preloader.hidden{
            opacity: 0;
            pointer-events: none;
        } .audit-case-root .loader{
            width: 80px;
            height: 80px;
            position: relative;
        } .audit-case-root .loader-inner{
            position: absolute;
            border: 4px solid transparent;
            border-top-color: #e22027;
            border-radius: 50%;
            animation: rotate 1.5s linear infinite;
        } .audit-case-root .loader-inner:nth-child(1){
            width: 60px;
            height: 60px;
            top: 10px;
            left: 10px;
            animation-delay: 0.1s;
        } .audit-case-root .loader-inner:nth-child(2){
            width: 40px;
            height: 40px;
            top: 20px;
            left: 20px;
            animation-delay: 0.2s;
            border-top-color: #d4af37;
        } .audit-case-root .loader-inner:nth-child(3){
            width: 20px;
            height: 20px;
            top: 30px;
            left: 30px;
            animation-delay: 0.3s;
            border-top-color: #e74c3c;
        } .audit-case-root @keyframes rotate{
            0% {
                transform: rotate(0deg);
            } 100%{
                transform: rotate(360deg);
            } .audit-case-root }
        /* Защита от копирования */
        body{
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        } .audit-case-root .container, .audit-case-root header, .audit-case-root footer, .audit-case-root .highlight, .audit-case-root p, .audit-case-root h1, .audit-case-root h2, .audit-case-root h3, .audit-case-root ul, .audit-case-root ol, .audit-case-root li, .audit-case-root table, .audit-case-root .image-caption{
            -webkit-user-select: text;
            -moz-user-select: text;
            -ms-user-select: text;
            user-select: text;
        }
