/*
Theme Name: Olymp Production
Description: Современная тема WordPress с CI/CD структурой для проекта Olymp Production
Version: 1.0.0
Author: Olymp Production Team
Text Domain: olymp-production
Requires at least: 6.0
Tested up to: 6.8.3
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Базовые стили - основные стили в dist/css/main.css */

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #1e293b;
    background-color: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-main {
    padding: 2rem 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    line-height: 1.25;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    color: #ffe866;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Header Base Styles */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

/* ===== HEADER TOP BAR ===== */
.header-top {
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    max-height: 200px;
    overflow: hidden;
}

.header-top.header-top-hidden {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    padding: 0;
    margin: 0;
    border-bottom: none;
}

.site-header.header-scrolled .header-bottom {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-top-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.header-text {
    font-size: 0.96rem !important; /* Увеличено на 28%: 0.75 * 1.28 = 0.96 */
    font-weight: 600 !important; /* Добавлена жирность */
    color: #475569;
    margin: 0;
}

/* Updated Social Icons - Only 4 icons: Phone, VK, Telegram, WhatsApp */
.social-icons {
    display: flex !important;
    gap: 0.75rem !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
}

.social-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    background-color: #4A4A4A !important; /* Темно-серый фон как в footer */
    border: 1px solid #666666 !important; /* Тонкая светлая серая граница */
    border-radius: 50% !important;
    color: #ffffff !important; /* Белый цвет иконок */
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.social-icon i {
    color: #ffffff !important; /* Белый цвет иконок */
}

.social-icon:hover {
    background-color: #5A5A5A !important; /* Немного светлее при наведении */
    border-color: #777777 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* Special colors for different social networks */
.social-icon[aria-label*="Позвонить"] {
    background-color: #25d366 !important;
    color: #ffffff !important;
}

.social-icon[aria-label*="Позвонить"]:hover {
    background-color: #20c55a !important;
}

.social-icon[aria-label*="ВКонтакте"] {
    background-color: #0077ff !important;
    color: #ffffff !important;
}

.social-icon[aria-label*="ВКонтакте"]:hover {
    background-color: #0056cc !important;
}

.social-icon[aria-label*="Telegram"] {
    background-color: #0088cc !important;
    color: #ffffff !important;
}

.social-icon[aria-label*="Telegram"]:hover {
    background-color: #006699 !important;
}

.social-icon[aria-label*="Instagram"],
.social-icon[aria-label*="instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    background: -o-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    border: none !important;
    color: #ffffff !important;
    border-radius: 50% !important;
}

.social-icon[aria-label*="Instagram"]:hover,
.social-icon[aria-label*="instagram"]:hover {
    opacity: 0.9 !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4) !important;
}

.social-icon[aria-label*="Instagram"] i,
.social-icon[aria-label*="instagram"] i {
    color: #ffffff !important;
}

.social-icon[aria-label*="WhatsApp"],
.social-icon[aria-label*="whatsapp"] {
    background-color: #25d366 !important;
    border: none !important;
    color: #ffffff !important;
    border-radius: 50% !important;
}

.social-icon[aria-label*="WhatsApp"]:hover,
.social-icon[aria-label*="whatsapp"]:hover {
    background-color: #20c55a !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
}

.social-icon[aria-label*="WhatsApp"] i,
.social-icon[aria-label*="whatsapp"] i {
    color: #ffffff !important;
}

.header-center {
    text-align: center;
}

.site-logo {
    text-decoration: none;
}

.logo-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
}

.logo-image {
    height: 2.5rem !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.logo-text {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    /* Тройной градиент под углом 45°: темный золотой → светлый золотой → темный золотой */
    background: linear-gradient(45deg, #B8954F 0%, #FFD700 50%, #B8954F 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    /* Fallback для браузеров без поддержки background-clip */
    color: #FFD700 !important;
    text-transform: uppercase !important;
}


.logo-tagline {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 400;
    margin-top: 0.25rem;
    margin: 0;
}

.header-right {
    text-align: right;
}

.header-contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.contact-phone {
    font-size: 1.15rem !important; /* Увеличено на 15%: 1 * 1.15 = 1.15 */
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
}

.contact-phone:hover {
    color: #d4af37;
}

.contact-address {
    font-size: 0.8625rem !important; /* Увеличено на 15%: 0.75 * 1.15 = 0.8625 */
    color: #64748b;
    margin: 0;
}

/* ===== BUTTON COMPONENT ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ffe866;
    color: #000000 !important; /* Черный текст для читаемости */
}

.btn-primary:hover {
    background-color: #ffe866;
    color: #000000 !important; /* Черный текст при наведении */
}

.btn-secondary {
    background-color: #64748b;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #475569;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #2563eb;
    color: #2563eb;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===== HEADER BOTTOM NAVIGATION ===== */
.header-bottom {
    background-color: #ffffff;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.header-bottom-content {
    display: flex;
    justify-content: center;
    padding: 0.75rem 0;
}

.main-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
}

.menu-link {
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: #d4af37;
}

.menu-link.active {
    color: #d4af37;
}

.menu-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #d4af37;
}

/* ===== HOME PAGE STYLES ===== */
/* Максимально специфичные селекторы для гарантированного белого фона */
html body.home .home-page,
html body.page-template-default .home-page,
html body.page-template-page-home .home-page,
html body.front-page .home-page,
html body .home-page,
body .home-page,
.site-main.home-page,
.home-page,
#main.home-page,
main.home-page,
body.home #main.home-page,
body.home main.home-page {
    min-height: 100vh !important;
    background-color: #ffffff !important; /* Белый фон как на фото */
    padding: 3rem 0 !important;
}

/* Убеждаемся, что все контейнеры на главной странице имеют прозрачный фон */
body .home-page .container,
.home-page .container,
body .site-main.home-page .container,
html body .home-page .container {
    background-color: transparent !important;
}

/* Убеждаемся, что секции на главной странице не переопределяют фон */
body .home-page .news-section,
body .home-page section,
body .home-page .hero-slider {
    background-color: transparent !important;
}

/* ===== HEADER BOTTOM FIX ===== */
.header-bottom-content {
    display: flex;
    align-items: center;
}

/* Mobile styles for social icons */
@media (max-width: 768px) {
    .social-icons {
        gap: 0.5rem !important;
        justify-content: flex-start !important;
    }
    
    .social-icon {
        width: 2.25rem !important;
        height: 2.25rem !important;
    }
    
    .social-icon i {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 0.4rem !important;
    }
    
    .social-icon {
        width: 2rem !important;
        height: 2rem !important;
    }
    
    .social-icon i {
        font-size: 0.8rem !important;
    }
}

/* ===== UTILITY CLASSES ===== */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Базовые стили для мобильных элементов */
.header-mobile {
    display: none !important;
    background-color: #ffffff;
    padding: 1rem 0;
}

.header-mobile-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.75rem !important;
    max-width: 100%;
}

.mobile-menu-toggle {
    flex-shrink: 0 !important;
    margin-right: 0.25rem !important;
}

