/* Сброс стилей и базовые настройки */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
            font-size: 0.9rem;
        }
        
        /* Типография */
        h1, h2, h3, h4, h5, h6 {
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        h1 { font-size: 2.2rem; }
        h2 { font-size: 1.8rem; }
        h3 { font-size: 1.5rem; }
        h4 { font-size: 1.3rem; }
        h5 { font-size: 0.9rem; }
        
        p {
            margin-bottom: 1rem;
        }
        
        a {
            color: #0086CC;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #333;
        }
        ul, ol {
            margin-left: 40px;
        }
         table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-family: Arial, sans-serif;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
            font-weight: bold;
        }
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        tr:hover {
            background-color: #f1f1f1;
        }
        .phone {
            white-space: nowrap;
        }
        
        /* Основные контейнеры */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Шапка */
        .header-wrapper {
    position: relative;
    width: 100%;
    background-color: white;
    overflow: hidden;
  }
  
  .header-wrapper::before {
      z-index: -100;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><path fill="%23d0e5ff" d="M13 2h4v10h10v4H17v10h-4V16H3v-4h10V2z"/></svg>'),
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path fill="%23d0e5ff" d="M18 2h4v14h14v4H22v14h-4V20H2v-4h16V2z"/></svg>'),
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25"><path fill="%23d0e5ff" d="M11 2h3v7h7v3h-7v7h-3v-7H2v-3h9V2z"/></svg>'),
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" viewBox="0 0 35 35"><path fill="%23d0e5ff" d="M15 2h5v12h12v5H20v12h-5V19H2v-5h13V2z"/></svg>'),
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="%23d0e5ff" d="M9 2h2v6h6v2h-6v6H9v-6H3V8h6V2z"/></svg>'),
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 45 45"><path fill="%23d0e5ff" d="M20 2h5v16h16v5H25v16h-5V23H2v-5h18V2z"/></svg>');
    background-position: 
      5% 15%, 
      85% 25%, 
      40% 65%, 
      15% 80%, 
      75% 10%,
      55% 45%,
      25% 35%,
      65% 75%,
      90% 60%,
      10% 90%,
      30% 10%,
      70% 30%;
    background-repeat: no-repeat;
    opacity: 0.3;
    animation: float 25s infinite linear;
  }

  @keyframes float {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-5px, 5px); }
    50% { transform: translate(5px, -5px); }
    75% { transform: translate(-5px, -5px); }
    100% { transform: translate(0, 0); }
  }

        header {
            display: flex;
            padding: 30px 0;
            align-items: center;
        }
        
        .header-left {
            flex: 1;
            display: flex;
            align-items: center;
        }
        
        .logo {
            width: 120px; /* Ширина логотипа */
            margin-right: 40px;
        }
        
        .logo img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .header-text {
            flex: 1;
        }
        
        .header-right {
            flex: 1;
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            justify-content: center; /* Центрируем контакты по вертикали */
            text-align: right;
        }
        
        .site-title {
            color: #0086cc;
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        
        .site-description, .contact-info {
            color: #666;
            font-size: 0.9rem;
        }
        
        .contact-info {
            text-align: right;
        }
        .contact-info p {
            margin-bottom: 0px;
        }
      
      
      
        
/* Меню */
        .menu-wrapper {
            background: linear-gradient(135deg, #2c3944 0%, #151b20 100%);
            width: 100%;
            border-top: 3px solid;
  border-image: linear-gradient(to right, #0086cc, #1abbbe) 1;
        }
        
        nav {
            display: flex;
        }
        
        nav a {
            color: white;
            padding: 20px 18px;
            display: block;
            text-transform: uppercase;
            font-size: 0.8rem;
            transition: all 0.3s;
        }
        
        nav a:hover {
            background-color: #0086CC;
            color: #fff;
        }
        nav ul li.active a {
            background-color: #0086CC;
            color: #fff;
        }
        .top-menu {margin-left: 0; display: flex; list-style: none;}
        .top-menu-item {position: relative;}
        /* Стили для выпадающего меню */
.top-menu-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
}

.top-menu-submenu li a {
    padding: 9px 13px;
    white-space: nowrap;
    color: black;
}
.top-menu-submenu li a:hover {
    color: white;
}

.has-submenu:hover .top-menu-submenu {
    opacity: 1;
    visibility: visible;
}

/* Стрелка для пунктов с подменю */
.has-submenu > a::after {
    content: "▼";
    font-size: 0.6em;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
}

/* Блок под меню */
.gor-tel > div {
            background: linear-gradient(-135deg, #00b6b6 0%, #0086cc 100%);
            padding: 20px;  /* Увеличил padding для наглядности */
            color: white;
            text-align: center;
            font-size: 1.1rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        /* Усиленный стеклянный блик */
        .gor-tel > div::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;  /* Изменил положение */
            width: 50%;
            height: 600%;
            background: rgba(255, 255, 255, 0.1);  /* Увеличил прозрачность */
            transform: rotate(25deg);
            pointer-events: none;
            z-index: 1;
        }
        
        /* Обертка текста для поднятия над бликом */
        .gor-tel > div > span {
            position: relative;
            z-index: 2;
            display: inline-block;
        }
       
       
       
       
       
       
       
       
       
       
       
        
        /* Основной контент */
        .main-content-wrapper {
            min-height: 50vh;
            padding-top: 30px;
            padding-bottom: 80px;
        }
        .main-content-wrapper ul {
            margin-bottom:15px;
        }
        
        .content-area {
            display: flex;
            margin: 0 -15px;
            color: #333;
        }
        
        .main-content {
            flex: 3;
            padding-left: 30px;
            padding-right: 20px;
        }
        .main-content-home {
            flex: 3;
            padding-right: 40px;
            padding-left: 20px;
        }
        
        .sidebar {
            flex: 1;
            padding: 0 15px;
        }
        
        /* Футер */
        .footer-wrapper {
            background: linear-gradient(135deg, #2c3944 0%, #151b20 100%);
            border-top: 3px solid;
  border-image: linear-gradient(to right, #0086cc, #1abbbe) 1;
            color: #fff;
            width: 100%;
        }
        
        footer {
            display: flex;
            padding: 40px 0;
            text-shadow: 0px 1px 1px black;
        }
        
        .footer-column {
            flex: 1;
            padding: 0 15px;
            font-size: 0.8rem;
        }
        
        .footer-column h5 {
            color: #fff;
            margin-bottom: 20px;
        }
        
        .footer-column ul {
            list-style: none;
            margin-left: 0;
        }
        
        .footer-column a {
            color: #ccc;
        }
        .footer-column p {
            margin-bottom: 0.2rem;
        }
        .footer-column a:hover {
            color: #fff;
        }
        
        /* Дополнительные элементы */
        .box {
            background-color: #f8f8f8;
            border-radius: 4px;
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .widget-title {
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }





.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff; /* фон прелоадера */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* чтобы был поверх всех элементов */
    transition: opacity 0.5s ease;
}

.loader {
    border: 5px solid #f3f3f3; /* цвет круга */
    border-top: 5px solid #3498db; /* цвет анимации */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* анимация вращения */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.copyright {
    background: #131d22;
    color: #6e6e6e;
    margin: 0;
    padding: 20px;
    text-align: center;
}


/* Мобильная адаптация */
/* Мобильная адаптация */
        @media (max-width: 992px) {
            header {
                flex-direction: column;
                text-align: center;
                padding: 20px 0;
            }
            .menu-wrapper .container {
                padding: 0px !important;
            }
            .header-wrapper .container {
                padding: 10px;
            }
            .header-right{
                margin-top: 0px!important;
            }
            .header-left {
                flex-direction: column;
                margin-bottom: 20px;
            }
            
            .logo {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .header-right {
                text-align: center;
                margin-top: 20px;
            }
            .gor-tel {
                padding: 0!important;
            }
            .content-area {
                flex-direction: column;
            }
            
            .main-content, .main-content-home {
                padding: 0 15px;
                margin-bottom: 30px;
            }
            
            footer {
                flex-direction: column;
            }
            
            .footer-column {
                margin-bottom: 30px;
                padding: 0;
            }
            
            nav {
                flex-direction: column;
            }
            
            nav a {
                padding: 12px 15px;
                text-align: center;
            }
            
            
        }
        
        @media (max-width: 768px) {
            .site-title {
                font-size: 1.3rem;
            }
            .logo {
                display: none;
            }
            .header-left {
                margin-bottom: 0;
            }
            .site-description {
                font-size: 0.8rem;
            }
            
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
            h3 { font-size: 1.3rem; }
            
            .container {
                padding: 0 15px;
            }
            .top-menu {
                flex-direction: column;
            }
            .top-menu-submenu {
                display: none!important;
            }
        }
        
        @media (max-width: 480px) {
            
            .site-title {
                font-size: 1.2rem;
            }
            
            .contact-info p {
                font-size: 0.8rem;
            }
            
            th, td {
                padding: 8px;
                font-size: 0.8rem;
            }
        }
    

        