/*
Theme Name: ГОРИСЛАВЦЕВ
Template: generatepress
Version: 1.0
*/

/* ========== ОСНОВНЫЕ СТИЛИ ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.gorislavcev-theme {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}

.gorislavcev-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== ВЕРХНЯЯ ПАНЕЛЬ ========== */
.gorislavcev-topbar {
    background: #1a365d;
    border-bottom: 1px solid #eaeaea;
    padding: 12px 0;
    font-size: 14px;
}

.gorislavcev-topbar .gorislavcev-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gorislavcev-phone {
    color: white;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.gorislavcev-top-links {
    display: flex;
    gap: 25px;
}

.gorislavcev-top-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.gorislavcev-top-links a:hover {
    color: #2d74da;
}

/* ========== ШАПКА ========== */
.gorislavcev-header {
    padding: 30px 0;
	background: white;
    border-bottom: 1px solid #f0f0f0;
}

.gorislavcev-header .gorislavcev-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gorislavcev-logo {
    font-size: 32px;
    font-weight: 700;
    color: #1a365d;
    text-decoration: none;
    letter-spacing: -1px;
}

.gorislavcev-logo-dot {
    color: #0B109F;
}

/* ========== ОСНОВНОЕ МЕНЮ (ДЕСКТОП) ========== */
.gorislavcev-desktop-nav {
    margin-left: auto;
}

.gorislavcev-desktop-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gorislavcev-desktop-menu li {
    position: relative;
}

.gorislavcev-desktop-menu a {
    color: #1a365d;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.gorislavcev-desktop-menu a:hover {
    color: #0B109F;
}

.gorislavcev-desktop-menu .current-menu-item > a,
.gorislavcev-desktop-menu .current-page-ancestor > a {
    color: #0B109F;
    font-weight: 600;
}

.gorislavcev-desktop-menu .current-menu-item > a,
.gorislavcev-desktop-menu .current-page-ancestor > a {
    color: #0B109F;
    font-weight: 700; 
}

.gorislavcev-desktop-menu .menu-item-has-children {
    position: relative;
}

.gorislavcev-desktop-menu .menu-item-has-children > a {
    position: relative;
    padding-right: 15px;
}

.gorislavcev-desktop-menu .menu-item-has-children > a::after {
    content: '▾';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #0B109F;
}

.gorislavcev-desktop-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #f0f0f0;
    list-style: none;
    margin: 0;
}

.gorislavcev-desktop-menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gorislavcev-desktop-menu .sub-menu li {
    padding: 0;
}

.gorislavcev-desktop-menu .sub-menu a {
    display: block;
    padding: 10px 25px;
    color: #1a365d;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gorislavcev-desktop-menu .sub-menu a:hover {
    background: #f5f7ff;
    color: #0B109F;
}

.gorislavcev-desktop-menu .sub-menu .menu-item-has-children > a::after {
    content: '';
    display: none;
}

/* ========== МОБИЛЬНОЕ МЕНЮ ========== */

/* Стили для кнопки бургер-меню */
.gorislavcev-mobile-menu-toggle {
    display: none !important;
    background: none;
    border: none;
    font-size: 28px;
    color: white !important; /* Белый цвет для контраста */
    cursor: pointer;
    padding: 8px;
    z-index: 100;
    position: relative;
    transition: color 0.3s ease;
}

.gorislavcev-mobile-menu-toggle:hover {
	background: none;
    color: white; /* Белая иконка */
    transform: scale(1.1); /* Легкое увеличение */
    box-shadow: 0 4px 4x rgba(11, 16, 159, 0.3); /* Тень для объема */
}

/* Контейнер мобильного меню */
.gorislavcev-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 9999; /* Высокий z-index */
    overflow-y: auto;
}

.gorislavcev-mobile-menu.active {
    right: 0;
}

/* Кнопка закрытия */
.gorislavcev-mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #1a365d;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.gorislavcev-mobile-menu-close:hover {
    background-color: #f5f7ff;
}

/* Ссылки в мобильном меню */
.gorislavcev-mobile-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gorislavcev-mobile-menu-links li {
    margin-bottom: 15px;
}

.gorislavcev-mobile-menu-links a {
    color: #1a365d;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.gorislavcev-mobile-menu-links a:hover {
    color: #0B109F;
    padding-left: 10px;
}

/* Фон при открытом меню */
.gorislavcev-mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.gorislavcev-mobile-menu-overlay.active {
    display: block;
}