.mobile-logo {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.logo-wrapper-mobile {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.5rem !important;
}

.logo-image-mobile {
    height: 2rem !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.logo-text-mobile {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    /* Тройной градиент под углом 45°: темный золотой → светлый золотой → темный золотой */
    background: linear-gradient(45deg, #B8954F 0%, #FFD700 50%, #B8954F 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    /* Fallback для браузеров без поддержки background-clip */
    color: #FFD700 !important;
    text-decoration: none !important;
    margin: 0 !important;
    display: block !important;
    line-height: 1.2 !important;
    text-align: center !important;
    text-transform: uppercase !important;
}

.mobile-right {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    min-width: fit-content !important;
}

.mobile-right .btn {
    padding: 0.495rem 0.88rem !important;
    font-size: 0.825rem !important;
    background-color: #ffe866 !important;
    color: #000000 !important; /* Черный текст для читаемости */
    border: none !important;
    border-radius: 0.25rem !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    display: inline-block !important;
    white-space: nowrap !important;
    margin: 0 !important;
}

/* Показываем мобильные элементы только на маленьких экранах */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .header-top.desktop-only {
        display: none !important;
    }
    
    .header-bottom.desktop-only {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .header-mobile {
        display: block !important;
    }
}

/* ===== BURGER MENU BUTTON ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #1e293b;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #ffffff;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 9999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-content .main-menu {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    margin-bottom: 2rem !important;
    list-style: none !important;
    padding: 0 !important;
}

.mobile-menu-content .main-menu .menu-item {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.mobile-menu-content .main-menu .menu-link {
    display: block !important;
    padding: 0.875rem 0 !important;
    border-bottom: 1px solid #e5e7eb !important;
    font-size: 0.95rem !important;
    color: #000000 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.mobile-menu-content .main-menu .menu-link:hover,
.mobile-menu-content .main-menu .menu-link.active {
    color: #000000 !important;
    padding-left: 0.5rem !important;
}

/* ===== MOBILE MENU CONTACTS ===== */
.mobile-menu-contacts {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-contact-phone {
    margin-bottom: 1rem;
}

.mobile-contact-phone a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    display: block;
}

.mobile-contact-phone a:hover {
    color: #ffe866;
}

.mobile-contact-address p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0 0 1rem 0;
}

.mobile-social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.mobile-social-icons .social-icon {
    width: 2.25rem !important;
    height: 2.25rem !important;
    margin: 0 !important;
    background-color: #4A4A4A !important; /* Темно-серый фон как в footer */
    border: 1px solid #666666 !important; /* Тонкая светлая серая граница */
    border-radius: 50% !important;
    color: #ffffff !important; /* Белый цвет иконок */
}

.mobile-social-icons .social-icon i {
    font-size: 0.9rem !important;
    color: #ffffff !important; /* Белый цвет иконок */
}

.mobile-social-icons .social-icon:hover {
    background-color: #5A5A5A !important; /* Немного светлее при наведении */
    border-color: #777777 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.mobile-social-icons .social-icon[aria-label*="Instagram"],
.mobile-social-icons .social-icon[aria-label*="instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    background: -o-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    border: none !important;
}

.mobile-social-icons .social-icon[aria-label*="Instagram"]:hover,
.mobile-social-icons .social-icon[aria-label*="instagram"]:hover {
    opacity: 0.9 !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4) !important;
}

.mobile-social-icons .social-icon[aria-label*="WhatsApp"],
.mobile-social-icons .social-icon[aria-label*="whatsapp"] {
    background-color: #25d366 !important;
    border: none !important;
}

.mobile-social-icons .social-icon[aria-label*="WhatsApp"]:hover,
.mobile-social-icons .social-icon[aria-label*="whatsapp"]:hover {
    background-color: #20c55a !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablets and small laptops (1024px and below) */
@media (max-width: 1024px) {
    .header-top-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .header-left,
    .header-center,
    .header-right {
        text-align: center;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    /* Принудительно скрываем desktop элементы */
    .header-top.desktop-only {
        display: none !important;
    }
    
    .header-bottom.desktop-only {
        display: none !important;
    }
    
    /* Показываем mobile элементы */
    .header-mobile.mobile-only {
        display: block !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .header-mobile {
        padding: 1rem 0;
        background-color: #ffffff;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .header-mobile-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        position: relative;
    }
    
    .mobile-menu-toggle {
        flex-shrink: 0;
        order: 1;
        position: relative;
        z-index: 10;
    }
    
    .mobile-logo {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        order: 2;
        min-width: 0;
    }
    
    .logo-wrapper-mobile {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0.5rem !important;
    }
    
    .logo-image-mobile {
        height: 1.75rem !important;
        width: auto !important;
        object-fit: contain !important;
        display: block !important;
    }
    
    .logo-text-mobile {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.05em !important;
        /* Тройной градиент под углом 45°: темный золотой → светлый золотой → темный золотой */
        background: linear-gradient(45deg, #B8954F 0%, #FFD700 50%, #B8954F 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        /* Fallback для браузеров без поддержки background-clip */
        color: #FFD700 !important;
        margin: 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .mobile-right {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.25rem;
        order: 3;
    }
    
    .mobile-phone {
        font-size: 0.85rem;
        font-weight: 600;
        color: #1e293b;
        text-decoration: none;
        white-space: nowrap;
        line-height: 1.2;
    }
    
    .mobile-right .btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
        white-space: nowrap;
        line-height: 1.2;
    }
    
    .main-menu {
        display: none !important;
    }
}

/* Mobile devices (480px and below) */
@media (max-width: 480px) {
    .header-mobile {
        padding: 0.75rem 0;
    }
    
    .logo-image-mobile {
        height: 1.5rem !important;
    }
    
    .logo-text-mobile {
        font-size: 1.15rem !important;
    }
    
    .mobile-right .btn {
        padding: 0.44rem 0.77rem !important;
        font-size: 0.77rem !important;
    }
    
    .mobile-menu-content {
        width: 85%;
        padding: 1.5rem 1rem;
    }
    
    .mobile-contact-phone a {
        font-size: 1rem;
    }
    
    .procedures-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* Small mobile devices (iPhone 5c and similar - 320px) */
@media (max-width: 320px) {
    .header-mobile-content {
        gap: 0.25rem;
    }
    
    .logo-image-mobile {
        height: 1.25rem !important;
    }
    
    .logo-text-mobile {
        font-size: 0.9rem !important;
    }
    
    .mobile-phone {
        font-size: 0.7rem;
    }
    
    .mobile-right {
        gap: 0.2rem;
    }
    
    .mobile-right .btn {
        padding: 0.35rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .mobile-menu-content {
        width: 90%;
        padding: 1rem;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
}

/* ===== SLIDER BLOCK ===== */

.hero-slider {
    position: relative !important;
    width: 100% !important;
    height: 600px !important;
    margin-bottom: 3rem !important;
    overflow: hidden !important;
    border-radius: 12px !important;
}

.slider-container {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
}

.slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transition: opacity 0.6s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.slide.active {
    opacity: 1 !important;
}

.slide-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    filter: brightness(0.7) !important;
}

.slide-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    color: #ffffff !important;
    padding: 3rem 2rem !important;
    max-width: 800px !important;
}

.slide-icon {
    margin-bottom: 1.5rem !important;
    display: inline-block !important;
}

.slide-title {
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.slide-subtitle {
    font-size: 1.25rem !important;
    margin-bottom: 2rem !important;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.slide-button {
    display: inline-block !important;
    padding: 1rem 2.5rem !important;
    background-color: #ffe866 !important;
    color: #000000 !important; /* Черный текст для читаемости */
    text-decoration: none !important;
    border-radius: 40px !important;
    font-weight: 600 !important;
    font-size: 1.125rem !important;
    transition: all 0.3s ease !important;
}

.slide-button:hover {
    background-color: #ffe866 !important;
    color: #000000 !important; /* Черный текст при наведении */
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4) !important;
}

/* Slider Navigation */
.slider-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: none !important;
    border-radius: 50% !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transition: all 0.3s ease !important;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.slider-prev {
    left: 1.5rem !important;
}

.slider-next {
    right: 1.5rem !important;
}

/* Pagination Dots */
.slider-dots {
    position: absolute !important;
    bottom: 2rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 0.5rem !important;
    z-index: 10 !important;
}

.slider-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    background: transparent !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.slider-dot.active {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(255, 255, 255, 1) !important;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6) !important;
}

/* Slider Responsive */
@media (max-width: 1024px) {
    .hero-slider {
        height: 500px !important;
    }
    
    .slide-title {
        font-size: 2.5rem !important;
    }
    
    .slide-subtitle {
        font-size: 1.125rem !important;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 400px !important;
        border-radius: 40px !important;
    }
    
    .slide-content {
        padding: 2rem 1.5rem !important;
    }
    
    .slide-title {
        font-size: 2rem !important;
    }
    
    .slide-subtitle {
        font-size: 1rem !important;
    }
    
    .slide-button {
        padding: 0.875rem 2rem !important;
        font-size: 1rem !important;
    }
    
    /* Скрываем кнопки навигации на мобильных устройствах */
    .slider-btn,
    .slider-prev,
    .slider-next {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 350px !important;
    }
    
    .slide-content {
        padding: 1.5rem 1rem !important;
    }
    
    .slide-title {
        font-size: 1.75rem !important;
    }
    
    .slide-subtitle {
        font-size: 0.875rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .slide-button {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.875rem !important;
    }
    
    .slider-dots {
        bottom: 1rem !important;
    }
    
    /* Скрываем кнопки навигации на мобильных устройствах */
    .slider-btn,
    .slider-prev,
    .slider-next {
        display: none !important;
    }
}

/* ===== NEWS BLOCK ===== */

.news-section {
    padding: 4rem 0 !important;
    background-color: #ffffff !important;
    max-width: 85% !important;
    margin: 0 auto !important;
}

.news-header {
    text-align: center !important;
    margin-bottom: 3rem !important;
}

.news-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffe866 !important;
    margin-bottom: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
}

.news-subtitle {
    font-size: 1.125rem !important;
    color: #ffe866 !important;
    margin-bottom: 2rem !important;
}

.news-actions {
    display: flex !important;
    justify-content: center !important;
    gap: 2rem !important;
    flex-wrap: wrap !important;
}

.news-action-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 1.5rem !important;
    background: transparent !important;
    border: 2px solid #ffe866 !important;
    border-radius: 40px !important;
    color: #ffe866 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    font-size: 1rem !important;
}

.news-action-btn:hover {
    background-color: #ffe866 !important;
    color: #000000 !important; /* Черный текст для читаемости */
    transform: translateY(-2px) !important;
}

.news-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 2rem !important;
}

.news-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
}

.news-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}

.news-card-image {
    width: 100% !important;
    height: 240px !important;
    overflow: hidden !important;
}

.news-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05) !important;
}

.news-card-content {
    padding: 1.5rem !important;
}

.news-card-category {
    display: inline-block !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #ffe866 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 0.75rem !important;
}

.news-card-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.4 !important;
}

.news-card-title a {
    color: #1e293b !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.news-card-title a:hover {
    color: #FFF080 !important; /* Желтый цвет с фото */
}

.news-card-subtitle {
    font-size: 0.875rem !important;
    color: #64748b !important;
    margin-bottom: 1rem !important;
}

.news-card-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 1rem !important;
    padding-top: 1rem !important;
    border-top: 1px solid #e5e7eb !important;
}

.news-card-date {
    font-size: 0.875rem !important;
    color: #64748b !important;
}

.news-card-link {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #ffe866 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.news-card-link:hover {
    color: #ffe866 !important;
    transform: translateX(4px) !important;
}

/* News Responsive */
@media (max-width: 768px) {
    .news-section {
        padding: 2rem 0 !important;
    }
    
    .news-title {
        font-size: 2rem !important;
    }
    
    .news-subtitle {
        font-size: 1rem !important;
    }
    
    .news-actions {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .news-action-btn {
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
    }
    
    .news-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .news-card-image {
        height: 200px !important;
    }
}

@media (max-width: 480px) {
    .news-title {
        font-size: 1.75rem !important;
    }
    
    .news-card-content {
        padding: 1rem !important;
    }
    
    .news-card-title {
        font-size: 1.125rem !important;
    }
}

/* ===== SERVICES CARDS BLOCK ===== */

.services-cards-section {
    padding: 4rem 0 !important;
    background-color: #ffffff !important;
}

.services-cards-section .services-section-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #FDD835 !important;
    text-align: center !important;
    margin-bottom: 3rem !important;
    margin-top: 0 !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
}

.services-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
}

.service-card {
    position: relative !important;
    height: 400px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s ease !important;
}

.service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}

.service-card-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}

.service-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    filter: brightness(0.4) !important;
    transition: transform 0.4s ease !important;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1) !important;
}

.service-card-content {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 2rem !important;
    z-index: 2 !important;
    transition: transform 0.4s ease !important;
}

.service-card:hover .service-card-content {
    transform: translateY(-70px) !important;
}

.service-card-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

.service-card-subtitle {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

.service-card-count {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #ffe866 !important;
    margin: 0 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.service-card-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 1.5rem !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%) !important;
    transform: translateY(100%) !important;
    transition: transform 0.4s ease !important;
    z-index: 3 !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
}

.service-card:hover .service-card-overlay {
    transform: translateY(0) !important;
}

.service-card-overlay .btn {
    width: 100% !important;
    justify-content: center !important;
    animation: slideUp 0.4s ease !important;
}

@keyframes slideUp {
    from {
        opacity: 0 !important;
        transform: translateY(20px) !important;
    }
    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Services Cards Responsive */
@media (max-width: 1024px) {
    .service-card {
        height: 350px !important;
    }
    
    .service-card-title {
        font-size: 1.375rem !important;
    }
    
    .service-card-subtitle {
        font-size: 1.125rem !important;
    }
}

@media (max-width: 768px) {
    .services-cards-section {
        padding: 2rem 0 !important;
    }
    
    .services-cards-section .services-section-title {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .services-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .service-card {
        height: 300px !important;
    }
    
    .service-card-content {
        padding: 1.5rem !important;
    }
    
    .service-card-title {
        font-size: 1.25rem !important;
    }
    
    .service-card-subtitle {
        font-size: 1rem !important;
    }
    
    .service-card-count {
        font-size: 0.875rem !important;
    }
}

@media (max-width: 480px) {
    .services-cards-section .services-section-title {
        font-size: 1.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .service-card {
        height: 250px !important;
    }
    
    .service-card-content {
        padding: 1rem !important;
    }
    
    .service-card-title {
        font-size: 1.125rem !important;
    }
    
    .service-card-subtitle {
        font-size: 0.875rem !important;
    }
}

/* ===== SPECIALIST CARD BLOCK ===== */

.specialist-card-section {
    padding: 4rem 0 !important;
    background-color: #ffffff !important;
}

.specialist-card {
    display: flex !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.specialist-card-image {
    flex: 0 0 45% !important;
    position: relative !important;
    overflow: hidden !important;
}

.specialist-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.specialist-card-content {
    flex: 0 0 55% !important;
    padding: 3rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    background: #fafafa !important;
}

.specialist-card-name {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffe866 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
}

.specialist-card-separator {
    width: 60px !important;
    height: 2px !important;
    background-color: #ffe866 !important;
    margin-bottom: 2rem !important;
}

.specialist-card-description {
    font-size: 1rem !important;
    line-height: 1.75 !important;
    color: #474a51 !important;
    margin-bottom: 2rem !important;
    flex-grow: 1 !important;
}

.specialist-card-content .btn {
    align-self: flex-start !important;
}

/* Specialist Card Responsive */
@media (max-width: 968px) {
    .specialist-card {
        flex-direction: column !important;
    }
    
    .specialist-card-image {
        flex: 0 0 auto !important;
        height: 400px !important;
    }
    
    .specialist-card-content {
        flex: 0 0 auto !important;
        padding: 2rem !important;
    }
    
    .specialist-card-name {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    .specialist-card-section {
        padding: 2rem 0 !important;
    }
    
    .specialist-card-name {
        font-size: 1.75rem !important;
    }
    
    .specialist-card-content {
        padding: 1.5rem !important;
    }
    
    .specialist-card-description {
        font-size: 0.875rem !important;
    }
}

@media (max-width: 480px) {
    .specialist-card-image {
        height: 300px !important;
    }
    
    .specialist-card-name {
        font-size: 1.5rem !important;
    }
    
    .specialist-card-content {
        padding: 1rem !important;
    }
}

/* ===== MEDIA CARDS BLOCK ===== */

.media-cards-section {
    padding: 4rem 0 !important;
    background-color: #ffffff !important;
}

.media-header {
    text-align: center !important;
    margin-bottom: 3rem !important;
}

.media-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffe866 !important;
    margin-bottom: 1.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
}

.media-description {
    font-size: 1.125rem !important;
    color: #474a51 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.media-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
}

.media-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
}

.media-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}

.media-card-image {
    width: 100% !important;
    height: 240px !important;
    overflow: hidden !important;
}

.media-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.media-card:hover .media-card-image img {
    transform: scale(1.05) !important;
}

.media-card-content {
    padding: 1.5rem !important;
}

.media-card-category {
    display: inline-block !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #ffe866 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 0.75rem !important;
}

.media-card-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.4 !important;
}

.media-card-title a {
    color: #474a51 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.media-card-title a:hover {
    color: #ffe866 !important;
}

.media-card-subtitle {
    font-size: 0.875rem !important;
    color: #64748b !important;
    margin-bottom: 1rem !important;
    line-height: 1.6 !important;
}

.media-card-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 1rem !important;
    padding-top: 1rem !important;
    border-top: 1px solid #e5e7eb !important;
}

.media-card-date {
    font-size: 0.875rem !important;
    color: #64748b !important;
}

.media-card-link {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #ffe866 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.media-card-link:hover {
    color: #f0d953 !important;
    transform: translateX(4px) !important;
}

/* Media Cards Responsive */
@media (max-width: 1024px) {
    .media-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .media-cards-section {
        padding: 2rem 0 !important;
    }
    
    .media-title {
        font-size: 2rem !important;
    }
    
    .media-description {
        font-size: 1rem !important;
    }
    
    .media-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .media-card-image {
        height: 200px !important;
    }
}

@media (max-width: 480px) {
    .media-title {
        font-size: 1.75rem !important;
    }
    
    .media-card-content {
        padding: 1rem !important;
    }
    
    .media-card-title {
        font-size: 1.125rem !important;
    }
}

/* ===== CLINIC ABOUT BLOCK ===== */

.clinic-about-section {
    padding: 4rem 0 !important;
    background-color: #ffffff !important;
}

.clinic-about-card {
    display: flex !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.clinic-about-content {
    flex: 0 0 55% !important;
    padding: 3rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    background: #ffffff !important;
}

.clinic-about-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffe866 !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
}

.clinic-about-separator {
    width: 60px !important;
    height: 2px !important;
    background-color: #ffe866 !important;
    margin-bottom: 2rem !important;
}

.clinic-about-description {
    font-size: 1rem !important;
    line-height: 1.75 !important;
    color: #474a51 !important;
    margin-bottom: 1.5rem !important;
}

.clinic-about-achievement {
    font-size: 1rem !important;
    line-height: 1.75 !important;
    color: #474a51 !important;
    margin-bottom: 2rem !important;
    font-weight: 600 !important;
}

.clinic-about-content .btn {
    align-self: flex-start !important;
}

.clinic-about-image {
    flex: 0 0 45% !important;
    position: relative !important;
    overflow: hidden !important;
}

.clinic-about-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* Clinic About Responsive */
@media (max-width: 968px) {
    .clinic-about-card {
        flex-direction: column-reverse !important;
    }
    
    .clinic-about-image {
        flex: 0 0 auto !important;
        height: 400px !important;
    }
    
    .clinic-about-content {
        flex: 0 0 auto !important;
        padding: 2rem !important;
    }
    
    .clinic-about-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    .clinic-about-section {
        padding: 2rem 0 !important;
    }
    
    .clinic-about-title {
        font-size: 1.75rem !important;
    }
    
    .clinic-about-content {
        padding: 1.5rem !important;
    }
    
    .clinic-about-description,
    .clinic-about-achievement {
        font-size: 0.875rem !important;
    }
}

@media (max-width: 480px) {
    .clinic-about-image {
        height: 300px !important;
    }
    
    .clinic-about-title {
        font-size: 1.5rem !important;
    }
    
    .clinic-about-content {
        padding: 1rem !important;
    }
}

/* ===== CONTACT MODAL & FORM STYLES ===== */

/* Input wrapper */
.olymp-input-wrapper,
.olymp-textarea-wrapper {
    margin-bottom: 1.5rem;
}

.olymp-input-wrapper:last-child,
.olymp-textarea-wrapper:last-child {
    margin-bottom: 0;
}

/* Labels */
.olymp-input-label,
.olymp-textarea-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.875rem;
}

.olymp-input-label .required,
.olymp-textarea-label .required {
    color: #ef4444;
    margin-left: 0.125rem;
}

/* Input fields */
.olymp-input,
.olymp-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(100, 116, 139, 0.2);
    border-radius: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #1e293b;
    background-color: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.olymp-input:focus,
.olymp-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.olymp-input:hover,
.olymp-textarea:hover {
    border-color: rgba(100, 116, 139, 0.4);
}

.olymp-input::placeholder,
.olymp-textarea::placeholder {
    color: #64748b;
    opacity: 1;
}

.olymp-input.error,
.olymp-textarea.error {
    border-color: #ef4444;
}

.olymp-input.error:focus,
.olymp-textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.olymp-input.success,
.olymp-textarea.success {
    border-color: #10b981;
}

.olymp-input.success:focus,
.olymp-textarea.success:focus {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.olymp-textarea {
    resize: vertical;
    min-height: 100px;
}

.olymp-input-description,
.olymp-textarea-description {
    margin-top: 0.375rem;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
}

.olymp-input-error,
.olymp-textarea-error {
    margin-top: 0.375rem;
    font-size: 0.75rem;
    color: #ef4444;
    line-height: 1.5;
}

/* Modal overlay */
.olymp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-sizing: border-box;
}

.olymp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(5px);
    animation: olymp-modal-fade-in 0.3s ease-out;
}

.olymp-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: olymp-modal-slide-in 0.3s ease-out;
}

.olymp-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(100, 116, 139, 0.2);
    margin-bottom: 1.5rem;
}

.olymp-modal-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    flex: 1;
}

.olymp-modal-close {
    background: none;
    border: none;
    font-size: 1.125rem;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    margin-left: 1rem;
}

.olymp-modal-close:hover {
    background-color: rgba(100, 116, 139, 0.1);
    color: #1e293b;
}

.olymp-modal-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.olymp-modal-body {
    padding: 0 1.5rem 1.5rem;
}

.olymp-modal-description {
    margin: 0 0 1.5rem;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

.olymp-contact-form .olymp-form-row {
    margin-bottom: 1.5rem;
}

.olymp-contact-form .olymp-form-row:last-child {
    margin-bottom: 0;
}

.olymp-contact-form .olymp-form-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(100, 116, 139, 0.2);
}

.olymp-contact-form .olymp-form-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.olymp-contact-form .olymp-form-message.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.olymp-contact-form .olymp-form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.olymp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
    position: relative;
}

.olymp-btn:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.olymp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.olymp-btn-primary {
    background-color: #c9a961;
    color: #000000 !important; /* Черный текст для читаемости */
}

.olymp-btn-primary:hover:not(:disabled) {
    background-color: #b8954f;
    color: #000000 !important; /* Черный текст при наведении */
}

.olymp-btn-primary:active {
    transform: scale(0.98);
}

.olymp-btn-full {
    width: 100%;
}

.btn-loading {
    display: none;
}

.btn-loading i {
    margin-right: 0.5rem;
}

@keyframes olymp-modal-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes olymp-modal-slide-in {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .olymp-modal {
        padding: 0.625rem;
    }
    
    .olymp-modal-content {
        max-height: 95vh;
    }
    
    .olymp-modal-header {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .olymp-modal-title {
        font-size: 1.25rem;
        flex: 1;
    }
    
    .olymp-modal-close {
        margin-left: 0.75rem;
    }
    
    .olymp-modal-body {
        padding: 0 1.25rem 1.25rem;
    }
    
    .olymp-input,
    .olymp-textarea {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }
    
    .olymp-input-label,
    .olymp-textarea-label {
        font-size: 0.875rem;
    }
    
    .olymp-btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

body.olymp-modal-open {
    overflow: hidden;
}

/* Actions Page Styles - Fixed */
.actions-page .page-hero {
    background: #ffffff !important;
    padding: 3rem 0 2rem !important;
    text-align: left !important;
}

.actions-page .page-hero .page-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffe866 !important;
    margin-bottom: 1rem !important;
}

.actions-page .page-hero .page-description {
    font-size: 1rem !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 0.5rem !important;
}

.actions-page .actions-content-section {
    padding: 0 0 3rem !important;
}

.actions-page .actions-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    margin-top: 2rem !important;
}

/* Более специфичные селекторы для карточек акций */
.actions-page .action-card,
.site-main.actions-page .action-card {
    background: #ffffff !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    transition: none !important;
    border-radius: 0 !important;
    margin-bottom: 2rem !important;
}

.actions-page .action-badge,
.site-main.actions-page .action-badge {
    display: inline-block !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
}

.actions-page .action-title,
.site-main.actions-page .action-title {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #ffe866 !important;
    margin: 0 0 0.75rem !important;
    line-height: 1.2 !important;
}

.actions-page .action-description,
.site-main.actions-page .action-description {
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    font-size: 1rem !important;
}

.actions-page .action-date,
.site-main.actions-page .action-date {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    padding-top: 0 !important;
    border-top: none !important;
}

.actions-page .action-date span,
.site-main.actions-page .action-date span {
    color: #64748b !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
}

.actions-page .action-date strong,
.site-main.actions-page .action-date strong {
    color: #ffe866 !important;
}

.actions-page .action-label,
.site-main.actions-page .action-label {
    padding: 0.25rem 0.5rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
}

/* Дополнительные селекторы для гарантии применения */
body .site-main.actions-page .action-card {
    background: #ffffff !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    transition: none !important;
    border-radius: 0 !important;
    margin-bottom: 2rem !important;
}

body .site-main.actions-page .action-title {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #ffe866 !important;
    margin: 0 0 0.75rem !important;
    line-height: 1.2 !important;
}

body .site-main.actions-page .action-description {
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    font-size: 1rem !important;
}

body .site-main.actions-page .action-badge {
    display: inline-block !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
}

/* Стили для дополнительных классов */
.actions-page-card,
.site-main.actions-page .actions-page-card {
    background: #ffffff !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    transition: none !important;
    border-radius: 0 !important;
    margin-bottom: 2rem !important;
}

.actions-page-badge,
.site-main.actions-page .actions-page-badge {
    display: inline-block !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
}

.actions-page-title,
.site-main.actions-page .actions-page-title {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #ffe866 !important;
    margin: 0 0 0.75rem !important;
    line-height: 1.2 !important;
}

.actions-page-description,
.site-main.actions-page .actions-page-description {
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    font-size: 1rem !important;
}

.actions-page-date,
.site-main.actions-page .actions-page-date {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    padding-top: 0 !important;
    border-top: none !important;
}

.actions-page-label,
.site-main.actions-page .actions-page-label {
    padding: 0.25rem 0.5rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
}

@media (max-width: 768px) {
    .actions-page .page-hero {
        padding: 2rem 0 1rem !important;
    }
    
    .actions-page .page-hero .page-title {
        font-size: 2rem !important;
    }
    
    .actions-page .page-hero .page-description {
        font-size: 0.9rem !important;
    }
    
    .actions-page .actions-content-section {
        padding: 0 0 2rem !important;
    }
    
    .actions-page .actions-grid {
        gap: 1.5rem !important;
    }
    
    .actions-page .action-title {
        font-size: 1.5rem !important;
    }
    
    .actions-page .action-date {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }
}

/* Services Page Styles */
.services-page .page-hero {
    background: #ffffff;
    padding: 3rem 0 2rem;
    text-align: left;
}

.services-page .page-hero .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.services-page .page-hero .page-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.services-page .services-content-section {
    padding: 0 0 3rem;
}

.services-page .services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.services-page .service-category {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.services-page .service-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.services-page .service-category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.services-page .service-category-header i {
    font-size: 2rem;
    color: #667eea;
    margin-right: 1rem;
}

.services-page .service-category-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.services-page .services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-page .services-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.services-page .services-list li:last-child {
    border-bottom: none;
}

.services-page .services-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

@media (max-width: 768px) {
    .services-page .page-hero {
        padding: 2rem 0 1rem;
    }
    
    .services-page .page-hero .page-title {
        font-size: 2rem;
    }
    
    .services-page .page-hero .page-description {
        font-size: 0.9rem;
    }
    
    .services-page .services-content-section {
        padding: 0 0 2rem;
    }
    
    .services-page .services-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-page .service-category {
        padding: 1.5rem;
    }
}

/* Apparatus Page Styles */
.apparatus-page .page-hero {
    background: #ffffff;
    padding: 3rem 0 2rem;
    text-align: left;
}

.apparatus-page .page-hero .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.apparatus-page .page-hero .page-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.apparatus-page .apparatus-content-section {
    padding: 0 0 3rem;
}

.apparatus-page .apparatus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.apparatus-page .apparatus-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.apparatus-page .apparatus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.apparatus-page .apparatus-image {
    height: 200px;
    overflow: hidden;
}

.apparatus-page .apparatus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.apparatus-page .apparatus-card:hover .apparatus-image img {
    transform: scale(1.05);
}

.apparatus-page .apparatus-content {
    padding: 1.5rem;
}

.apparatus-page .apparatus-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.75rem;
}

.apparatus-page .apparatus-description {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.apparatus-page .apparatus-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apparatus-page .apparatus-features li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.apparatus-page .apparatus-features li:before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: #f093fb;
}