/* Показываем кнопку только на мобильных */
@media (max-width: 768px) {
    .gorislavcev-mobile-menu-toggle {
        display: block !important; /* Теперь точно будет видно */
    }
}

/* ========== ГЛАВНЫЙ ЭКРАН ========== */
.gorislavcev-hero {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
                url('http://www.gorislavtsev.ru/wp-content/uploads/2017/06/main_banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.gorislavcev-hero-content {
    max-width: 800px;
}

.gorislavcev-hero-main-title {
    font-size: 28px;
    font-weight: 400;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.gorislavcev-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
}

.gorislavcev-hero-description {
    font-size: 18px;
    color: white;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
}

.gorislavcev-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 500px;
}

.gorislavcev-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: white;
}

.gorislavcev-check {
    color: white;
    font-weight: bold;
    background: #0B109F;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.gorislavcev-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
    max-width: 500px;
}

.gorislavcev-stat-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
}

.gorislavcev-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #0B109F;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.gorislavcev-stat-text {
    font-size: 14px;
    color: #666;
}

.gorislavcev-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.gorislavcev-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    text-align: center;
    border: 2px solid transparent;
}

.gorislavcev-btn-primary {
    background: #0B109F;
    color: white;
}

.gorislavcev-btn-primary:hover {
    background: #1a23b3;
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 6px 20px rgba(11, 16, 159, 0.3);
}

.gorislavcev-btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.gorislavcev-btn-secondary:hover {
    background: #f5f7ff;
    transform: translateY(-2px);
}

/* ========== О КОМПАНИИ И ДОСТИЖЕНИЯ РЯДОМ (2:1) ========== */
.gorislavcev-about-achievements-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* ОБЩИЙ ЗАГОЛОВОК СЕКЦИИ О КОМПАНИИ (старый стиль - слева) */
.gorislavcev-section-header {
    text-align: left;
    margin-bottom: 25px;
}

.gorislavcev-section-label {
    display: inline-block;
    background: linear-gradient(135deg, #0B109F 0%, #2d74da 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(11, 16, 159, 0.2);
}

.gorislavcev-about-achievements-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

/* ШИРОКИЙ БЛОК: О компании (2/3 ширины) */
.gorislavcev-about-card-wide {
    flex: 2; /* 2 части из 3 */
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gorislavcev-about-card-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0B109F;
    margin-bottom: 20px;
    margin-top: 0;
}

.gorislavcev-about-card-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.gorislavcev-about-card-content p:first-of-type {
    margin-top: 0;
}

/* УЗКИЙ БЛОК: Достижения (1/3 ширины) */
.gorislavcev-achievements-card-narrow {
    flex: 1; /* 1 часть из 3 */
    background: linear-gradient(135deg, #1a365d 0%, #0B109F 100%);
    padding: 40px;
    border-radius: 8px;
    color: white;
}

.gorislavcev-achievements-card-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.gorislavcev-achievements-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gorislavcev-achievement-card-item {
    text-align: center;
    padding: 15px 10px;
}

.gorislavcev-achievement-card-number {
    font-size: 40px;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 5px;
    line-height: 1.2;
}

.gorislavcev-achievement-card-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    display: block;
}

/* ========== БЛОК УСЛУГ ========== */
.gorislavcev-services-section {
    padding: 40px 0;
    background: #f8fafc;
}

/* ОБЩИЙ ЗАГОЛОВОК СЕКЦИИ УСЛУГ (новый стиль - по центру) */
.gorislavcev-services-section-header {
    text-align: center;
}

.gorislavcev-services-section-label {
    display: inline-block;
    background: linear-gradient(135deg, #0B109F 0%, #2d74da 100%);
    color: white;
    padding: 6px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(11, 16, 159, 0.2);
    margin-bottom: 20px;
}

.gorislavcev-services-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.3;
}

.gorislavcev-services-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.gorislavcev-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.gorislavcev-service-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gorislavcev-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(11, 16, 159, 0.1);
}

.gorislavcev-service-title {
    font-size: 20px;
    font-weight: 700;
    color: #0B109F;
    margin-bottom: 15px;
}

.gorislavcev-service-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.gorislavcev-theme .gorislavcev-service-list,
body.gorislavcev-theme .gorislavcev-service-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gorislavcev-theme .gorislavcev-service-list li,
body.gorislavcev-theme .gorislavcev-service-list li {
    margin: 0;
    padding: 8px 0;
    padding-left: 0;
    margin-left: 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    font-size: 15px;
    list-style: none;
}