@media (max-width: 768px) {
    .apparatus-page .page-hero {
        padding: 2rem 0 1rem;
    }
    
    .apparatus-page .page-hero .page-title {
        font-size: 2rem;
    }
    
    .apparatus-page .page-hero .page-description {
        font-size: 1rem;
    }
    
    .apparatus-page .apparatus-content-section {
        padding: 0 0 2rem;
    }
    
    .apparatus-page .apparatus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .apparatus-page .apparatus-image {
        height: 150px;
    }
    
    .apparatus-page .apparatus-content {
        padding: 1rem;
    }
}


/* Prices Page Styles */
.prices-page .page-hero {
    background: #ffffff;
    padding: 3rem 0 2rem;
    text-align: left;
}

.prices-page .page-hero .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.prices-page .page-hero .page-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.prices-page .prices-content-section {
    padding: 0 0 3rem;
}

.prices-page .prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    align-items: start !important; /* Выравнивание по верху, чтобы карточки не растягивались */
}

@media (min-width: 1200px) {
    .prices-page .prices-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

.prices-page .price-category {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: auto !important; /* Автоматическая высота в зависимости от контента */
    min-height: auto !important; /* Убираем минимальную высоту */
    display: flex !important;
    flex-direction: column !important; /* Вертикальное расположение контента */
}

.prices-page .price-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.prices-page .category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1.5rem;
    text-align: left;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #FFD700;
    line-height: 1.4;
}

.prices-page .services-list {
    flex: 1; /* Занимает доступное пространство */
    display: flex;
    flex-direction: column;
}

.prices-page .services-list .service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f1f5f9;
    gap: 1rem;
    flex-shrink: 0; /* Не сжимается */
}

.prices-page .services-list .service-item:last-child {
    border-bottom: none;
}

.prices-page .service-name {
    color: #1e293b;
    font-weight: 400;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    min-width: 0; /* Позволяет тексту переноситься */
}

.prices-page .service-price {
    color: #FFD700;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 0;
}

@media (max-width: 768px) {
    .prices-page .page-hero {
        padding: 2rem 0 1rem;
    }
    
    .prices-page .page-hero .page-title {
        font-size: 2rem;
    }
    
    .prices-page .page-hero .page-description {
        font-size: 1rem;
    }
    
    .prices-page .prices-content-section {
        padding: 0 0 2rem;
    }
    
    .prices-page .prices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .prices-page .price-category {
        padding: 1.5rem;
    }
    
    .prices-page .category-title {
        font-size: 1.1rem;
    }
    
    .prices-page .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .prices-page .service-price {
        margin-left: 0;
        font-size: 1rem;
    }
}


/* About Page Styles */
.about-page {
    background: #EBEBEB !important; /* Светло-серый фон как на фото */
}

.about-page .page-hero {
    background: #ffffff;
    padding: 3rem 0 2rem;
    text-align: left;
    color: #1e293b;
}

/* Отступ для шапки about на десктопе для разделения с меню */
@media (min-width: 1025px) {
    .about-page .page-hero {
        margin-top: 2rem !important; /* Отступ сверху, чтобы был виден фон между меню и шапкой */
    }
}

.about-page .page-hero .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-page .page-hero .page-description {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.about-page .about-content-section {
    padding: 2.5rem 0 3rem !important; /* Отступ сверху для разделения с шапкой */
    background: #EBEBEB !important; /* Светло-серый фон */
}

.about-page .about-intro-section {
    margin-top: 0 !important;
    margin-bottom: 4rem !important;
}

.about-page .intro-text {
    font-size: 1.125rem !important;
    line-height: 1.7 !important;
    color: #000000 !important; /* Черный цвет */
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    font-weight: 500 !important;
    background: #ffffff !important; /* Белый фон */
    border-radius: 12px !important; /* Скругление 12px */
    padding: 2rem !important; /* Внутренние отступы */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important; /* Легкая тень для объема */
}

.about-page .features-section {
    margin-top: 2rem !important; /* Отступ сверху для разделения с блоком выше */
    padding: 0;
}

.about-page .features-section .olymp-section-title {
    color: #FFD700 !important; /* Золотой цвет заголовка */
    margin-bottom: 0.75rem !important; /* Отступ под заголовком перед подзаголовком */
    text-align: center !important; /* Центрируем заголовок */
}

.about-page .features-section .features-subtitle {
    font-size: 1rem !important;
    color: #64748b !important; /* Темно-серый цвет */
    text-align: center !important; /* Выравнивание по центру как подзаголовок */
    margin-bottom: 2.5rem !important; /* Отступ под подзаголовком перед карточками */
    line-height: 1.6 !important;
    font-weight: 400 !important;
    font-style: italic !important; /* Курсив для подзаголовка */
}

.about-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Стили для карточек преимуществ на странице about */
.about-page .olymp-card {
    background: #ffffff !important; /* Белый фон карточек */
    border-radius: 12px !important; /* Скругление как на фото */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important; /* Легкая тень */
    text-align: center !important;
}

.about-page .olymp-card .olymp-card-title {
    color: #1e293b !important; /* Темно-синий/черный цвет заголовка */
    font-weight: 700 !important;
}

.about-page .olymp-card .olymp-card-text {
    color: #64748b !important; /* Темно-серый цвет описания */
}

.about-page .feature-icon,
.feature-icon {
    width: 4rem !important;
    height: 4rem !important;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%) !important; /* Градиент от голубого к розовому */
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem !important;
}

.about-page .feature-icon i,
.feature-icon i {
    font-size: 1.5rem !important;
    color: #000000 !important; /* Черный цвет иконок */
}

.about-page .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem;
}

.about-page .feature-description {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.about-page .stats-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.about-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-page .stat-item {
    text-align: center;
}

.about-page .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-page .stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .about-page .page-hero {
        padding: 2rem 0 1rem;
    }
    
    .about-page .page-hero .page-title {
        font-size: 2rem;
    }
    
    .about-page .page-hero .page-description {
        font-size: 1rem;
    }
    
    .about-page .about-content-section {
        padding: 1.5rem 0 2rem !important; /* Меньший отступ на мобильных */
    }
    
    .about-page .intro-text {
        padding: 1.5rem !important; /* Меньшие отступы на мобильных */
    }
    
    .about-page .features-section {
        margin-top: 1.5rem !important; /* Меньший отступ на мобильных */
        padding: 0 !important;
    }
    
    .about-page .features-section .olymp-section-title {
        margin-bottom: 0.5rem !important; /* Отступ под заголовком перед подзаголовком на мобильных */
        text-align: center !important;
    }
    
    .about-page .features-section .features-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 2rem !important; /* Отступ под подзаголовком перед карточками на мобильных */
        text-align: center !important;
    }
    
    .about-page .feature-icon,
    .feature-icon {
        width: 3.5rem !important;
        height: 3.5rem !important;
    }
    
    .about-page .feature-icon i,
    .feature-icon i {
        font-size: 1.25rem !important;
    }
    
    .about-page .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-page .features-section {
        margin-top: 1rem !important; /* Еще меньший отступ на маленьких экранах */
    }
    
    .about-page .features-section .olymp-section-title {
        margin-bottom: 0.5rem !important; /* Отступ под заголовком перед подзаголовком на маленьких экранах */
        text-align: center !important;
    }
    
    .about-page .features-section .features-subtitle {
        font-size: 0.875rem !important;
        margin-bottom: 1.5rem !important; /* Отступ под подзаголовком перед карточками на маленьких экранах */
        text-align: center !important;
    }
    
    .about-page .feature-icon,
    .feature-icon {
        width: 3rem !important;
        height: 3rem !important;
    }
    
    .about-page .feature-icon i,
    .feature-icon i {
        font-size: 1rem !important;
    }
}


/* Contacts Page Styles - Updated with Gold and Black Theme */
.contacts-page {
    background-color: #EBEBEB !important; /* Светло-серый фон как на странице специалистов */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.contacts-page .page-hero {
    background: #ffffff !important;
    padding: 3rem 0 2rem !important;
    text-align: left !important; /* Выравнивание слева как на фото */
    color: #1e293b !important;
}

/* Отступ сверху для шапки контактов на десктопе для разделения с меню */
@media (min-width: 1025px) {
    .contacts-page .page-hero {
        margin-top: 2rem !important; /* Отступ сверху, чтобы был виден серый фон между меню и шапкой */
    }
}

.contacts-page .page-hero .page-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important; /* Темно-синий/черный цвет как на фото */
    margin-bottom: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.contacts-page .page-hero .page-description {
    font-size: 1rem !important;
    color: #64748b !important; /* Темно-серый цвет как на фото */
    margin-bottom: 0.5rem !important;
    font-weight: 400 !important;
}

.contacts-page .contacts-content-section {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 2.5rem 2rem 3rem !important; /* Отступ сверху для разделения с шапкой */
    background: #EBEBEB !important; /* Светло-серый фон */
}

.contacts-page .contacts-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    margin-top: 0 !important; /* Убираем margin-top, отступ уже в padding секции */
}

.contacts-page .contact-info {
    background: #ffffff !important;
    border-radius: 1rem !important;
    padding: 2rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
}

.contacts-page .contact-info:hover {
    border-color: #FFD700 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}

.contacts-page .contact-item {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 2rem !important;
}

.contacts-page .contact-item:last-child {
    margin-bottom: 0 !important;
}

.contacts-page .contact-item i {
    font-size: 1.5rem !important;
    color: #FFD700 !important; /* Золотой цвет для иконок */
    margin-right: 1rem !important;
    margin-top: 0.25rem !important;
    flex-shrink: 0 !important;
}

.contacts-page .contact-item h4 {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #000000 !important; /* Черный цвет */
    margin: 0 0 0.5rem !important;
}

.contacts-page .contact-item p {
    color: #374151 !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

.contacts-page .contact-item a {
    color: #FFD700 !important; /* Золотой цвет для ссылок */
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.contacts-page .contact-item a:hover {
    color: #000000 !important; /* Черный при наведении */
    text-decoration: underline !important;
}

.contacts-page .social-links {
    background: #ffffff !important;
    border-radius: 1rem !important;
    padding: 2rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
}

.contacts-page .social-links:hover {
    border-color: #FFD700 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}

.contacts-page .social-links h4 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #000000 !important; /* Черный цвет */
    margin: 0 0 1.5rem !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.contacts-page .social-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
}

.contacts-page .social-link {
    display: flex !important;
    align-items: center !important;
    padding: 1rem !important;
    background: #f8fafc !important;
    border-radius: 0.5rem !important;
    text-decoration: none !important;
    color: #64748b !important;
    transition: all 0.3s ease !important;
}

.contacts-page .social-link:hover {
    background: #fcb69f !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

.contacts-page .social-link i {
    font-size: 1.25rem !important;
    margin-right: 0.75rem !important;
}

.contacts-page .social-link span {
    font-weight: 500 !important;
}

/* Responsive Design for Contacts */
@media (max-width: 768px) {
    .contacts-page .contacts-content-section {
        padding: 1.5rem 1rem 2rem !important;
    }
    
    .contacts-page .contacts-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contacts-page .contact-info,
    .contacts-page .social-links {
        padding: 1.5rem !important;
    }
    
    .contacts-page .social-grid {
        grid-template-columns: 1fr !important;
    }
    
}

@media (max-width: 480px) {
    .contacts-page .page-hero .page-title {
        font-size: 1.75rem !important;
    }
    
    .contacts-page .page-hero .page-description {
        font-size: 0.95rem !important;
    }
    
    .contacts-page .contact-info,
    .contacts-page .social-links {
        padding: 1rem !important;
    }
    
    .contacts-page .contact-item {
        margin-bottom: 1.5rem !important;
    }
    
    .contacts-page .contact-item i {
        font-size: 1.25rem !important;
    }
    
    .contacts-page .contact-item h4 {
        font-size: 1rem !important;
    }
}


/* Before After Page Styles */
.before-after-page .page-hero {
    background: #ffffff;
    padding: 3rem 0 2rem;
    text-align: left;
    color: white;
}

.before-after-page .page-hero .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.before-after-page .page-hero .page-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.before-after-page .before-after-content-section {
    padding: 0 0 3rem;
}

.before-after-page .before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.before-after-page .before-after-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.before-after-page .before-after-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.before-after-page .card-header {
    padding: 1.5rem 1.5rem 1rem;
}

.before-after-page .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.before-after-page .card-description {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.before-after-page .images-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.before-after-page .before-image,
.before-after-page .after-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.before-after-page .before-image img,
.before-after-page .after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.before-after-page .image-label {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.before-after-page .before-image .image-label {
    background: rgba(239, 68, 68, 0.8);
}

.before-after-page .after-image .image-label {
    background: rgba(34, 197, 94, 0.8);
}

.before-after-page .before-after-card:hover .images-container img {
    transform: scale(1.05);
}

.before-after-page .card-footer {
    padding: 1rem 1.5rem 1.5rem;
}

.before-after-page .procedure-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.before-after-page .procedure {
    font-weight: 600;
    color: #1e293b;
}

.before-after-page .duration {
    color: #64748b;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .before-after-page .page-hero {
        padding: 2rem 0 1rem;
    }
    
    .before-after-page .page-hero .page-title {
        font-size: 2rem;
    }
    
    .before-after-page .page-hero .page-description {
        font-size: 1rem;
    }
    
    .before-after-page .before-after-content-section {
        padding: 0 0 2rem;
    }
    
    .before-after-page .before-after-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .before-after-page .before-image,
    .before-after-page .after-image {
        height: 150px;
    }
    
    .before-after-page .card-header {
        padding: 1rem 1rem 0.75rem;
    }
    
    .before-after-page .card-footer {
        padding: 0.75rem 1rem 1rem;
    }
}


/* Reviews Page Styles */
.reviews-page .page-hero {
    background: #ffffff;
    padding: 3rem 0 2rem;
    text-align: left;
    color: white;
}

.reviews-page .page-hero .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reviews-page .page-hero .page-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.reviews-page .reviews-content-section {
    padding: 0 0 3rem;
}

.reviews-page .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reviews-page .review-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reviews-page .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.reviews-page .review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviews-page .reviewer-info .reviewer-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.25rem;
}

.reviews-page .reviewer-age {
    color: #64748b;
    font-size: 0.875rem;
}

.reviews-page .review-rating {
    display: flex;
    gap: 0.25rem;
}

.reviews-page .review-rating i {
    color: #d1d5db;
    font-size: 0.875rem;
}

.reviews-page .review-rating i.active {
    color: #fbbf24;
}

.reviews-page .review-content {
    margin-bottom: 1rem;
}

.reviews-page .review-text {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.reviews-page .review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.reviews-page .review-procedure {
    font-weight: 500;
    color: #3f2b96;
    font-size: 0.875rem;
}

.reviews-page .review-date {
    color: #9ca3af;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .reviews-page .page-hero {
        padding: 2rem 0 1rem;
    }
    
    .reviews-page .page-hero .page-title {
        font-size: 2rem;
    }
    
    .reviews-page .page-hero .page-description {
        font-size: 1rem;
    }
    
    .reviews-page .reviews-content-section {
        padding: 0 0 2rem;
    }
    
    .reviews-page .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reviews-page .review-card {
        padding: 1rem;
    }
}


/* Specialists Page Styles */
.specialists-page .page-hero {
    background: #ffffff;
    padding: 3rem 0 2rem;
    text-align: left;
    color: white;
}

.specialists-page .page-hero .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.specialists-page .page-hero .page-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.specialists-page .specialists-content-section {
    padding: 0 0 3rem;
}

.specialists-page .specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.specialists-page .specialist-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.specialists-page .specialist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.specialists-page .specialist-image {
    height: 250px;
    overflow: hidden;
}

.specialists-page .specialist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.specialists-page .specialist-card:hover .specialist-image img {
    transform: scale(1.05);
}

.specialists-page .specialist-content {
    padding: 1.5rem;
}

.specialists-page .specialist-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.specialists-page .specialist-position {
    color: #667eea;
    font-weight: 500;
    margin: 0 0 0.25rem;
}

.specialists-page .specialist-experience {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0 0 1rem;
}

.specialists-page .specialist-info {
    margin-bottom: 1rem;
}

.specialists-page .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.specialists-page .info-item i {
    color: #667eea;
    margin-right: 0.5rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.specialists-page .info-item span {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.4;
}

.specialists-page .certificates h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.specialists-page .certificates-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialists-page .certificate {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .specialists-page .page-hero {
        padding: 2rem 0 1rem;
    }
    
    .specialists-page .page-hero .page-title {
        font-size: 2rem;
    }
    
    .specialists-page .page-hero .page-description {
        font-size: 1rem;
    }
    
    .specialists-page .specialists-content-section {
        padding: 0 0 2rem;
    }
    
    .specialists-page .specialists-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .specialists-page .specialist-image {
        height: 200px;
    }
    
    .specialists-page .specialist-content {
        padding: 1rem;
    }
}


/* Cosmetics Page Styles */
.cosmetics-page .page-hero {
    background: #ffffff;
    padding: 3rem 0 2rem;
    text-align: left;
    color: #1e293b;
}

.cosmetics-page .page-hero .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cosmetics-page .page-hero .page-description {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.cosmetics-page .cosmetics-content-section {
    padding: 0 0 3rem;
}

.cosmetics-page .cosmetics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cosmetics-page .cosmetic-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cosmetics-page .cosmetic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.cosmetics-page .cosmetic-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.cosmetics-page .cosmetic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cosmetics-page .cosmetic-category {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(252, 182, 159, 0.9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.cosmetics-page .cosmetic-card:hover .cosmetic-image img {
    transform: scale(1.05);
}

.cosmetics-page .cosmetic-content {
    padding: 1.5rem;
}

.cosmetics-page .cosmetic-brand {
    color: #fcb69f;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cosmetics-page .cosmetic-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.75rem;
}

.cosmetics-page .cosmetic-description {
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 1.5rem;
}

.cosmetics-page .cosmetic-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cosmetics-page .cosmetic-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fcb69f;
}

.cosmetics-page .cosmetic-btn {
    background: #fcb69f;
    color: #000000 !important; /* Черный текст для читаемости */
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cosmetics-page .cosmetic-btn:hover {
    background: #e6a085;
    color: #000000 !important; /* Черный текст при наведении */
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cosmetics-page .page-hero {
        padding: 2rem 0 1rem;
    }
    
    .cosmetics-page .page-hero .page-title {
        font-size: 2rem;
    }
    
    .cosmetics-page .page-hero .page-description {
        font-size: 1rem;
    }
    
    .cosmetics-page .cosmetics-content-section {
        padding: 0 0 2rem;
    }
    
    .cosmetics-page .cosmetics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cosmetics-page .cosmetic-image {
        height: 150px;
    }
    
    .cosmetics-page .cosmetic-content {
        padding: 1rem;
    }
}


/* Services Search Page Styles - Updated with Gold and Black Theme */
.services-search-page {
    /* Фон такой же как на странице services (белый по умолчанию, без явного указания) */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.services-search-page .page-hero {
    background: #ffffff !important;
    padding: 3rem 0 2rem !important;
    text-align: left !important;
}

/* Отступ для шапки services-search на десктопе для разделения с меню */
@media (min-width: 1025px) {
    .services-search-page .page-hero {
        margin-top: 2rem !important; /* Отступ сверху, чтобы был виден фон между меню и шапкой */
    }
}

.services-search-page .services-search-content-section {
    padding: 2.5rem 0 3rem !important; /* Отступ сверху для разделения с шапкой */
}

.services-search-page .services-categories {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 0 !important; /* Убираем margin-top, отступ создается через padding секции */
}

.services-search-page .service-category {
    background: #ffffff !important;
    border-radius: 1rem !important;
    padding: 2rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
}

.services-search-page .service-category:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: #FFD700 !important;
}

.services-search-page .category-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #000000 !important; /* Черный цвет */
    margin: 0 0 1.5rem !important;
    text-align: center !important;
    padding-bottom: 1rem !important;
    border-bottom: 3px solid #FFD700 !important; /* Золотая полоса */
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.services-search-page .services-list .service-item {
    padding: 1.25rem 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    transition: all 0.3s ease !important;
}

.services-search-page .services-list .service-item:last-child {
    border-bottom: none !important;
}

.services-search-page .services-list .service-item:hover {
    background-color: #fefce8 !important;
    border-radius: 0.5rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-left: -1rem !important;
    margin-right: -1rem !important;
}

.services-search-page .service-name {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #000000 !important; /* Черный цвет */
    margin: 0 0 0.5rem !important;
    line-height: 1.4 !important;
}

.services-search-page .service-description {
    color: #374151 !important;
    margin: 0 0 1rem !important;
    line-height: 1.6 !important;
    font-size: 0.95rem !important;
}

.services-search-page .service-btn {
    display: inline-block !important; /* Чтобы ссылка работала как кнопка */
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    color: #000000 !important;
    border: 2px solid #FFD700 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 0.75rem !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    text-decoration: none !important; /* Убираем подчеркивание ссылки */
}

.services-search-page .service-btn:hover {
    background: linear-gradient(135deg, #000000 0%, #333333 100%) !important;
    color: #FFD700 !important;
    border-color: #000000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3) !important;
    text-decoration: none !important; /* Убираем подчеркивание при наведении */
}

.services-search-page .service-btn:active {
    transform: translateY(0) !important;
}

.services-search-page .service-btn:visited {
    color: #000000 !important; /* Цвет посещенной ссылки */
}

/* Responsive Design for Services Search */
@media (max-width: 768px) {
    .services-search-page .page-hero {
        padding: 2rem 0 1rem !important;
    }
    
    .services-search-page .services-search-content-section {
        padding: 1.5rem 0 2rem !important; /* Меньший отступ на мобильных */
    }
    
    .services-search-page .services-categories {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 0 !important; /* Убираем margin-top, отступ создается через padding секции */
    }
    
    .services-search-page .service-category {
        padding: 1.5rem !important;
    }
    
    .services-search-page .category-title {
        font-size: 1.25rem !important;
    }
    
    .services-search-page .services-list .service-item {
        padding: 1rem 0 !important;
    }
    
    .services-search-page .service-name {
        font-size: 1rem !important;
    }
    
    .services-search-page .service-description {
        font-size: 0.9rem !important;
    }
    
    .services-search-page .service-btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .services-search-page .service-category {
        padding: 1rem !important;
    }
    
    .services-search-page .category-title {
        font-size: 1.125rem !important;
    }
}

/* ===== ACTIONS PAGE STYLES - Matching services-search layout ===== */
.olymp-actions-page {
    background: #F2F2F2 !important; /* Светло-серый фон как на втором фото */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Шапка с белым фоном для видимости на сером фоне */
.olymp-actions-page .page-hero {
    background: #ffffff !important;
    padding: 3rem 0 2rem !important;
    text-align: left !important;
}

/* Отступ для шапки actions на десктопе для разделения с меню */
@media (min-width: 1025px) {
    .olymp-actions-page .page-hero {
        margin-top: 2rem !important; /* Отступ сверху, чтобы был виден серый фон между меню и шапкой */
    }
}

.olymp-actions-page .page-hero .page-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #212529 !important; /* Темно-серый/черный цвет */
    margin-bottom: 1rem !important;
    text-align: left !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.olymp-actions-page .page-hero .page-description {
    font-size: 1rem !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 0.5rem !important;
}

.olymp-actions-page .actions-content-section {
    padding: 2.5rem 0 3rem !important; /* Отступ сверху для разделения с шапкой */
    background: #F2F2F2 !important;
}

.olymp-actions-page .news-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 0 !important; /* Убираем margin-top, отступ создается через padding секции */
}

/* Responsive Design for Actions Page */
@media (max-width: 768px) {
    .olymp-actions-page .page-hero {
        padding: 2rem 0 1rem !important;
    }
    
    .olymp-actions-page .page-hero .page-title {
        font-size: 2rem !important;
    }
    
    .olymp-actions-page .page-hero .page-description {
        font-size: 0.9rem !important;
    }
    
    .olymp-actions-page .actions-content-section {
        padding: 1.5rem 0 2rem !important; /* Меньший отступ на мобильных */
    }
    
    .olymp-actions-page .news-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 480px) {
    .olymp-actions-page .news-grid {
        gap: 1rem !important;
    }
}

/* Переопределение стилей для news-card внутри olymp-actions-page */
.olymp-actions-page .news-card {
    background: #ffffff !important;
    border-radius: 0.75rem !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
}

.olymp-actions-page .news-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: #FFD700 !important;
}

.olymp-actions-page .news-card-image {
    width: 100% !important;
    height: 240px !important;
    overflow: hidden !important;
}

.olymp-actions-page .news-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.olymp-actions-page .news-card:hover .news-card-image img {
    transform: scale(1.05) !important;
}

.olymp-actions-page .news-card-content {
    padding: 1.5rem !important;
}

.olymp-actions-page .news-card-category {
    display: inline-block !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #FFD700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 0.75rem !important;
}

.olymp-actions-page .news-card-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.4 !important;
}

.olymp-actions-page .news-card-title a {
    color: #000000 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.olymp-actions-page .news-card-title a:hover {
    color: #FFD700 !important;
}

.olymp-actions-page .news-card-subtitle {
    font-size: 0.875rem !important;
    color: #374151 !important;
    margin-bottom: 1rem !important;
}

.olymp-actions-page .news-card-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 1rem !important;
    padding-top: 1rem !important;
    border-top: 1px solid #e5e7eb !important;
}

.olymp-actions-page .news-card-date {
    font-size: 0.875rem !important;
    color: #374151 !important;
}

.olymp-actions-page .news-card-link {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #FFD700 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.olymp-actions-page .news-card-link:hover {
    color: #000000 !important;
    transform: translateX(4px) !important;
}

@media (max-width: 768px) {
    .olymp-actions-page .news-card-image {
        height: 200px !important;
    }
}

@media (max-width: 480px) {
    .olymp-actions-page .news-card-content {
        padding: 1rem !important;
    }
    
    .olymp-actions-page .news-card-title {
        font-size: 1.125rem !important;
    }
}

/* КРИТИЧЕСКИ ВАЖНО: Заголовок АКЦИИ должен быть темно-серым и выровнен слева */
html body .site-main.olymp-actions-page .olymp-actions-container .container h1.olymp-actions-title,
html body .site-main.olymp-actions-page h1.olymp-actions-title,
.olymp-actions-page h1.olymp-actions-title,
h1.olymp-actions-title,
.olymp-actions-page .page-hero .page-title {
    color: #212529 !important; /* Темно-серый/черный цвет как на первом фото */
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.75rem !important;
    text-align: left !important; /* Выравнивание слева */
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

/* Updated: Tue Oct 28 10:12:47 MSK 2025 */
/* Test: Actions styles updated at Tue Oct 28 10:13:22 MSK 2025 */
/* Actions styles fixed at Tue Oct 28 10:16:36 MSK 2025 */

/* Максимально специфичные стили для Actions */
html body .site-main.actions-page .action-card,
html body .site-main.actions-page .actions-page-card {
    background: #ffffff !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    transition: none !important;
    border-radius: 0 !important;
    margin-bottom: 2rem !important;
    display: block !important;
}

html body .site-main.actions-page .action-badge,
html body .site-main.actions-page .actions-page-badge {
    display: inline-block !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
}

html body .site-main.actions-page .action-title,
html body .site-main.actions-page .actions-page-title {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #ffe866 !important;
    margin: 0 0 0.75rem !important;
    line-height: 1.2 !important;
}

html body .site-main.actions-page .action-description,
html body .site-main.actions-page .actions-page-description {
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    font-size: 1rem !important;
}

html body .site-main.actions-page .action-date,
html body .site-main.actions-page .actions-page-date {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    padding-top: 0 !important;
    border-top: none !important;
}

html body .site-main.actions-page .action-label,
html body .site-main.actions-page .actions-page-label {
    padding: 0.25rem 0.5rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
}

/* Переопределение всех возможных конфликтующих стилей */
html body .site-main.actions-page .action-card,
html body .site-main.actions-page .actions-page-card,
html body .site-main.actions-page .news-card,
html body .site-main.actions-page .service-card {
    background: #ffffff !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    transition: none !important;
    border-radius: 0 !important;
    margin-bottom: 2rem !important;
    display: block !important;
    position: static !important;
    height: auto !important;
    overflow: visible !important;
    transform: none !important;
}

html body .site-main.actions-page .action-card:hover,
html body .site-main.actions-page .actions-page-card:hover,
html body .site-main.actions-page .news-card:hover,
html body .site-main.actions-page .service-card:hover {
    transform: none !important;
    box-shadow: none !important;
}
/* Actions styles ULTRA FIXED at Tue Oct 28 10:22:30 MSK 2025 */
/* Actions styles FINAL FIX at Tue Oct 28 10:23:53 MSK 2025 */

/* Скомпилированные стили из actions.scss */
.actions-page .page-hero {
    background: #ffffff;
    padding: 3rem 0 2rem;
    text-align: left;
}

.actions-page .page-hero .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.actions-page .page-hero .page-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.actions-page .actions-content-section {
    padding: 0 0 3rem;
}

.actions-page .actions-content-section .actions-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.actions-page .actions-content-section .action-card {
    background: #ffffff;
    border: none;
    padding: 0;
    box-shadow: none;
    transition: none;
}

.actions-page .actions-content-section .action-card .action-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    background: #f1f5f9;
    color: #64748b;
}

.actions-page .actions-content-section .action-card .action-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.actions-page .actions-content-section .action-card .action-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.actions-page .actions-content-section .action-card .action-date {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0;
    border-top: none;
}

.actions-page .actions-content-section .action-card .action-date span {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 600;
}

.actions-page .actions-content-section .action-card .action-date span strong {
    color: #1e293b;
}

.actions-page .actions-content-section .action-card .action-date .action-label {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: #f1f5f9;
    color: #64748b;
}

@media (max-width: 768px) {
    .actions-page .page-hero {
        padding: 2rem 0 1rem;
    }
    
    .actions-page .page-hero .page-title {
        font-size: 2rem;
    }
    
    .actions-page .page-hero .page-description {
        font-size: 0.9rem;
    }
    
    .actions-page .actions-content-section {
        padding: 0 0 2rem;
    }
    
    .actions-page .actions-content-section .actions-grid {
        gap: 1.5rem;
    }
    
    .actions-page .actions-content-section .action-card .action-title {
        font-size: 1.5rem;
    }
    
    .actions-page .actions-content-section .action-card .action-date {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Дополнительные стили с !important для гарантии применения */
.site-main.actions-page .action-card {
    background: #ffffff !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    transition: none !important;
    border-radius: 0 !important;
    margin-bottom: 2rem !important;
    display: block !important;
}

.site-main.actions-page .action-badge {
    display: inline-block !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
}

.site-main.actions-page .action-title {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #ffe866 !important;
    margin: 0 0 0.75rem !important;
    line-height: 1.2 !important;
}

.site-main.actions-page .action-description {
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    font-size: 1rem !important;
}

.site-main.actions-page .action-date {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    padding-top: 0 !important;
    border-top: none !important;
}

.site-main.actions-page .action-label {
    padding: 0.25rem 0.5rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
}
/* Actions SCSS compiled and added at Tue Oct 28 10:34:01 MSK 2025 */
/* Actions SCSS FINAL COMPILATION at Tue Oct 28 10:36:34 MSK 2025 */

/* Полностью новые стили для страницы Actions - ПЕРЕПИСАНЫ */
.actions-page-container {
    background: #ffffff !important;
    padding: 3rem 0 !important;
}

.actions-page-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffe866 !important;
    margin-bottom: 1rem !important;
    text-align: left !important;
}

.actions-page-description {
    font-size: 1rem !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
    text-align: left !important;
}

.actions-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
}

.action-item {
    background: #ffffff !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.action-badge-new {
    display: inline-block !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
}

.action-title-new {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #ffe866 !important;
    margin: 0 0 0.75rem !important;
    line-height: 1.2 !important;
}

.action-description-new {
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    font-size: 1rem !important;
}

.action-date-new {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

.action-date-text {
    color: #64748b !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
}

.action-date-text strong {
    color: #ffe866 !important;
}

.action-label-new {
    padding: 0.25rem 0.5rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
}

@media (max-width: 768px) {
    .actions-page-container {
        padding: 2rem 0 !important;
    }
    
    .actions-page-title {
        font-size: 2rem !important;
    }
    
    .actions-page-description {
        font-size: 0.9rem !important;
    }
    
    .action-title-new {
        font-size: 1.5rem !important;
    }
    
    .action-date-new {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }
}
/* Actions page COMPLETELY REWRITTEN at Tue Oct 28 10:39:20 MSK 2025 */

/* Скомпилированные SCSS стили для Actions */
.olymp-actions-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    padding: 0 !important; /* Убираем отступы, чтобы не было лишнего белого блока */
    margin: 0 !important; /* Убираем отступы */
}

/* Убираем стандартные отступы у site-main для страницы акций */
.site-main.olymp-actions-page {
    padding: 0 !important;
    margin: 0 !important;
}

.olymp-actions-page .olymp-actions-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

/* Title Section - White Background */
.olymp-actions-header {
    background-color: #ffffff !important;
    padding: 5rem 0 2rem !important; /* Увеличен верхний отступ для видимого расстояния от меню */
    margin-top: 0 !important; /* Убираем возможные отступы сверху */
}

/* Cards Section - Light Grey Background */
.olymp-actions-cards-section {
    background-color: #F8F8F8 !important; /* Светлый серый фон как на фото */
    padding: 3rem 0 3rem !important; /* Уменьшен нижний отступ, чтобы убрать лишний белый блок */
}

/* Header Section Styles */
.olymp-actions-header .olymp-actions-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #212529 !important;
    margin-bottom: 0.75rem !important;
    text-align: left !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.olymp-actions-header .olymp-actions-subtitle {
    font-size: 1.125rem !important;
    color: #6c757d !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    text-align: left !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-weight: 400 !important;
}

/* Cards Section Grid */
.olymp-actions-cards-section .news-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 2rem !important;
}

.olymp-actions-page .olymp-actions-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #212529 !important; /* Темно-серый/черный цвет как на первом фото */
    margin-bottom: 0.75rem !important;
    text-align: left !important; /* Выравнивание слева */
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.olymp-actions-page .olymp-actions-subtitle {
    font-size: 1.125rem !important;
    color: #6c757d !important; /* Светлый серый цвет как на первом фото */
    line-height: 1.5 !important;
    margin-bottom: 3rem !important;
    text-align: left !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-weight: 400 !important;
}

.olymp-actions-page .olymp-actions-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
}

.olymp-actions-page .olymp-action-block {
    background: #ffffff !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    position: relative !important;
}

.olymp-actions-page .olymp-action-block .olymp-action-badge {
    display: inline-block !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
}

.olymp-actions-page .olymp-action-block .olymp-action-heading {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #ffe866 !important;
    margin: 0 0 0.75rem !important;
    line-height: 1.2 !important;
}

.olymp-actions-page .olymp-action-block .olymp-action-text {
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    font-size: 1rem !important;
}

.olymp-actions-page .olymp-action-block .olymp-action-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

.olymp-actions-page .olymp-action-block .olymp-action-footer .olymp-action-date {
    color: #64748b !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
}

.olymp-actions-page .olymp-action-block .olymp-action-footer .olymp-action-date strong {
    color: #ffe866 !important;
}

.olymp-actions-page .olymp-action-block .olymp-action-footer .olymp-action-tag {
    padding: 0.25rem 0.5rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
}

@media (max-width: 768px) {
    .olymp-actions-page {
        padding: 2rem 0 !important;
    }
    
    .olymp-actions-page .olymp-actions-title {
        font-size: 2rem !important;
    }
    
    .olymp-actions-page .olymp-actions-subtitle {
        font-size: 0.9rem !important;
    }
    
    .olymp-actions-page .olymp-action-block .olymp-action-heading {
        font-size: 1.5rem !important;
    }
    
    .olymp-actions-page .olymp-action-block .olymp-action-footer {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }
}
/* Actions ULTIMATE FIX with inline styles at Tue Oct 28 10:44:14 MSK 2025 */
/* Actions SCSS COMPILED AND ADDED at Tue Oct 28 10:49:49 MSK 2025 */

/* Стили для страницы Actions - ПРЯМО В ОСНОВНОМ CSS */
.olymp-actions-page {
    background: #ffffff !important;
    padding: 3rem 0 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.olymp-actions-page .olymp-actions-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
}

.olymp-actions-page .olymp-actions-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #212529 !important; /* Темно-серый/черный цвет как на первом фото */
    margin-bottom: 0.75rem !important;
    text-align: left !important; /* Выравнивание слева */
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.olymp-actions-page .olymp-actions-subtitle {
    font-size: 1.125rem !important;
    color: #6c757d !important; /* Светлый серый цвет как на первом фото */
    line-height: 1.5 !important;
    margin-bottom: 3rem !important;
    text-align: left !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-weight: 400 !important;
}

.olymp-actions-page .olymp-actions-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
}

.olymp-actions-page .olymp-action-block {
    background: #ffffff !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    position: relative !important;
}

.olymp-actions-page .olymp-action-block .olymp-action-badge {
    display: inline-block !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
}

.olymp-actions-page .olymp-action-block .olymp-action-heading {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #ffe866 !important;
    margin: 0 0 0.75rem !important;
    line-height: 1.2 !important;
}

.olymp-actions-page .olymp-action-block .olymp-action-text {
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    font-size: 1rem !important;
}

.olymp-actions-page .olymp-action-block .olymp-action-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

.olymp-actions-page .olymp-action-block .olymp-action-footer .olymp-action-date {
    color: #64748b !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
}

.olymp-actions-page .olymp-action-block .olymp-action-footer .olymp-action-date strong {
    color: #ffe866 !important;
}

.olymp-actions-page .olymp-action-block .olymp-action-footer .olymp-action-tag {
    padding: 0.25rem 0.5rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
}

@media (max-width: 768px) {
    .olymp-actions-page {
        padding: 2rem 0 !important;
    }
    
    .olymp-actions-page .olymp-actions-title {
        font-size: 2rem !important;
    }
    
    .olymp-actions-page .olymp-actions-subtitle {
        font-size: 0.9rem !important;
    }
    
    .olymp-actions-page .olymp-action-block .olymp-action-heading {
        font-size: 1.5rem !important;
    }
    
    .olymp-actions-page .olymp-action-block .olymp-action-footer {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }
}
/* Actions styles FINAL FIX in main CSS at Tue Oct 28 11:09:56 MSK 2025 */

/* ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ ГАРАНТИИ ПРИМЕНЕНИЯ */
html body .site-main .olymp-actions-page {
    background: transparent !important; /* Убираем фон, чтобы не было лишнего белого блока */
    padding: 0 !important; /* Убираем отступы, чтобы не было лишнего белого блока */
}

/* Максимально специфичный стиль для заголовка АКЦИИ */
html body .site-main .olymp-actions-page .olymp-actions-container .container h1.olymp-actions-title {
    color: #212529 !important; /* Темно-серый/черный цвет как на первом фото */
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.75rem !important;
    text-align: left !important; /* Выравнивание слева */
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

html body .site-main .olymp-actions-page .olymp-actions-subtitle {
    font-size: 1.125rem !important;
    color: #6c757d !important; /* Светлый серый цвет как на первом фото */
    line-height: 1.5 !important;
    margin-bottom: 3rem !important;
    text-align: left !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-weight: 400 !important;
}

html body .site-main .olymp-actions-page .olymp-actions-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
}

html body .site-main .olymp-actions-page .olymp-action-block {
    background: #ffffff !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

html body .site-main .olymp-actions-page .olymp-action-badge {
    display: inline-block !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
}

html body .site-main .olymp-actions-page .olymp-action-heading {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #ffe866 !important;
    margin: 0 0 0.75rem !important;
    line-height: 1.2 !important;
}

html body .site-main .olymp-actions-page .olymp-action-text {
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    font-size: 1rem !important;
}

html body .site-main .olymp-actions-page .olymp-action-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

html body .site-main .olymp-actions-page .olymp-action-tag {
    padding: 0.25rem 0.5rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
}
/* Actions ULTIMATE STYLES at Tue Oct 28 11:16:47 MSK 2025 */

/* ===== UNIFIED COLOR SCHEME FOR ALL PAGES ===== */
:root {
    --olymp-primary-gold: #c9a961;
    --olymp-accent-yellow: #ffe866;
    --olymp-dark-text: #1e293b;
    --olymp-gray-text: #64748b;
    --olymp-light-gray: #f8fafc;
    --olymp-white: #ffffff;
    --olymp-hover-gold: #b8954f;
    --olymp-border-light: #e5e7eb;
}

/* ===== UNIFIED PAGE LAYOUT ===== */
.olymp-page {
    background-color: var(--olymp-white) !important;
    padding: 4rem 0 !important;
    min-height: 100vh !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.olymp-page-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

/* ===== UNIFIED TYPOGRAPHY ===== */
.olymp-page-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--olymp-primary-gold) !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    line-height: 1.2 !important;
}

.olymp-page-subtitle {
    font-size: 1.125rem !important;
    color: var(--olymp-dark-text) !important;
    margin-bottom: 3rem !important;
    text-align: center !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 1.6 !important;
}

.olymp-section-title {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--olymp-primary-gold) !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.olymp-section-subtitle {
    font-size: 1rem !important;
    color: var(--olymp-gray-text) !important;
    margin-bottom: 2rem !important;
    text-align: center !important;
    max-width: 500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ===== UNIFIED CARDS ===== */
.olymp-card {
    background: var(--olymp-white) !important;
    border-radius: 0.75rem !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    border: 1px solid var(--olymp-border-light) !important;
}

.olymp-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}

.olymp-card-header {
    padding: 1.5rem 1.5rem 1rem !important;
}

.olymp-card-content {
    padding: 0 1.5rem 1.5rem !important;
}

.olymp-card-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: var(--olymp-dark-text) !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.4 !important;
}

.olymp-card-text {
    font-size: 0.875rem !important;
    color: var(--olymp-gray-text) !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
}

.olymp-card-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 1rem !important;
    border-top: 1px solid var(--olymp-border-light) !important;
}

.olymp-card-link {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: var(--olymp-primary-gold) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.olymp-card-link:hover {
    color: var(--olymp-hover-gold) !important;
    transform: translateX(4px) !important;
}

/* ===== UNIFIED GRID LAYOUTS ===== */
.olymp-grid-2 {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
}

.olymp-grid-3 {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
}

.olymp-grid-4 {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 1.5rem !important;
}

/* ===== UNIFIED CATEGORY BADGES ===== */
.olymp-category-badge {
    display: inline-block !important;
    padding: 0.5rem 1rem !important;
    background-color: var(--olymp-accent-yellow) !important;
    color: var(--olymp-dark-text) !important;
    border-radius: 50px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 1rem !important;
}

/* ===== ABOUT PAGE SPECIFIC STYLES - Updated with Gold and Black Theme ===== */
.about-page {
    background: #EBEBEB !important; /* Светло-серый фон как на фото */
}

.about-page .about-content-section {
    padding: 2.5rem 0 3rem !important; /* Отступ сверху для разделения с шапкой */
    background: #EBEBEB !important; /* Светло-серый фон */
}

.about-intro-section {
    margin-top: 0 !important; /* Убираем margin-top, отступ создается через padding секции */
    margin-bottom: 4rem !important;
}

.about-intro-section .intro-text {
    font-size: 1.125rem !important;
    color: #000000 !important; /* Черный цвет */
    line-height: 1.7 !important;
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    font-weight: 500 !important;
    background: #ffffff !important; /* Белый фон */
    border-radius: 12px !important; /* Скругление 12px */
    padding: 2rem !important; /* Внутренние отступы */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important; /* Легкая тень для объема */
}

.features-section {
    margin-top: 2rem !important; /* Отступ сверху для разделения с блоком выше */
    margin-bottom: 4rem !important;
}

.features-section .olymp-section-title {
    color: #FFD700 !important; /* Золотой цвет заголовка */
    margin-bottom: 0.75rem !important; /* Отступ под заголовком перед подзаголовком */
    text-align: center !important; /* Центрируем заголовок */
}

.features-section .features-subtitle {
    font-size: 1rem !important;
    color: #64748b !important; /* Темно-серый цвет */
    text-align: center !important; /* Выравнивание по центру как подзаголовок */
    margin-bottom: 2.5rem !important; /* Отступ под подзаголовком перед карточками */
    line-height: 1.6 !important;
    font-weight: 400 !important;
    font-style: italic !important; /* Курсив для подзаголовка */
}

.feature-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 4rem !important;
    height: 4rem !important;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%) !important; /* Градиент от голубого к розовому */
    border-radius: 50% !important;
    margin-bottom: 1rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.feature-icon i {
    font-size: 1.5rem !important;
    color: #000000 !important; /* Черный цвет иконок */
}

/* Стили для карточек преимуществ на странице about */
.about-page .olymp-card {
    background: #ffffff !important; /* Белый фон карточек */
    border-radius: 12px !important; /* Скругление как на фото */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important; /* Легкая тень */
    text-align: center !important;
}

.about-page .olymp-card .olymp-card-title {
    color: #1e293b !important; /* Темно-синий/черный цвет заголовка */
    font-weight: 700 !important;
}

.about-page .olymp-card .olymp-card-text {
    color: #64748b !important; /* Темно-серый цвет описания */
}

.stat-number {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #FFF080 !important; /* Желтый цвет с фото */
    text-align: center !important;
    margin-bottom: 0.5rem !important;
    line-height: 1 !important;
}

.stat-label {
    font-size: 0.875rem !important;
    color: #000000 !important; /* Черный цвет */
    text-align: center !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

/* ===== ACTIONS PAGE STYLES - Updated with Gold and Black Theme ===== */
.olymp-actions-page {
    background-color: #ffffff !important;
    padding: 4rem 0 !important;
    min-height: 100vh !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.olymp-actions-page .olymp-actions-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.olymp-actions-page .olymp-actions-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #FFF080 !important; /* Желтый цвет с фото */
    margin-bottom: 1rem !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
}

.olymp-actions-page .olymp-actions-subtitle {
    font-size: 1.125rem !important;
    color: #6c757d !important; /* Светлый серый цвет как на первом фото */
    margin-bottom: 3rem !important;
    text-align: left !important; /* Выравнивание слева */
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-weight: 400 !important;
}

.olymp-actions-page .news-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 2rem !important;
}

/* ===== NEWS CARD STYLES (updated with gold and black theme) ===== */
.news-card {
    background: #ffffff !important;
    border-radius: 0.75rem !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
}

.news-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: #FFD700 !important;
}