.gorislavcev-theme .gorislavcev-service-list li:before {
    content: "✓ ";
    color: #0B109F;
    font-weight: bold;
    margin-right: 8px;
}

/* ========== КОНТАКТЫ ========== */
.gorislavcev-contacts {
    padding: 60px 0;
    background: #f8fafc;
}

.gorislavcev-contacts-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 40px;
}

.gorislavcev-contacts-wrapper {
    background: linear-gradient(135deg, #1a365d 0%, #0B109F 100%);
    border-radius: 8px;
    padding: 40px;
    color: white;
}

.gorislavcev-contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.gorislavcev-contact-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gorislavcev-contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gorislavcev-contact-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gorislavcev-contact-value {
    font-size: 14px;
    line-height: 1.6;
    color: white;
    font-weight: 500;
}

.gorislavcev-contact-value-phone {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    font-weight: 500;
}

.gorislavcev-contact-link {
    text-decoration: none;
    color: white;
    display: block;
    transition: opacity 0.2s;
/*     margin-top: 15px; */
}

.gorislavcev-contact-link:hover {
    opacity: 0.8;
}

.gorislavcev-contact-link .gorislavcev-contact-label {
    color: rgba(255, 255, 255, 0.8);
}

.gorislavcev-contact-link .gorislavcev-contact-value {
    color: white;
}

.gorislavcev-contact-email {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    display: block;
    margin-top: 30px;
    text-align: center;
}

.gorislavcev-contact-email:hover {
    text-decoration: underline;
}
/* ========== ОБЩИЙ СБРОС ДЛЯ СПИСКОВ ========== */
.gorislavcev-theme ul,
.gorislavcev-theme ol,
body.gorislavcev-theme ul,
body.gorislavcev-theme ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gorislavcev-theme input, select, textarea {
	margin: 10px;
}

.gorislavcev-theme li,
body.gorislavcev-theme li {
    margin: 0;
    padding: 0;
	margin-bottom: 10px;
	line-height: 20px;
    list-style: none;
}

/* ========== БЛОК КЛИЕНТОВ ========== */
.gorislavcev-clients-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.gorislavcev-clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(11, 16, 159, 0.2), transparent);
}

.gorislavcev-clients-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gorislavcev-clients-label {
    display: inline-block;
    background: linear-gradient(135deg, #0B109F 0%, #2d74da 100%);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(11, 16, 159, 0.15);
}

.gorislavcev-clients-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 15px;
    line-height: 1.3;
}

.gorislavcev-clients-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.gorislavcev-clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.gorislavcev-client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    background: white;
    border-radius: 12px;
    border: 1px solid #eef2f7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gorislavcev-client-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
/*     background: linear-gradient(90deg, transparent, rgba(11, 16, 159, 0.05), transparent); */
    transition: left 0.6s ease;
}

.gorislavcev-client-item:hover {
    transform: translateY(-8px);
/*     box-shadow: 0 15px 35px rgba(11, 16, 159, 0.1); */
    border-color: rgba(11, 16, 159, 0.2);
    background: white;
}

.gorislavcev-client-item:hover::before {
    left: 100%;
}