.news-card-image {
    width: 100% !important;
    height: 240px !important;
    overflow: hidden !important;
}

.news-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05) !important;
}

.news-card-content {
    padding: 1.5rem !important;
}

.news-card-category {
    display: inline-block !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #FFF080 !important; /* Желтый цвет с фото */
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 0.75rem !important;
}

.news-card-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.4 !important;
}

.news-card-title a {
    color: #000000 !important; /* Черный цвет */
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.news-card-title a:hover {
    color: #FFD700 !important; /* Золотой при наведении */
}

.news-card-subtitle {
    font-size: 0.875rem !important;
    color: #374151 !important;
    margin-bottom: 1rem !important;
}

.news-card-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 1rem !important;
    padding-top: 1rem !important;
    border-top: 1px solid #e5e7eb !important;
}

.news-card-date {
    font-size: 0.875rem !important;
    color: #374151 !important;
}

.news-card-link {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #FFF080 !important; /* Желтый цвет с фото */
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.news-card-link:hover {
    color: #000000 !important; /* Черный при наведении */
    transform: translateX(4px) !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .olymp-actions-page .olymp-actions-container {
        padding: 0 1rem !important;
    }
    
    .olymp-actions-header {
        padding: 3rem 0 1.5rem !important; /* Увеличен верхний отступ на мобильных для видимого расстояния */
    }
    
    .olymp-actions-header .olymp-actions-title,
    .olymp-actions-page .olymp-actions-title {
        font-size: 2rem !important;
    }
    
    .olymp-actions-header .olymp-actions-subtitle,
    .olymp-actions-page .olymp-actions-subtitle {
        font-size: 1rem !important;
    }
    
    .olymp-actions-cards-section {
        padding: 2rem 0 2rem !important; /* Уменьшен нижний отступ на мобильных */
    }
    
    .olymp-actions-cards-section .news-grid,
    .olymp-actions-page .news-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .news-card-image {
        height: 200px !important;
    }
}

@media (max-width: 480px) {
    .olymp-actions-header .olymp-actions-title,
    .olymp-actions-page .olymp-actions-title {
        font-size: 1.75rem !important;
    }
    
    .news-card-content {
        padding: 1rem !important;
    }
    
    .news-card-title {
        font-size: 1.125rem !important;
    }
}
/* Footer Styles - Beautiful Design */
.site-footer {
    background: #474a51 !important; /* Темный графитовый фон */
    color: #ffffff !important; /* Белый текст для темного фона */
    margin-top: auto !important;
    position: relative !important;
    overflow: hidden !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important; /* Легкая граница сверху для разделения */
}

.site-footer::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, #FFD700, transparent) !important;
    opacity: 0.3 !important;
}

.footer-main {
    padding: 4rem 0 2rem !important;
    position: relative !important;
}

.footer-main::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 200px !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, #FFD700, transparent) !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 3rem !important;
    align-items: start !important;
}

/* Footer Brand */
.footer-brand .footer-logo {
    margin-bottom: 1.5rem !important;
}

.footer-brand .site-logo {
    text-decoration: none !important;
}

.footer-brand .logo-wrapper-footer {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-bottom: 0.5rem !important;
}

.footer-brand .logo-image-footer {
    height: 2.5rem !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.footer-brand .site-logo {
    color: inherit !important;
    display: inline-block !important;
}

.footer-brand .logo-text {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #FFD700 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.footer-brand .logo-icon {
    width: 24px !important;
    height: 24px !important;
    background: linear-gradient(45deg, #FFD700, #FFA500) !important;
    border-radius: 4px !important;
    position: relative !important;
}

.footer-brand .logo-icon::after {
    content: '⚡' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 12px !important;
    color: #1e293b !important;
}

.footer-brand .logo-tagline {
    font-size: 0.875rem !important;
    color: #cbd5e1 !important; /* Светло-серый для темного фона */
    margin: 0 !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
}

.footer-brand .footer-description {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: #cbd5e1 !important; /* Светло-серый для темного фона */
    margin: 0 !important;
}

/* Footer Contact */
.footer-contact .footer-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #FFD700 !important;
    margin-bottom: 1.5rem !important;
    position: relative !important;
}

.footer-contact .footer-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 0 !important;
    width: 40px !important;
    height: 2px !important;
    background: #FFD700 !important;
}