.gorislavcev-client-logo-wrapper {
    width: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.gorislavcev-client-item:hover .gorislavcev-client-logo-wrapper {
    transform: scale(1.05);
/*     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
}

.gorislavcev-client-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
/*     filter: grayscale(100%) contrast(0.8); */
    opacity: 0.8;
    transition: all 0.4s ease;
}

.gorislavcev-client-item:hover .gorislavcev-client-logo {
    filter: grayscale(0%) contrast(1);
    opacity: 1;
}

.gorislavcev-client-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a365d;
    text-align: center;
    margin-top: 5px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.gorislavcev-client-item:hover .gorislavcev-client-name {
    color: #0B109F;
}

.gorislavcev-clients-title,
.gorislavcev-clients-subtitle,
.gorislavcev-clients-grid {
    opacity: 1;
    transform: none;
    animation: none;
}

.gorislavcev-client-item {
    opacity: 1;
    transform: none;
}

/* Анимация при скролле - упрощаем */
.gorislavcev-client-item {
    opacity: 1;
    transform: translateY(0);
}

/* Адаптивность для блока клиентов */
@media (max-width: 1200px) {
    .gorislavcev-clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gorislavcev-clients-section {
        padding: 60px 0;
    }
    
    .gorislavcev-clients-title {
        font-size: 28px;
    }
    
    .gorislavcev-clients-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .gorislavcev-clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gorislavcev-client-item {
        padding: 20px 10px;
    }
    
    .gorislavcev-client-logo-wrapper {
        width: 150px;
        height: 120px;
    }
    
    .gorislavcev-client-name {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .gorislavcev-clients-title {
        font-size: 24px;
    }
    
    .gorislavcev-clients-subtitle {
        font-size: 15px;
    }
    
    .gorislavcev-clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gorislavcev-client-item {
        padding: 15px 8px;
    }
    
    .gorislavcev-client-logo-wrapper {
        width: 150px;
        height: 120px;
    }
    
    .gorislavcev-client-name {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .gorislavcev-clients-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ========== ФУТЕР ========== */
.gorislavcev-footer {
    background: #1a365d;
    color: white;
    padding: 60px 0 30px;
}

.gorislavcev-footer .gorislavcev-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.gorislavcev-footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.gorislavcev-footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.gorislavcev-footer-text {
    font-size: 14px;
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gorislavcev-footer-list {
    list-style: none;
}

.gorislavcev-footer-list li {
    margin-bottom: 12px;
}

.gorislavcev-footer-list a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.gorislavcev-footer-list a:hover {
    color: #a0c4ff;
}

.gorislavcev-footer-contact {
    font-size: 14px;
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 10px;
}

.gorislavcev-footer-contact a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.gorislavcev-footer-contact a:hover {
    color: #a0c4ff;
}

.gorislavcev-footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    color: #cbd5e0;
    font-size: 14px;
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 1024px) {
    .gorislavcev-hero-title {
        font-size: 36px;
    }
    
    .gorislavcev-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gorislavcev-footer .gorislavcev-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gorislavcev-about-achievements-wrapper {
        gap: 20px;
    }
    
    .gorislavcev-about-card-wide,
    .gorislavcev-achievements-card-narrow {
        padding: 30px;
    }
    
    .gorislavcev-achievements-card-grid {
        gap: 12px;
    }
    
      .gorislavcev-contacts-wrapper {
        padding: 30px;
    }
    
    .gorislavcev-contacts-grid {
        gap: 30px;
    }
    
    /* Для секции О компании */
    .gorislavcev-section-label {
        padding: 10px 30px;
        font-size: 18px;
    }
    
    /* Для секции Услуги */
    .gorislavcev-services-section-label {
        padding: 10px 30px;
        font-size: 18px;
    }
    
    .gorislavcev-services-title {
        font-size: 28px;
    }
    
    .gorislavcev-services-subtitle {
        font-size: 16px;
        padding: 0 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .gorislavcev-container {
        padding: 0 15px;
    }
    
    .gorislavcev-desktop-nav {
        display: none !important;
    }
    
    .gorislavcev-mobile-menu-toggle {
        display: block !important;
    }
    
    .gorislavcev-mobile-menu {
        display: block !important;
    }
    
    .gorislavcev-mobile-menu.active {
        right: 0;
    }
    
    .gorislavcev-top-links {
        display: none;
    }
    
    .gorislavcev-hero {
        padding: 50px 0;
    }
    
    .gorislavcev-hero-title {
        font-size: 28px;
    }
    
    .gorislavcev-hero-description {
        font-size: 16px;
    }
    
    .gorislavcev-features-list {
        grid-template-columns: 1fr;
    }
    
    .gorislavcev-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gorislavcev-buttons {
        flex-direction: column;
    }
    
    .gorislavcev-btn {
        min-width: 100%;
    }
    
    .gorislavcev-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .gorislavcev-footer .gorislavcev-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Для блоков О компании и Достижений на мобильных */
    .gorislavcev-about-achievements-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .gorislavcev-about-card-wide,
    .gorislavcev-achievements-card-narrow {
        padding: 30px;
        flex: none;
        width: 100%;
    }
    
    .gorislavcev-achievements-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gorislavcev-achievement-card-item {
        padding: 20px 15px;
    }
    
    .gorislavcev-achievement-card-number {
        font-size: 28px;
    }
    
    .gorislavcev-achievement-card-text {
        font-size: 14px;
    }
    
    /* Для секции О компании */
    .gorislavcev-section-header {
        margin-bottom: 30px;
    }
    
    .gorislavcev-section-label {
        padding: 10px 25px;
        font-size: 18px;
    }
    
    /* Для секции Услуги */
    .gorislavcev-services-section-header {
        margin-bottom: 30px;
    }
    
    .gorislavcev-services-section-label {
        padding: 10px 25px;
        font-size: 18px;
    }
    
    .gorislavcev-services-title {
        font-size: 24px;
        padding: 0 10px;
    }
    
    .gorislavcev-services-subtitle {
        font-size: 16px;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .gorislavcev-service-item {
        padding: 25px;
    }
    
    /* Для контактов */
.gorislavcev-contacts {
        padding: 40px 0;
    }
    
    .gorislavcev-contacts-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .gorislavcev-contacts-wrapper {
        padding: 25px;
    }
    
    .gorislavcev-contacts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .gorislavcev-contact-column {
        gap: 15px;
    }
    
    .gorislavcev-contact-label {
        font-size: 12px;
    }
    
    .gorislavcev-contact-value {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gorislavcev-hero-title {
        font-size: 24px;
    }
    
    .gorislavcev-hero-main-title {
        font-size: 22px;
    }
    
    .gorislavcev-achievements-card-grid {
        grid-template-columns: 1fr;
    }
    
    /* Для секции О компании */
    .gorislavcev-section-label {
        padding: 8px 20px;
        font-size: 16px;
    }
    
    /* Для секции Услуги */
    .gorislavcev-services-section-label {
        padding: 8px 20px;
        font-size: 16px;
    }
    
    .gorislavcev-services-title {
        font-size: 22px;
    }
    
    .gorislavcev-services-subtitle {
        font-size: 15px;
    }
    
    /* Для контактов */
.gorislavcev-contacts-title {
        font-size: 22px;
    }
    
    .gorislavcev-contacts-wrapper {
        padding: 20px;
    }
    
    .gorislavcev-contact-value {
        font-size: 15px;
    }
}

/* ========== ОБЩИЕ СТИЛИ ДЛЯ КЛИКАБЕЛЬНЫХ БЛОКОВ (Услуги и Клиенты) ========== */

/* Обертка для ссылки */
.gorislavcev-service-item-link,
.gorislavcev-client-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Карточка с эффектом при наведении */
.gorislavcev-service-item,
.gorislavcev-client-item {
    /* ... существующие стили карточки ... */
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Специфичные стили для услуг */
.gorislavcev-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(11, 16, 159, 0.15);
    border-color: rgba(11, 16, 159, 0.3);
}

/* Стрелка для услуг (только в блоке услуг) */
.gorislavcev-service-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #0B109F;
    font-size: 24px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-10px);
}
.gorislavcev-service-item:hover .gorislavcev-service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Специфичные стили для клиентов */
.gorislavcev-client-item-link:hover .gorislavcev-client-item {
    transform: translateY(-8px);
    border-color: rgba(11, 16, 159, 0.2);
}
.gorislavcev-client-item-link:hover .gorislavcev-client-name {
    color: #0B109F;
}

/* Убираем pointer-events у содержимого, чтобы клик срабатывал на ссылке */
.gorislavcev-service-item-link *,
.gorislavcev-client-item-link * {
    pointer-events: none;
}

/* Состояние фокуса для доступности */
.gorislavcev-service-item-link:focus,
.gorislavcev-client-item-link:focus {
    outline: 2px solid #0B109F;
    outline-offset: 2px;
    border-radius: 10px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .gorislavcev-service-arrow {
        opacity: 1;
        transform: translateX(0);
        font-size: 20px;
    }
}

/* Ограничение меню до 2 уровней вложенности */

/* Десктопное меню */
.gorislavcev-desktop-menu ul ul ul {
    display: none !important;
}

.gorislavcev-desktop-menu li.menu-item-has-children > ul > li.menu-item-has-children > ul {
    display: none;
}

/* Мобильное меню */
.gorislavcev-mobile-menu-links ul ul ul {
    display: none !important;
}

.gorislavcev-mobile-menu-links li.menu-item-has-children > ul > li.menu-item-has-children > ul {
    display: none;
}

/* ========== СТИЛИ ДЛЯ ВНУТРЕННИХ СТРАНИЦ ========== */

/* Основной контент */
.gorislavcev-main-content {
    padding: 0 0  60px;
    background: white;
    min-height: 50vh;
}

.gorislavcev-article {
    background: white;
}

.gorislavcev-page-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.gorislavcev-page-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.gorislavcev-page-content h2 {
    font-size: 28px;
    color: #0B109F;
    margin: 40px 0 20px;
}

.gorislavcev-page-content h3 {
    font-size: 22px;
    color: #1a365d;
    margin: 30px 0 15px;
}

.gorislavcev-page-content p {
    margin-bottom: 20px;
}

.gorislavcev-page-content ul,
.gorislavcev-page-content ol {
    margin: 20px 0 20px 30px;
}

.gorislavcev-page-content li {
    margin-bottom: 10px;
    list-style: inherit;
}

.gorislavcev-page-content a {
    color: #0B109F;
    text-decoration: none; /* Убрать нижнее подчеркивание */
    font-weight: 500; /* Можно добавить полужирный */
}

.gorislavcev-page-content a:hover {
    text-decoration: underline; /* Только при наведении */
    font-weight: 600;
}

/* Адаптивность */
@media (max-width: 768px) {
    .gorislavcev-main-content {
        padding: 40px 0;
    }
    
    .gorislavcev-page-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .gorislavcev-page-content h2 {
        font-size: 24px;
    }
    
    .gorislavcev-page-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .gorislavcev-page-title {
        font-size: 24px;
    }
    
    .gorislavcev-page-content {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* Класс для тела на внутренних страницах */
body.internal-page {
    background: #f8fafc;
}

/* ========== ХЛЕБНЫЕ КРОШКИ ========== */
.gorislavcev-breadcrumbs {
/*     background: #f8fafc; */
    padding: 15px 0;
/*     border-bottom: 1px solid #eaeaea; */
    margin-bottom: 30px;
    font-size: 14px;
}

.gorislavcev-breadcrumbs a {
    color: #0B109F;
    text-decoration: none;
    font-weight: 500;
}

.gorislavcev-breadcrumbs a:hover {
    text-decoration: underline;
}

.gorislavcev-breadcrumb-separator {
    margin: 0 10px;
    color: #999;
}

.gorislavcev-breadcrumb-current {
    color: #666;
    font-weight: 500;
}

/*=======ДОПОЛНИТЕЛЬНЫНЕ СТИЛИ=======*/
.custom-details {
    border-bottom: 1px solid #e0e0e0;
}

.custom-summary {
    list-style: none;
    padding: 16px 30px 16px 0;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    margin: 0;
}

.custom-summary::-webkit-details-marker {
    display: none;
}

.custom-summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    background: #2A3D8B;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.custom-details[open] .custom-summary::after {
    content: '-';
    background: #2A3D8B;
}

.details-content {
    padding: 0 30px 16px 0;
    border-top: none;
	  text-align: justify;
}

.details-content p {
    line-height: 1.5;
}

.details-content li {
    margin-bottom: 10px;
}

.details-content li:last-child {
margin-bottom: 0;
}

.details-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.4;
}

.details-content th,
.details-content td {
    padding: 16px 20px;
    text-align: left;
}

.details-content th {
    font-weight: 600;
    color: #2A3D8B;
    border-bottom: 2px solid #2A3C8E;
}

.details-content td {
    border-bottom: 1px solid #f0f0f0;
}

.details-content tr:last-child td {
    border-bottom: none;
}

.disclosure-section {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.disclosure-intro {
    margin-bottom: 20px;
    font-size: 16px;
}

.requirements-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

.requirements-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 15px;
}

.requirements-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #333;
}

.reports-section {
    margin-bottom: 30px;
}

.report-item {
    margin-bottom: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.report-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.report-link:hover {
    color: #004499;
    text-decoration: underline;
}

.archive-section {
    text-align: left;
}

.archive-link {
    color: #2A3D8B;
    text-decoration: none;
    font-size: 15px;
    font-style: italic;
	  font-weight: bolder;
    transition: color 0.3s ease;
}

.archive-link:hover {
    color: #2A3D8B;
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    .disclosure-section {
        padding: 15px;
    }
    
    .disclosure-intro,
    .report-link {
        font-size: 14px;
    }
    
    .requirements-list li {
        font-size: 14px;
    }
}

  .audit-table {
    width: 50%;
    border-collapse: collapse;
  }

  .audit-table td {
    padding: 8px;
    vertical-align: top;
    text-align: justify;
    word-wrap: break-word;
    hyphens: auto;
  }

  .audit-table td:first-child {
    width: 5%;
    white-space: nowrap;
  }

  .audit-table td:nth-child(2),
  .audit-table td:nth-child(3) {
    width: 47.5%;
  }

.no-border-table {
  width:  47.5%;
	max-width:  47.5%;
  border-collapse: collapse;
  margin: 16px 0;
}
.audit-table td .no-border-table {
  width: 100%;
  max-width: 50vw;
	
}

.audit-table td .no-border-table td:first-child {
    width: 50%;
    white-space: normal;
}

.no-border-table th,
.no-border-table td {
  padding: 12px 8px;
  text-align: left;
  border: none; /* Убираем все границы */
}

.no-border-table th {
  font-weight: bold;
  background-color: transparent;
}
.company-info-table {
    width: 50%;
    border-collapse: collapse;
}

.company-info-table td {
    padding: 8px;
    vertical-align: top;
    text-align: justify;
    word-wrap: break-word;
    hyphens: auto;
}


.company-info-table td:nth-child(1),
.company-info-table td:nth-child(2) {
    width: 47.5%;
}

.archive-details {
    margin: 20px 0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.archive-summary {
    list-style: none;
    padding: 16px 20px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    margin: 0;
}

.archive-summary::-webkit-details-marker {
    display: none;
}

.archive-summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 16px;
    color: #2A3D8B;
}

.archive-details[open] .archive-summary::after {
    content: '-';
}

.archive-content {
    padding: 20px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.archive-content .report-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.archive-content .report-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.price-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  background-color: #f9f9f9;
  transition: box-shadow 0.3s ease;
}
.price-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.service-title {
  font-weight: 600;
  margin-bottom: 10px;
}
.service-title a {
  text-decoration: none;
  color: #2a5db0;
}
.service-title a:hover {
  text-decoration: underline;
}
.service-price {
  font-size: 1.3em;
  color: #2a5db0;
  font-weight: bold;
}

/* СТИЛИ ДЛЯ 404 СТРАНИЦЫ */
.gorislavcev-404-content {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.gorislavcev-404-number {
    font-size: 120px;
    font-weight: bold;
    color: #0b109f;
    line-height: 1;
    margin-bottom: 20px;
}

.gorislavcev-404-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.gorislavcev-404-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.gorislavcev-404-suggestions {
    margin: 40px 0;
    text-align: left;
    display: inline-block;
}

.gorislavcev-404-suggestions p {
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
}

.gorislavcev-404-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gorislavcev-404-links li {
    margin-bottom: 10px;
}

.gorislavcev-404-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 0;
    display: block;
}

.gorislavcev-404-links a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.gorislavcev-404-search {
    margin: 40px 0;
    text-align: left;
    display: inline-block;
}

.gorislavcev-404-search p {
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
}

.gorislavcev-404-search form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.gorislavcev-404-search input[type="search"] {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.gorislavcev-404-search button[type="submit"] {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
}

.gorislavcev-404-search button[type="submit"]:hover {
    background: #2980b9;
}

.gorislavcev-404-button {
    margin-top: 40px;
}

/* АДАПТИВНОСТЬ 404 СТРАНИЦЫ */
@media (max-width: 768px) {
    .gorislavcev-404-number {
        font-size: 80px;
    }
    
    .gorislavcev-404-title {
        font-size: 28px;
    }
    
    .gorislavcev-404-description {
        font-size: 16px;
    }
    
    .gorislavcev-404-search form {
        flex-direction: column;
    }
    
    .gorislavcev-404-search input[type="search"] {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .gorislavcev-404-search button[type="submit"] {
        border-radius: 4px;
    }
}

/* ========== СТИЛИ ДЛЯ СПИСКОВ ========== */

/* Общие стили для всех списков */
.gorislavcev-page-content ul,
.gorislavcev-page-content ol,
.gorislavcev-article ul,
.gorislavcev-article ol,
.gorislavcev-service-list ul,
.gorislavcev-service-list ol,
.gorislavcev-about-card-content ul,
.gorislavcev-about-card-content ol {
    margin: 20px 0;
    padding-left: 30px;
    line-height: 1.6;
}

/* Маркированные списки */
.gorislavcev-page-content ul,
.gorislavcev-article ul,
.gorislavcev-service-list ul,
.gorislavcev-about-card-content ul {
    list-style-type: disc;
}

/* Нумерованные списки */
.gorislavcev-page-content ol,
.gorislavcev-article ol,
.gorislavcev-service-list ol,
.gorislavcev-about-card-content ol {
    list-style-type: decimal;
}

/* Элементы списка */
.gorislavcev-page-content li,
.gorislavcev-article li,
.gorislavcev-service-list li,
.gorislavcev-about-card-content li {
    margin-bottom: 10px;
    padding-left: 5px;
}

/* Вложенные списки */
.gorislavcev-page-content ul ul,
.gorislavcev-page-content ol ol,
.gorislavcev-page-content ul ol,
.gorislavcev-page-content ol ul,
.gorislavcev-article ul ul,
.gorislavcev-article ol ol,
.gorislavcev-article ul ol,
.gorislavcev-article ol ul {
    margin: 10px 0 10px 20px;
}

/* Стили для разных уровней вложенности маркированных списков */
.gorislavcev-page-content ul ul {
    list-style-type: circle;
}

.gorislavcev-page-content ul ul ul {
    list-style-type: square;
}

/* Стили для разных уровней вложенности нумерованных списков */
.gorislavcev-page-content ol {
    counter-reset: item;
}

.gorislavcev-page-content ol > li {
    counter-increment: item;
}

.gorislavcev-page-content ol > li:before {
    content: counter(item) ".";
    font-weight: bold;
    color: #0B109F;
    margin-right: 8px;
}

.gorislavcev-page-content ol ol > li:before {
    content: counters(item, ".") " ";
}

/* Списки внутри блоков услуг */
.gorislavcev-service-item ul,
.gorislavcev-service-item ol {
    margin: 15px 0 15px 20px;
    padding-left: 15px;
}

.gorislavcev-service-item li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
}

.gorislavcev-service-item ul {
    list-style-type: disc;
}

.gorislavcev-service-item ol {
    list-style-type: decimal;
}

/* Списки в блоке "О компании" */
.gorislavcev-about-card-content ul,
.gorislavcev-about-card-content ol {
    margin: 15px 0 15px 25px;
}

.gorislavcev-about-card-content li {
    margin-bottom: 8px;
    color: #555;
}

/* Стили для описательных списков (dl, dt, dd) */
.gorislavcev-page-content dl {
    margin: 20px 0;
}

.gorislavcev-page-content dt {
    font-weight: 600;
    color: #1a365d;
    margin-top: 15px;
    margin-bottom: 5px;
}

.gorislavcev-page-content dd {
    margin-left: 20px;
    margin-bottom: 15px;
    color: #555;
}

/* Списки в контактах */
.gorislavcev-contacts-wrapper ul,
.gorislavcev-contacts-wrapper ol {
    margin: 15px 0 15px 20px;
    color: white;
}

.gorislavcev-contacts-wrapper li {
    margin-bottom: 8px;
}

.gorislavcev-contacts-wrapper ul {
    list-style-type: disc;
}

/* Списки в футере */
.gorislavcev-footer-list ul,
.gorislavcev-footer-list ol {
    margin: 10px 0 10px 15px;
}

.gorislavcev-footer-list li li {
    margin-bottom: 5px;
    font-size: 13px;
}

.gorislavcev-footer-list ul {
    list-style-type: circle;
}

/* Адаптивность для списков */
@media (max-width: 768px) {
    .gorislavcev-page-content ul,
    .gorislavcev-page-content ol,
    .gorislavcev-article ul,
    .gorislavcev-article ol {
        padding-left: 25px;
    }
    
    .gorislavcev-service-item ul,
    .gorislavcev-service-item ol {
        padding-left: 20px;
    }
    
    .gorislavcev-about-card-content ul,
    .gorislavcev-about-card-content ol {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .gorislavcev-page-content ul,
    .gorislavcev-page-content ol,
    .gorislavcev-article ul,
    .gorislavcev-article ol {
        padding-left: 20px;
    }
    
    .gorislavcev-page-content li,
    .gorislavcev-article li {
        font-size: 15px;
    }
}

/* Специальные стили для списков с галочками (как в услугах) */
.gorislavcev-check-list {
    list-style: none;
    padding-left: 0;
}

.gorislavcev-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.gorislavcev-check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #0B109F;
    font-weight: bold;
    font-size: 16px;
    background: #f0f4ff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Стили для списков с иконками */
.gorislavcev-icon-list {
    list-style: none;
    padding-left: 0;
}

.gorislavcev-icon-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 12px;
}

.gorislavcev-icon-list .icon {
    color: #0B109F;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ========== СКРЫТИЕ ССЫЛКИ CFORMS ========== */
.linklove#ll,
p.linklove#ll {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

/* Альтернативный вариант - сделать текст белым (если не хотите полностью скрывать) */
.linklove#ll a,
.linklove#ll a:link,
.linklove#ll a:visited,
.linklove#ll a:hover,
.linklove#ll a:active {
    color: #ffffff !important;
    text-decoration: none !important;
    opacity: 0.5 !important;
    font-size: 12px !important;
}

/* Скрываем надпись на уровне элемента формы */
#cformsform + p.linklove {
    display: none !important;
}

/* Убираем лишние отступы после скрытия элемента */
#cformsform {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}