.footer-contact .contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    margin-bottom: 1rem !important;
    padding: 0.5rem 0 !important;
    transition: all 0.3s ease !important;
}

.footer-contact .contact-item:hover {
    transform: translateX(5px) !important;
}

.footer-contact .contact-item i {
    color: #FFD700 !important;
    font-size: 1rem !important;
    width: 16px !important;
    flex-shrink: 0 !important;
    margin-top: 0.125rem !important;
}

.footer-contact .contact-item a,
.footer-contact .contact-item span {
    color: #cbd5e1 !important; /* Светлый цвет для темного фона */
    text-decoration: none !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    transition: color 0.3s ease !important;
}

.footer-contact .contact-item a:hover,
.footer-contact .contact-item span:hover {
    color: #FFD700 !important;
}

/* Footer Social */
.footer-social .footer-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #FFD700 !important;
    margin-bottom: 1.5rem !important;
    position: relative !important;
}

.footer-social .footer-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 0 !important;
    width: 40px !important;
    height: 2px !important;
    background: #FFD700 !important;
}

.footer-social .social-links {
    display: flex !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
}

.footer-social .social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    background: rgba(255, 255, 255, 0.1) !important; /* Полупрозрачный белый фон для темного футера */
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important; /* Круглая форма */
    color: #ffffff !important; /* Белый цвет для темного фона */
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.footer-social .social-link:hover {
    background: #FFD700 !important;
    color: #1e293b !important;
    border-color: #FFD700 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3) !important;
}

.footer-social .social-link i {
    font-size: 1.25rem !important;
}

/* Footer Bottom */
.footer-bottom {
    background: #3a3d42 !important; /* Более темный оттенок для нижней части футера */
    padding: 1.5rem 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important; /* Граница для разделения */
}

.footer-bottom-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

.footer-copyright p {
    margin: 0 !important;
    font-size: 0.9rem !important;
    color: #cbd5e1 !important; /* Светло-серый для темного фона */
}

.footer-links {
    display: flex !important;
    gap: 2rem !important;
}

.footer-links a {
    color: #cbd5e1 !important; /* Светло-серый для темного фона */
    text-decoration: none !important;
    font-size: 0.9rem !important;
    transition: color 0.3s ease !important;
}

.footer-links a:hover {
    color: #FFD700 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }
    
    .footer-social {
        grid-column: 1 / -1 !important;
        margin-top: 1rem !important;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 1.5rem !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .footer-brand .logo-text {
        font-size: 1.75rem !important;
    }
    
    .footer-social .social-links {
        justify-content: center !important;
    }
    
    .footer-bottom-content {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .footer-links {
        gap: 1rem !important;
    }
}

/* Animation - убрана для белого фона */

/* ФИНАЛЬНОЕ ИСПРАВЛЕНИЕ: Заголовок АКЦИИ должен быть темно-серым и выровнен слева */
.olymp-actions-title {
    color: #212529 !important; /* Темно-серый/черный цвет как на первом фото */
    text-align: left !important; /* Выравнивание слева */
}

/* Modern Actions Styles Updated at Tue Oct 28 11:46:09 MSK 2025 */
/* Social Icons Updated at Tue Oct 28 14:03:15 MSK 2025 */
/* Social Icons Position Updated at Tue Oct 28 14:07:02 MSK 2025 */
/* Actions title color fixed at Tue Oct 28 14:30:00 MSK 2025 */
/* Beautiful Footer Added at Tue Oct 28 14:45:00 MSK 2025 */

/* ===== БЕЛЫЙ ФОН ТОЛЬКО ДЛЯ ГЛАВНОЙ СТРАНИЦЫ ===== */
/* Стили применяются только к главной странице */
html body.home #main.home-page,
html body.home main.home-page,
html body.home .site-main.home-page,
html body.home .home-page,
html body.front-page #main.home-page,
html body.front-page main.home-page,
html body.front-page .site-main.home-page,
html body.front-page .home-page {
    background-color: #ffffff !important;
    background: #ffffff !important;
}


/**
 * Apparatus Detail Page Styles
 */
.apparatus-detail-page .apparatus-detail-content-section {
    padding: 2.5rem 0 3rem;
}

.apparatus-detail-page .apparatus-detail-content-section .apparatus-detail {
    max-width: 1200px;
    margin: 0 auto;
}

.apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-main-image {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content {
    margin-bottom: 3rem;
}

.apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-work {
    margin-bottom: 2.5rem;
}

.apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-work .apparatus-detail-work-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem;
}

.apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-work .apparatus-detail-work-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    text-align: justify;
}

.apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-features {
    margin-top: 2.5rem;
}

.apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-features .apparatus-detail-features-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem;
}

.apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-features .apparatus-detail-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-features .apparatus-detail-features-list li {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    color: #475569;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 2.5rem;
}

.apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-features .apparatus-detail-features-list li:before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.25rem;
}

.apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-additional-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-additional-images .apparatus-detail-additional-image {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-additional-images .apparatus-detail-additional-image:hover {
    transform: translateY(-4px);
}

.apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-additional-images .apparatus-detail-additional-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .apparatus-detail-page .apparatus-detail-content-section {
        padding: 1.5rem 0 2rem;
    }
    
    .apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-main-image {
        margin-bottom: 2rem;
    }
    
    .apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content {
        margin-bottom: 2rem;
    }
    
    .apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-work {
        margin-bottom: 2rem;
    }
    
    .apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-work .apparatus-detail-work-title {
        font-size: 1.5rem;
    }
    
    .apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-work .apparatus-detail-work-text {
        font-size: 0.95rem;
    }
    
    .apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-features {
        margin-top: 2rem;
    }
    
    .apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-features .apparatus-detail-features-title {
        font-size: 1.5rem;
    }
    
    .apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-features .apparatus-detail-features-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-features .apparatus-detail-features-list li {
        padding: 0.875rem;
        padding-left: 2.25rem;
        font-size: 0.95rem;
    }
    
    .apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-additional-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-work .apparatus-detail-work-title {
        font-size: 1.25rem;
    }
    
    .apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-work .apparatus-detail-work-text {
        font-size: 0.9rem;
    }
    
    .apparatus-detail-page .apparatus-detail-content-section .apparatus-detail .apparatus-detail-content .apparatus-detail-features .apparatus-detail-features-title {
        font-size: 1.25rem;
    }
}

/**
 * Equipment Block Styles
 */
.equipment-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.equipment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.equipment-card {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.equipment-content {
    flex: 0 0 55%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.equipment-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffe866;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.equipment-separator {
    width: 60px;
    height: 2px;
    background-color: #ffe866;
    margin-bottom: 2rem;
}

.equipment-text-block {
    margin-bottom: 2rem;
}

.equipment-text {
    font-size: 1rem;
    line-height: 1.75;
    color: #474a51;
}

.equipment-content .btn {
    align-self: flex-start;
}

.equipment-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 968px) {
    .equipment-card {
        flex-direction: column-reverse;
    }
    
    .equipment-image {
        flex: 0 0 auto;
        height: 400px;
    }
    
    .equipment-content {
        flex: 0 0 auto;
        padding: 2rem;
    }
    
    .equipment-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .equipment-section {
        padding: 2rem 0;
    }
    
    .equipment-title {
        font-size: 1.75rem;
    }
    
    .equipment-content {
        padding: 1.5rem;
    }
    
    .equipment-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .equipment-image {
        height: 300px;
    }
    
    .equipment-title {
        font-size: 1.5rem;
    }
    
    .equipment-content {
        padding: 1rem;
    }
}

/**
 * Call to Action Block Styles
 */
.call-to-action-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cta-content:hover {
    border-color: #FFD700;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cta-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    padding: 1rem 3rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button:hover {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #FFD700;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .call-to-action-section {
        padding: 3rem 0;
    }
    
    .cta-content {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-text {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .call-to-action-section {
        padding: 2rem 0;
    }
    
    .cta-content {
        padding: 2rem 1.25rem;
    }
    
    .cta-text {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/**
 * Advantages Component Styles
 */
.advantages-section {
    padding: 4rem 0;
    background-color: #F5F5F5;
}

.advantages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.advantages-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FDD835;
    margin-bottom: 3rem;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.advantage-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212121;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    text-align: left;
}

.advantage-card-description {
    font-size: 1rem;
    font-weight: 400;
    color: #616161;
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 968px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 3rem 0;
    }
    
    .advantages-container {
        padding: 0 1.5rem;
    }
    
    .advantages-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
    }
    
    .advantage-card-title {
        font-size: 1.125rem;
    }
    
    .advantage-card-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .advantages-section {
        padding: 2rem 0;
    }
    
    .advantages-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .advantage-card {
        padding: 1.25rem;
    }
    
    .advantage-card-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .advantage-card-description {
        font-size: 0.9rem;
    }
}

/**
 * Gallery Slider Block Styles
 */
.gallery-slider-section {
    padding: 4rem 0;
    background-color: #ffffff;
    width: 100%;
    overflow: hidden;
}

.gallery-slider-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 500px;
    min-height: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: block;
}

.gallery-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, transform 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.05);
}

.gallery-slide:first-child,
.gallery-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.gallery-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
}

.gallery-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s ease-in-out;
}

.gallery-slide.active .gallery-slide-image {
    transform: scale(1);
}

.gallery-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #1e293b;
}

.gallery-slider-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-slider-prev {
    left: 1.5rem;
}

.gallery-slider-next {
    right: 1.5rem;
}

.gallery-slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.gallery-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-slider-dot.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.gallery-slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .gallery-slider {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .gallery-slider-section {
        padding: 3rem 0;
    }
    
    .gallery-slider {
        height: 400px;
        border-radius: 12px;
    }
    
    .gallery-slider-btn,
    .gallery-slider-prev,
    .gallery-slider-next {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .gallery-slider-section {
        padding: 2rem 0;
    }
    
    .gallery-slider {
        height: 350px;
    }
    
    .gallery-slider-dots {
        bottom: 1rem;
    }
    
    .gallery-slider-btn,
    .gallery-slider-prev,
    .gallery-slider-next {
        display: none !important;
    }
}

/**
 * Services Cards Section Title Styles
 */
.services-cards-section .services-section-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #FDD835 !important;
    text-align: center !important;
    margin-bottom: 3rem !important;
    margin-top: 0 !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
}

@media (max-width: 768px) {
    .services-cards-section .services-section-title {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 480px) {
    .services-cards-section .services-section-title {
        font-size: 1.75rem !important;
        margin-bottom: 1.5rem !important;
    }
}
