.wp-cookie-notification {
        position: fixed;
        bottom: 30px;
        right: 30px;
        left: 30px;
        background: #ffffff;
        padding: 25px 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        z-index: 999999; /* Высокий z-index */
        transform: translateY(100%) scale(0.95);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s ease;
        border-radius: 12px;
        max-width: 600px;
        margin: 0 auto;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        border: 1px solid #e8e8e8;
        pointer-events: auto;
    }
    
    .wp-cookie-notification.active {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    
    .wp-cookie-notification__container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    
    .wp-cookie-notification__text {
        flex: 1;
        min-width: 250px;
        color: #333333;
        font-size: 16px;
        line-height: 1.6;
    }
    
    .wp-cookie-notification__text p {
        margin: 0 0 8px 0;
    }
    
    .wp-cookie-notification__title {
        font-size: 18px;
        font-weight: 600;
        color: #174a90;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .wp-cookie-notification__link {
        color: #174a90;
        text-decoration: none;
        border-bottom: 1px solid rgba(23, 74, 144, 0.3);
        font-weight: 500;
        transition: all 0.2s ease;
    }
    
    .wp-cookie-notification__link:hover {
        border-bottom: 1px solid #174a90;
        color: #133d78;
    }
    
    .wp-cookie-notification__button {
        padding: 12px 32px;
        background: #174a90;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        box-shadow: 0 4px 15px rgba(23, 74, 144, 0.2);
        pointer-events: auto;
    }
    
    .wp-cookie-notification__button:hover {
        background: #133d78;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(23, 74, 144, 0.3);
    }
    
    .wp-cookie-notification__button:active {
        transform: translateY(0);
    }
    
    /* Адаптивность */
    @media (max-width: 768px) {
        .wp-cookie-notification {
            bottom: 20px;
            right: 20px;
            left: 20px;
            max-width: calc(100% - 40px);
            padding: 20px 25px;
        }
        
        .wp-cookie-notification__container {
            flex-direction: column;
            text-align: center;
            gap: 20px;
        }
        
        .wp-cookie-notification__text {
            min-width: auto;
            text-align: left;
        }
        
        .wp-cookie-notification__button {
            width: 100%;
            max-width: 250px;
        }
    }
    
    @media (max-width: 480px) {
        .wp-cookie-notification {
            bottom: 15px;
            right: 15px;
            left: 15px;
            max-width: calc(100% - 30px);
            padding: 18px 20px;
        }
        
        .wp-cookie-notification__text {
            font-size: 15px;
        }
        
        .wp-cookie-notification__title {
            font-size: 17px;
        }
        
        .wp-cookie-notification__button {
            font-size: 15px;
            padding: 11px 24px;
        }
    }
    
    @media (max-width: 360px) {
        .wp-cookie-notification {
            padding: 15px 18px;
        }
        
        .wp-cookie-notification__text {
            font-size: 14px;
        }
        
        .wp-cookie-notification__title {
            font-size: 16px;
        }
        
        .wp-cookie-notification__button {
            padding: 10px 20px;
        }
    }
    
    /* Анимация появления сообщения */
    @keyframes wpCookieMessageFade {
        0% { opacity: 0; transform: translateY(10px); }
        100% { opacity: 1; transform: translateY(0); }
    }
    
    .wp-cookie-message {
        position: fixed;
        top: 30px;
        right: 30px;
        background: #ed6f00;
        color: white;
        padding: 12px 24px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(237, 111, 0, 0.2);
        z-index: 999999;
        animation: wpCookieMessageFade 0.3s ease;
        font-size: 15px;
        font-weight: 500;
        pointer-events: none;
    }

    /* Секция качеств */
    .qualities-section {
        background: white;
        padding: 40px 0;
        width: 100%;
        box-sizing: border-box;
    }

    .qualities-container {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: stretch;
        gap: 15px;
        padding: 0 20px;
        max-width: 1320px;
        margin: 0 auto;
        flex-wrap: nowrap;
    }

    .quality-card {
        background: white;
        border-radius: 12px;
        padding: 20px 15px;
        width: 200px;
        min-height: 120px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        border: 2px solid #174a90;
        box-shadow: 0 0 0 1px rgba(23, 74, 144, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(20px);
        animation: qualityFadeIn 0.8s ease-out forwards, qualityGlow 2s infinite ease-in-out 0.8s;
        flex: 1 1 auto;
    }

    .quality-card:nth-child(1) { animation-delay: 0.1s, 0.9s; }
    .quality-card:nth-child(2) { animation-delay: 0.3s, 1.1s; }
    .quality-card:nth-child(3) { animation-delay: 0.5s, 1.3s; }

    .quality-arrow {
        font-size: 40px;
        color: #ED6F00;
        font-weight: 300;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        opacity: 0;
        animation: qualityArrowFadeIn 0.6s ease-out forwards;
        flex-shrink: 0;
        line-height: 1;
        align-self: center;
    }

    .quality-arrow:nth-of-type(1) { animation-delay: 0.2s; }
    .quality-arrow:nth-of-type(2) { animation-delay: 0.4s; }

    @keyframes qualityArrowFadeIn {
        0% { opacity: 0; transform: scale(0.5); }
        100% { opacity: 1; transform: scale(1); }
    }

    @keyframes qualityFadeIn {
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes qualityGlow {
        0% { box-shadow: 0 0 0 1px rgba(23, 74, 144, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05); }
        50% { box-shadow: 0 0 0 3px rgba(23, 74, 144, 0.5), 0 6px 18px rgba(0, 0, 0, 0.1); }
        100% { box-shadow: 0 0 0 1px rgba(23, 74, 144, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05); }
    }

    .quality-card:hover {
        transform: translateY(-5px) scale(1.02);
        border-color: #1a5bbf;
        animation: qualityFadeIn 0.8s ease-out forwards, none;
        box-shadow: 0 0 0 3px rgba(23, 74, 144, 0.8), 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .quality-title {
        font-size: 24px;
        color: #ED6F00;
        font-weight: 600;
        line-height: 1.3;
        margin: 0;
        padding: 0;
        animation: qualityTitleFadeIn 0.8s ease-out forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    .quality-icon {
        font-size: 40px;
        color: #174a90;
        margin-bottom: 15px;
        animation: qualityIconFadeIn 0.8s ease-out forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    .quality-card:nth-child(1) .quality-icon { animation-delay: 0.1s; }
    .quality-card:nth-child(2) .quality-icon { animation-delay: 0.3s; }
    .quality-card:nth-child(3) .quality-icon { animation-delay: 0.5s; }

    @keyframes qualityIconFadeIn {
        to { opacity: 1; transform: translateY(0); }
    }

    .quality-card:nth-child(1) .quality-title { animation-delay: 0.2s; }
    .quality-card:nth-child(2) .quality-title { animation-delay: 0.4s; }
    .quality-card:nth-child(3) .quality-title { animation-delay: 0.6s; }

    @keyframes qualityTitleFadeIn {
        to { opacity: 1; transform: translateY(0); }
    }

    .quality-card::before {
        content: '';
        position: absolute;
        width: 120px;
        height: 120px;
        background: radial-gradient(circle, rgba(237, 111, 0, 0.03) 0%, rgba(237, 111, 0, 0) 70%);
        border-radius: 50%;
        top: -30px;
        right: -30px;
        z-index: 0;
        animation: qualityFloat 6s infinite ease-in-out;
    }

    .quality-card::after {
        content: '';
        position: absolute;
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, rgba(23, 74, 144, 0.02) 0%, rgba(23, 74, 144, 0) 70%);
        border-radius: 50%;
        bottom: -20px;
        left: -20px;
        z-index: 0;
        animation: qualityFloat 8s infinite ease-in-out reverse;
    }

    @keyframes qualityFloat {
        0% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(10px, -10px) scale(1.05); }
        100% { transform: translate(0, 0) scale(1); }
    }

    @media (max-width: 1024px) {
        .qualities-container {
            flex-direction: column;
            flex-wrap: wrap;
            gap: 15px;
        }
        .quality-card {
            width: 280px;
        }
        .quality-arrow {
            transform: rotate(90deg);
            animation: qualityArrowFadeIn 0.6s ease-out forwards;
        }
        .quality-title {
            font-size: 22px;
        }
    }

    @media (max-width: 768px) {
        .qualities-section {
            padding: 30px 0;
        }
        .quality-card {
            width: 260px;
            min-height: 110px;
        }
        .quality-title {
            font-size: 20px;
        }
        .quality-icon {
            font-size: 36px;
        }
        .quality-arrow {
            font-size: 36px;
        }
    }

    @media (max-width: 480px) {
        .quality-card {
            width: 240px;
            min-height: 100px;
        }
        .quality-title {
            font-size: 18px;
        }
        .quality-icon {
            font-size: 32px;
        }
        .quality-arrow {
            font-size: 32px;
        }
    }

/* Секция качеств */
    .qualities-section {
        background: white;
        padding: 40px 0;
        width: 100%;
        box-sizing: border-box;
    }

    .qualities-container {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: stretch;
        gap: 15px;
        padding: 0 20px;
        max-width: 1320px;
        margin: 0 auto;
        flex-wrap: nowrap;
    }

    .quality-card {
        background: white;
        border-radius: 12px;
        padding: 20px 15px;
        width: 200px;
        min-height: 120px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        border: 2px solid #174a90;
        box-shadow: 0 0 0 1px rgba(23, 74, 144, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(20px);
        animation: qualityFadeIn 0.8s ease-out forwards, qualityGlow 2s infinite ease-in-out 0.8s;
        flex: 1 1 auto;
    }

    .quality-card:nth-child(1) { animation-delay: 0.1s, 0.9s; }
    .quality-card:nth-child(2) { animation-delay: 0.3s, 1.1s; }
    .quality-card:nth-child(3) { animation-delay: 0.5s, 1.3s; }

    .quality-arrow {
        font-size: 40px;
        color: #ED6F00;
        font-weight: 300;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        opacity: 0;
        animation: qualityArrowFadeIn 0.6s ease-out forwards;
        flex-shrink: 0;
        line-height: 1;
        align-self: center;
    }

    .quality-arrow:nth-of-type(1) { animation-delay: 0.2s; }
    .quality-arrow:nth-of-type(2) { animation-delay: 0.4s; }

    @keyframes qualityArrowFadeIn {
        0% { opacity: 0; transform: scale(0.5); }
        100% { opacity: 1; transform: scale(1); }
    }

    @keyframes qualityFadeIn {
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes qualityGlow {
        0% { box-shadow: 0 0 0 1px rgba(23, 74, 144, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05); }
        50% { box-shadow: 0 0 0 3px rgba(23, 74, 144, 0.5), 0 6px 18px rgba(0, 0, 0, 0.1); }
        100% { box-shadow: 0 0 0 1px rgba(23, 74, 144, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05); }
    }

    .quality-card:hover {
        transform: translateY(-5px) scale(1.02);
        border-color: #1a5bbf;
        animation: qualityFadeIn 0.8s ease-out forwards, none;
        box-shadow: 0 0 0 3px rgba(23, 74, 144, 0.8), 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .quality-title {
        font-size: 20px;
        color: #ED6F00;
        font-weight: 600;
        line-height: 1.3;
        margin: 0;
        padding: 0;
        animation: qualityTitleFadeIn 0.8s ease-out forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    .quality-icon {
        font-size: 40px;
        color: #174a90;
        margin-bottom: 15px;
        animation: qualityIconFadeIn 0.8s ease-out forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    .quality-card:nth-child(1) .quality-icon { animation-delay: 0.1s; }
    .quality-card:nth-child(2) .quality-icon { animation-delay: 0.3s; }
    .quality-card:nth-child(3) .quality-icon { animation-delay: 0.5s; }

    @keyframes qualityIconFadeIn {
        to { opacity: 1; transform: translateY(0); }
    }

    .quality-card:nth-child(1) .quality-title { animation-delay: 0.2s; }
    .quality-card:nth-child(2) .quality-title { animation-delay: 0.4s; }
    .quality-card:nth-child(3) .quality-title { animation-delay: 0.6s; }

    @keyframes qualityTitleFadeIn {
        to { opacity: 1; transform: translateY(0); }
    }

    .quality-card::before {
        content: '';
        position: absolute;
        width: 120px;
        height: 120px;
        background: radial-gradient(circle, rgba(237, 111, 0, 0.03) 0%, rgba(237, 111, 0, 0) 70%);
        border-radius: 50%;
        top: -30px;
        right: -30px;
        z-index: 0;
        animation: qualityFloat 6s infinite ease-in-out;
    }

    .quality-card::after {
        content: '';
        position: absolute;
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, rgba(23, 74, 144, 0.02) 0%, rgba(23, 74, 144, 0) 70%);
        border-radius: 50%;
        bottom: -20px;
        left: -20px;
        z-index: 0;
        animation: qualityFloat 8s infinite ease-in-out reverse;
    }

    @keyframes qualityFloat {
        0% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(10px, -10px) scale(1.05); }
        100% { transform: translate(0, 0) scale(1); }
    }

    @media (max-width: 1024px) {
        .qualities-container {
            flex-direction: column;
            flex-wrap: wrap;
            gap: 15px;
        }
        .quality-card {
            width: 280px;
        }
        .quality-arrow {
            transform: rotate(90deg);
            animation: qualityArrowFadeIn 0.6s ease-out forwards;
        }
        .quality-title {
            font-size: 22px;
        }
    }

    @media (max-width: 768px) {
        .qualities-section {
            padding: 30px 0;
        }
        .quality-card {
            width: 260px;
            min-height: 110px;
        }
        .quality-title {
            font-size: 20px;
        }
        .quality-icon {
            font-size: 36px;
        }
        .quality-arrow {
            font-size: 36px;
        }
    }

    @media (max-width: 480px) {
        .quality-card {
            width: 240px;
            min-height: 100px;
        }
        .quality-title {
            font-size: 18px;
        }
        .quality-icon {
            font-size: 32px;
        }
        .quality-arrow {
            font-size: 32px;
        }
    }

   
.benefits-section {
        
        background: white;
        padding: 40px 0px;
        max-width: 1320px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .benefits-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .benefit-card {
        background: white;
        border-radius: 12px;
        padding: 30px 25px;
        height: 220px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border: 1px solid #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .benefit-content {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .benefit-title {
        font-size: 22px;
        color: #174a90;
        font-weight: 600;
        line-height: 1.3;
        margin: 0;
        padding: 0;
    }

    /* Адаптивность */
    @media (max-width: 1024px) {
        .benefits-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .benefit-card {
            padding: 25px 20px;
            height: 200px;
        }
        
        .benefit-title {
            font-size: 20px;
        }
    }

    @media (max-width: 768px) {
        .benefits-section {
            padding: 30px 15px;
        }
        
        .benefits-container {
            grid-template-columns: 1fr;
            gap: 18px;
        }
        
        .benefit-card {
            padding: 22px 18px;
            height: 180px;
        }
        
        .benefit-title {
            font-size: 18px;
        }
    }

    @media (max-width: 480px) {
        .benefits-section {
            padding: 25px 10px;
        }
        
        .benefit-card {
            padding: 20px 15px;
            height: 160px;
        }
        
        .benefit-title {
            font-size: 16px;
        }
    }
/* ===== СТИЛИ СЛАЙДЕРА (без фона body) ===== */
  

    .slider-container {
        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
        border-radius: 3px;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(0, 20, 40, 0.25);
        background: #ffffff;
    }

    .swiper {
        width: 100%;
        height: auto;
    }

    .swiper-slide {
        background: #ffffff;
        padding: 0;
    }

    .slide-inner {
        display: flex;
        flex-direction: column;
    }

    /* Верхний блок с заголовком и фоном */
    .hero-block {
        background: linear-gradient(105deg, #0b2a5c 0%, #143b78 40%, #1d4b97 100%);
        padding: 50px 60px 40px 60px;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .hero-block::before {
        content: "🩺";
        position: absolute;
        bottom: -20px;
        right: 30px;
        font-size: 160px;
        opacity: 0.1;
        transform: rotate(10deg);
        pointer-events: none;
    }

    .hero-block::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 50%);
    }

    .mai-title {
        font-size: 30px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 16px;
        position: relative;
        z-index: 2;
        max-width: 800px;
    }

    .mai-title span {
        color: #ed6f00;
        display: block;
        font-size: 32px;
        font-weight: 600;
        margin-top: 10px;
        letter-spacing: -0.5px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .hero-text {
        font-size: 18px;
        line-height: 1.6;
        max-width: 700px;
        position: relative;
        z-index: 2;
        opacity: 0.95;
        margin-top: 10px;
    }

    /* Блок "Мы предлагаем" */
    .offer-section {
        padding: 40px 60px 20px 60px;
        background: #f9fcff;
    }

    .section-label {
        font-size: 28px;
        font-weight: 700;
        color: #0b2a5c;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .section-label::after {
        content: "";
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, #ed6f00, transparent);
        max-width: 200px;
    }

    .offer-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 30px;
        list-style: none;
padding-left: 0px;
    }

    .offer-list li {
        font-size: 20px;
        color: #1e2f4a;
        display: flex;
        align-items: center;
        gap: 12px;
        background: white;
        padding: 16px 22px;
        border-radius: 3px;
        box-shadow: 0 6px 16px rgba(0, 30, 60, 0.06);
        border: 1px solid rgba(23, 74, 144, 0.1);
        transition: all 0.25s ease;
    }

    .offer-list li:hover {
        transform: translateY(-3px);
        border-color: #ed6f00;
        box-shadow: 0 15px 25px -8px rgba(237, 111, 0, 0.2);
    }

    /* Галочка (двойная) */
    .check-double {
        width: 30px;
        height: 30px;
        background: #174a90;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 3px;
        color: white;
        font-weight: bold;
        font-size: 15px;
        flex-shrink: 0;
        box-shadow: 0 5px 10px rgba(23,74,144,0.25);
    }
    .check-double::after {
        content: "✓✓";
        letter-spacing: 1px;
    }

    /* Блок с акцией — ЦВЕТНОЙ ФОН */
    .price-promo-block {
        background: linear-gradient(115deg, #f65f15, #ff8c42);
        margin: 0 60px 30px 60px;
        border-radius: 3px;
        padding: 30px 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
        box-shadow: 0 20px 30px -8px rgba(237, 111, 0, 0.4);
        border: 2px solid rgba(255,255,255,0.25);
        backdrop-filter: blur(4px);
        color: white;
    }

    .price-left {
        display: flex;
        align-items: baseline;
        gap: 18px;
        flex-wrap: wrap;
    }

    .price-old {
        font-size: 26px;
        color: rgba(255,255,255,0.8);
        text-decoration: line-through;
    }

    .price-new {
        font-size: 48px;
        font-weight: 800;
        color: white;
        letter-spacing: -1px;
        line-height: 1;
    }

    .price-note {
        background: rgba(255,255,255,0.2);
        padding: 8px 22px;
        border-radius: 3px;
        font-size: 22px;
        font-weight: 600;
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255,255,255,0.3);
    }

    /* Блок "Вы получите" */
    .benefit-section {
        padding: 40px 60px 20px 60px;
    }

    .benefits-title {
        font-size: 28px;
        font-weight: 700;
        color: #0b2a5c;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .benefits-title::after {
        content: "";
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, #ed6f00, transparent);
        max-width: 200px;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 30px;
    }

    .benefit-item {
        font-size: 20px;
        color: #1e2f4a;
        display: flex;
        align-items: center;
        gap: 14px;
        background: #f5f9ff;
        padding: 18px 24px;
        border-radius: 3px;
        border-left: 5px solid #ed6f00;
        box-shadow: 0 6px 14px rgba(0,0,0,0.02);
        transition: all 0.25s ease;
    }

    .benefit-item:hover {
        background: white;
        box-shadow: 0 15px 25px -10px rgba(23,74,144,0.15);
        border-left-width: 8px;
    }

    /* Финальная акция + кнопка */
    .footer-block {
        background: #f0f5fe;
        padding: 35px 60px 45px 60px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        border-top: 1px solid rgba(23,74,144,0.1);
    }

    .deadline {
        font-size: 26px;
        font-weight: 700;
        color: #0b2a5c;
        background: rgba(237, 111, 0, 0.12);
        padding: 15px 30px;
        border-radius: 3px;
        display: inline-block;
        border: 1px dashed #ed6f00;
        box-shadow: 0 8px 18px rgba(237,111,0,0.08);
    }

    .button-wrapper {
        flex-shrink: 0;
    }

    .popm-2801 {
        background: #174a90;
        border: none;
        color: white;
        font-size: 22px;
        font-weight: 700;
        padding: 18px 50px;
        border-radius: 3px;
        cursor: pointer;
        transition: all 0.25s ease;
        box-shadow: 0 15px 25px -5px rgba(23,74,144,0.3);
        border: 2px solid transparent;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .popm-2801:hover {
        background: #1f5bbf;
        transform: translateY(-3px);
        box-shadow: 0 25px 35px -8px #174a90;
    }
    .popm-2801:active {
        transform: translateY(0);
        box-shadow: 0 10px 20px -5px #174a90;
    }

    /* Адаптивность */
    @media (max-width: 900px) {
        .hero-block { padding: 40px 30px; }
        .offer-section { padding: 30px 30px 15px; }
        .price-promo-block { margin: 0 30px 20px; flex-direction: column; align-items: flex-start; }
        .benefit-section { padding: 10px 30px 20px; }
        .footer-block { padding: 30px; }
        .offer-list { grid-template-columns: 1fr; }
        .benefits-grid { grid-template-columns: 1fr; }
        .mai-title { font-size: 28px; }
        .mai-title span { font-size: 26px; }
    }

    @media (max-width: 600px) {
        .hero-block { padding: 30px 20px; }
        .mai-title { font-size: 24px; }
        .mai-title span { font-size: 22px; }
        .hero-text { font-size: 16px; }
        .offer-list li { font-size: 18px; padding: 14px 18px; }
        .price-new { font-size: 38px; }
        .price-note { font-size: 18px; padding: 6px 16px; }
        .benefit-item { font-size: 18px; padding: 14px 18px; }
        .deadline { font-size: 20px; padding: 12px 20px; }
        .popm-2801 { font-size: 20px; padding: 15px 30px; width: 100%; text-align: center; white-space: normal; }
        .footer-block { flex-direction: column; align-items: stretch; }
    }

    /* Стрелки, пагинация */
    .swiper-pagination-bullet {
        background: #b0c6dd;
        opacity: 0.7;
        width: 10px;
        height: 10px;
        border-radius: 3px;
        transition: 0.2s;
    }
    .swiper-pagination-bullet-active {
        background: #ed6f00;
        width: 26px;
        opacity: 1;
    }
    .swiper-button-prev,
    .swiper-button-next {
        color: #174a90;
        background: rgba(255,255,255,0.8);
        width: 46px;
        height: 46px;
        border-radius: 3px;
        backdrop-filter: blur(4px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        background: white;
        color: #ed6f00;
    }

.doctors-carousel-wrapper {
        background: white;
        padding: 40px 0;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        -webkit-user-select: none;
        user-select: none;
        position: relative;
    }

    .doctors-carousel-container {
        position: relative;
        overflow: hidden;
        width: 100%;
        margin: 0 auto;
    }

    .doctors-carousel {
        display: flex;
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        gap: 20px;
        padding: 10px 10px;
        will-change: transform;
    }

    .doctor-card {
        width: 320px;
        flex: 0 0 auto;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        border: 1px solid #eaeaea;
        height: 600px;
    }

    .doctor-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    }

    .doctor-img-container {
        width: 100%;
        height: 250px;
        flex-shrink: 0;
        overflow: hidden;
    }

    .doctor-img {
        width: 100%;
        object-fit: cover;
    }

    .doctor-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        justify-content: space-between;
    }

    .doctor-info {
        flex-grow: 1;
        margin-bottom: 15px;
    }

    .doctor-name {
        font-size: 22px;
        color: #174a90;
        margin-bottom: 8px;
        font-weight: 600;
        line-height: 1.2;
    }

    .doctor-specialty {
        font-size: 20px;
        color: #ed6f00;
        margin-bottom: 10px;
        font-weight: 500;
        line-height: 1.2;
    }

    .doctor-description {
        color: #174a90;
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .doctor-price {
        font-size: 20px;
        color: #174a90;
        font-weight: bold;
        margin-bottom: 15px;
    }

    /* Новый стиль для категории врача */
    .doctor-category {
        font-size: 16px;
        color: #ed6f00;
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-enroll-ilina,
    .btn-enroll-vinogradova,
    .btn-enroll-karmyzova,
    .btn-enroll-kumratova,
    .btn-enroll-nikolaev,
    .btn-enroll-avdeeva,
    .btn-enroll-klinova {
        display: inline-block;
        background: #ed6f00;
        color: white;
        text-decoration: none;
        padding: 12px 15px;
        border-radius: 6px;
        font-weight: 600;
        text-align: center;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 18px;
        width: 100%;
    }

    .btn-enroll-ilina:hover,
    .btn-enroll-vinogradova:hover,
    .btn-enroll-karmyzova:hover,
    .btn-enroll-kumratova:hover,
    .btn-enroll-nikolaev:hover,
    .btn-enroll-avdeeva:hover,
    .btn-enroll-klinova:hover {
        background: #e06500;
        transform: scale(1.02);
    }

    /* Боковые стрелки */
    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        background: white;
        border: none;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #174a90;
        z-index: 10;
        transition: all 0.3s ease;
        opacity: 0.9;
    }

    .carousel-arrow:hover {
        background: #174a90;
        color: white;
        transform: translateY(-50%) scale(1.1);
        opacity: 1;
        box-shadow: 0 6px 16px rgba(23, 74, 144, 0.3);
    }

    .carousel-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        transform: translateY(-50%);
    }

    .carousel-arrow:disabled:hover {
        background: white;
        color: #174a90;
        transform: translateY(-50%);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .carousel-arrow-left {
        left: 0px;
    }

    .carousel-arrow-right {
        right: 0px;
    }

    .doctors-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
        padding: 0 10px;
    }

    .doctors-dots {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 200px;
    }

    .doctors-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #bdc3c7;
        cursor: pointer;
        transition: background 0.3s ease;
        flex-shrink: 0;
    }

    .doctors-dot.active {
        background: #174a90;
    }

    .doctors-counter {
        color: #174a90;
        font-weight: 600;
        font-size: 16px;
        min-width: 60px;
        text-align: center;
        flex-shrink: 0;
    }

    /* Градиенты по бокам для скрытия обрезанных слайдов */
    .carousel-gradient {
        position: absolute;
        top: 0;
        width: 100px;
        height: 100%;
        z-index: 5;
        pointer-events: none;
    }

    .carousel-gradient-left {
        left: 0;
        background: linear-gradient(to right, white, transparent);
    }

    .carousel-gradient-right {
        right: 0;
        background: linear-gradient(to left, white, transparent);
    }

    /* Адаптивность для мобильной версии */
    @media (max-width: 768px) {
        .doctors-carousel-wrapper {
            padding: 20px 0;
        }
        
        .doctors-carousel {
            padding: 10px 20px;
            gap: 15px;
        }
        
        .doctor-card {
            width: 85vw;
            max-width: 300px;
            height: auto;
            min-height: 500px;
        }
        
        .doctor-img-container {
            height: 220px;
        }
        
        .doctor-name {
            font-size: 18px;
            margin-bottom: 6px;
        }
        
        .doctor-specialty {
            font-size: 16px;
            margin-bottom: 8px;
        }
        
        .doctor-description {
            font-size: 14px;
            margin-bottom: 12px;
        }
        
        .doctor-price {
            font-size: 18px;
            margin-bottom: 12px;
        }
        
        .doctor-category {
            font-size: 14px;
            margin-bottom: 8px;
        }
        
        .btn-enroll-ilina,
        .btn-enroll-vinogradova,
        .btn-enroll-karmyzova,
        .btn-enroll-kumratova,
        .btn-enroll-nikolaev,
        .btn-enroll-avdeeva,
        .btn-enroll-klinova {
            font-size: 16px;
            padding: 10px 12px;
        }
        
        .carousel-arrow {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }
        
        .carousel-arrow-left {
            left: 5px;
        }
        
        .carousel-arrow-right {
            right: 5px;
        }
        
        .carousel-gradient {
            width: 60px;
        }
    }

    @media (max-width: 480px) {
        .doctor-card {
            max-width: 280px;
            min-height: 480px;
        }
        
        .doctors-carousel {
            padding: 10px 15px;
            gap: 12px;
        }
        
        .doctor-img-container {
            height: 200px;
        }
        
        .doctor-name {
            font-size: 16px;
        }
        
        .doctor-specialty {
            font-size: 14px;
        }
        
        .doctor-description {
            font-size: 13px;
        }
        
        .doctor-price {
            font-size: 16px;
        }
        
        .doctor-category {
            font-size: 12px;
        }
        
        .btn-enroll-ilina,
        .btn-enroll-vinogradova,
        .btn-enroll-karmyzova,
        .btn-enroll-kumratova,
        .btn-enroll-nikolaev,
        .btn-enroll-avdeeva,
        .btn-enroll-klinova {
            font-size: 15px;
            padding: 8px 10px;
        }
        
        .carousel-arrow {
            width: 36px;
            height: 36px;
            font-size: 18px;
        }
        
        .carousel-gradient {
            width: 40px;
        }
    }

    @media (max-width: 360px) {
        .carousel-arrow {
            display: none; /* На очень маленьких экранах скрываем стрелки */
        }
        
        .carousel-gradient {
            display: none;
        }
        
        .doctors-carousel {
            padding: 10px;
        }
    }



/* ===== НОВЫЙ АДАПТИВНЫЙ ФУТЕР ===== */

.new-footer {
    background: transparent;
    position: relative;
    overflow: hidden;
    font-family: 'system-ui', -apple-system, 'Open Sans', sans-serif;
}

/* Контейнер */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Основная часть футера */
.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

/* Сетка колонок */
.footer-main .footer-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* Стили колонок */
.footer-col {
    transition: transform 0.3s ease;
}

.footer-col:hover {
    transform: translateY(-5px);
}

/* Логотип - оригинальные цвета */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.02);
}

/* Описание */
.footer-desc {
    color: white;
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Социальные иконки - как в родной версии */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #ed6f00;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(237, 111, 0, 0.3);
}

/* Заголовки колонок */
.footer-title {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ed6f00;
    border-radius: 2px;
}

/* Меню футера */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 22px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-menu a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ed6f00;
    transition: width 0.3s ease;
}

.footer-menu a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-menu a:hover::before {
    width: 100%;
}

/* Контакты */
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 22px;
    line-height: 1.5;
}

.contact-item i {
    color: #ed6f00;
    font-size: 22px;
    margin-top: 2px;
    min-width: 24px;
}

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

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 22px;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-item a:hover {
    color: #ed6f00;
}

.contact-item span {
    font-size: 22px;
    line-height: 1.4;
}

/* Бейдж лицензии - без бордера */
.footer-badge {
    margin-top: 25px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-badge i {
    color: #ed6f00;
    font-size: 20px;
}

/* Нижняя часть футера */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

.copyright {
    margin-top: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== АДАПТИВНОСТЬ ===== */

/* Планшеты (992px - 1200px) */
@media (max-width: 1200px) {
    .footer-main .footer-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .footer-col-about {
        grid-column: span 1;
    }
    
    .footer-col-docs {
        grid-column: span 1;
    }
    
    .footer-desc,
    .footer-menu a,
    .contact-item,
    .contact-item span,
    .contact-item a,
    .footer-title {
        font-size: 20px;
    }
    
    .contact-item i {
        font-size: 20px;
    }
    
    .footer-badge {
        font-size: 16px;
    }
}

/* Планшеты (768px - 992px) - выравнивание по левому краю */
@media (max-width: 992px) {
    .footer-container {
        padding: 0 25px;
    }
    
    .footer-main {
        padding: 50px 0 30px;
    }
    
    .footer-main .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    /* Выравнивание по левому краю */
    .footer-col {
        text-align: left;
    }
    
    .footer-title::after {
        left: 0;
        transform: none;
        width: 50px;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-menu a {
        display: inline-block;
    }
    
    .contact-item {
        justify-content: flex-start;
    }
    
    .footer-badge {
        justify-content: flex-start;
        text-align: left;
    }
    
    .footer-logo img {
        max-width: 160px;
    }
    
    .footer-desc,
    .footer-menu a,
    .contact-item,
    .contact-item span,
    .contact-item a,
    .footer-title {
        font-size: 18px;
    }
    
    .contact-item i {
        font-size: 18px;
    }
    
    .footer-badge {
        font-size: 15px;
    }
}

/* Мобильные телефоны (576px - 768px) - выравнивание по левому краю */
@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-main {
        padding: 40px 0 25px;
    }
    
    .footer-main .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    /* Выравнивание по левому краю */
    .footer-col {
        text-align: left;
        max-width: 100%;
        margin: 0;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
    
    .footer-desc {
        font-size: 17px;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .footer-title {
        font-size: 20px;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .footer-title::after {
        left: 0;
        transform: none;
        width: 60px;
    }
    
    .footer-menu li {
        margin-bottom: 10px;
    }
    
    .footer-menu a {
        font-size: 17px;
        display: inline-block;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .contact-item {
        justify-content: flex-start;
        font-size: 17px;
    }
    
    .contact-item i {
        font-size: 17px;
    }
    
    .contact-item span,
    .contact-item a {
        font-size: 17px;
    }
    
    .footer-badge {
        font-size: 14px;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        justify-content: flex-start;
        text-align: left;
    }
    
    .footer-bottom {
        padding: 20px 0;
        text-align: left;
    }
    
    .footer-bottom p {
        font-size: 11px;
        text-align: left;
    }
    
    .copyright {
        text-align: left;
    }
}

/* Маленькие телефоны (320px - 576px) - выравнивание по левому краю */
@media (max-width: 576px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-main {
        padding: 35px 0 20px;
    }
    
    .footer-main .footer-container {
        gap: 30px;
    }
    
    .footer-logo img {
        max-width: 130px;
    }
    
    .footer-desc {
        font-size: 16px;
        max-width: 100%;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 18px;
        text-align: left;
    }
    
    .footer-title::after {
        width: 50px;
        height: 2px;
        left: 0;
        transform: none;
    }
    
    .footer-menu li {
        margin-bottom: 8px;
    }
    
    .footer-menu a {
        font-size: 16px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .contact-item {
        font-size: 16px;
        gap: 10px;
        justify-content: flex-start;
        text-align: left;
        flex-wrap: wrap;
    }
    
    .contact-item i {
        font-size: 16px;
    }
    
    .contact-item span,
    .contact-item a {
        font-size: 16px;
    }
    
    .footer-badge {
        font-size: 13px;
        padding: 10px 0;
        justify-content: flex-start;
    }
    
    .footer-badge i {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 15px 0;
        text-align: left;
    }
    
    .footer-bottom p {
        font-size: 10px;
        text-align: left;
    }
    
    .copyright {
        text-align: left;
    }
}

/* Очень маленькие телефоны (до 375px) - выравнивание по левому краю */
@media (max-width: 375px) {
    .footer-container {
        padding: 0 12px;
    }
    
    .footer-main {
        padding: 30px 0 15px;
    }
    
    .footer-logo img {
        max-width: 110px;
    }
    
    .footer-desc {
        font-size: 15px;
    }
    
    .footer-title {
        font-size: 17px;
        text-align: left;
    }
    
    .footer-menu a {
        font-size: 15px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .contact-item {
        font-size: 15px;
    }
    
    .contact-item i {
        font-size: 15px;
    }
    
    .contact-item span,
    .contact-item a {
        font-size: 15px;
    }
    
    .footer-badge {
        font-size: 12px;
    }
    
    .footer-bottom p {
        font-size: 9px;
    }
}

/* Планшеты в альбомной ориентации - выравнивание по левому краю */
@media (min-width: 769px) and (max-width: 992px) {
    .footer-col-about {
        grid-column: span 2;
    }
    
    .footer-desc {
        max-width: 80%;
    }
    
    /* Выравнивание по левому краю для всех колонок */
    .footer-col {
        text-align: left;
    }
    
    .footer-title::after {
        left: 0;
        transform: none;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .contact-item {
        justify-content: flex-start;
    }
    
    .footer-badge {
        justify-content: flex-start;
        text-align: left;
    }
}

/* Анимация появления */
@keyframes footerSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new-footer {
    animation: footerSlideUp 0.6s ease-out;
}

/* Эффекты при наведении на колонки */
.footer-col {
    transition: transform 0.3s ease;
}

@media (min-width: 993px) {
    .footer-col:hover {
        transform: translateY(-5px);
    }
}

/* Разделитель между колонками на десктопе */
@media (min-width: 993px) {
    .footer-col:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 30px;
    }
}

/* Стили для скролла на мобильных */
@media (max-width: 768px) {
    .new-footer {
        overflow-x: hidden;
    }
}
.nm a{
	color: var(--wp--preset--color--theme-4);
    font-size: 22px;
    line-height: 45px;
}
.giVdoI{
	background-color: #174a90 !important;
}
.price_nav {
           width:100%;
             display: flex;
             
             align-items: center;
             background: transparent;
            
         }
.review-lab{
	width:100% !important;
}
         .price-block {
             
             width: 100%;
             background: transparent;
             padding: 0px 0;
         }
 
         .price-block__header {
             font-size: 1.5rem;
             font-weight: 600;
             margin-bottom: 24px;
             color: #174a90;
             border-bottom: 2px solid #ed6f00;
             padding-bottom: 8px;
         }
 
         .services-list {
             list-style: none;
 padding-left: 4px;
         }
 
         .services-list__item {
             display: flex;
             align-items: center;
             justify-content: space-between;
             padding: 14px 0px;
             border-bottom: 1px solid #e0e6ed;
             transition: background-color 0.2s;
         }
 
         .services-list__item:hover {
             background-color: transparent;
         }
 
         .service-info {
             display: flex;
             align-items: baseline;
             flex-wrap: wrap;
             gap: 8px 20px;
             flex: 1;
         }
 
         .service-name {
             font-size: 20px;
             font-weight: 450;
             color: #174a90;
         }
 
         .service-price {
             font-size: 20px;
             font-weight: 600;
             color: #174a90;
             background: transparent;
             padding: 4px 0px;
             border-radius: 0;
             white-space: nowrap;
         }
 
         .appoint-btn {
             background-color: #ed6f00;
             color: white;
             border: none;
             border-radius: 3px;
             padding: 8px 22px;
             font-size: 20px;
            
             cursor: pointer;
             transition: none;
             box-shadow: 0 4px 10px rgba(237, 111, 0, 0.25);
             letter-spacing: 0.3px;
             white-space: nowrap;
             margin-left: 16px;
             min-width: 130px;
         }
 
         .appoint-btn:hover {
             background-color: #ed6f00;
             transform: none;
             box-shadow: 0 4px 10px rgba(237, 111, 0, 0.25);
         }
 
         .appoint-btn:active {
             transform: none;
         }
 .swiper-pagination-bullet {
            background: #c0cfdf;
            opacity: 0.7;
        }
        .swiper-pagination-bullet-active {
            background: #ed6f00 !important;
        }
        .swiper-button-prev, .swiper-button-next {
            color: #174a90;
            background: rgba(255,255,255,0.7);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            backdrop-filter: blur(4px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .swiper-button-prev:after, .swiper-button-next:after {
            font-size: 20px;
            font-weight: bold;
        }
        .swiper-button-prev:hover, .swiper-button-next:hover {
            background: white;
            color: #ed6f00;
        }
 .slider-container {
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .swiper {
            width: 100%;
            height: auto;
            background-color: #ffffff;
        }

        .swiper-slide {
            display: flex;
            align-items: stretch;
            background: white;
            padding: 40px 60px;
            min-height: 600px;
        }

        /* Левая колонка */
        .slide-left {
            flex: 1.2;
            padding-right: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Правая колонка */
        .slide-right {
            flex: 0.9;
            background: #f9fcff;
            border-radius: 28px;
            padding: 36px 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: inset 0 2px 8px rgba(23,74,144,0.04), 0 8px 18px rgba(0,0,0,0.03);
        }

        /* Заголовок 40px */
        .main-title {
            font-size: 40px;
            font-weight: 800;
            line-height: 1.2;
            color: #174a90;
            margin-bottom: 24px;
            max-width: 700px;
        }

        .main-title span {
            color: #ed6f00;
            display: block;
            font-size: 0.9em;
            margin-top: 8px;
        }

        .lead-text {
            font-size: 20px;
            line-height: 1.5;
            color: #2e3d5e;
            margin-bottom: 32px;
            font-weight: 400;
            max-width: 600px;
        }

        /* Список с двойными галочками */
        .offer-list {
            list-style: none;
            margin-bottom: 32px;
        }

        .offer-list li {
            font-size: 20px;
            color: #1f2b40;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .check-double {
            width: 28px;
            height: 28px;
            background-color: #174a90;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: white;
            font-weight: bold;
            font-size: 16px;
            flex-shrink: 0;
            box-shadow: 0 4px 8px rgba(23,74,144,0.3);
        }
        .check-double::after {
            content: "✓✓";
            transform: scale(1);
            letter-spacing: 1px;
        }

        /* Блок стоимости — без обводок */
        .price-block {
            margin-top: 6px;
            margin-bottom: 16px;
        }
        .price-old {
            font-size: 22px;
            color: #4b5c7a;
            text-decoration: line-through;
            margin-right: 16px;
        }
        .price-new {
            font-size: 32px;
            font-weight: 800;
            color: #174a90;
            letter-spacing: -0.5px;
        }
        .price-note {
            font-size: 18px;
            color: #ed6f00;
            font-weight: 600;
            margin-left: 12px;
        }

        /* Правый блок: заголовок */
        .right-title {
            font-size: 28px;
            font-weight: 700;
            color: #174a90;
            margin-bottom: 20px;
        }

        .benefits-list {
            list-style: none;
            margin-bottom: 36px;
        }

        .benefits-list li {
            font-size: 20px;
            color: #1f2b40;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* Текст о скидке — увеличен и без иконки */
        .deadline {
            font-size: 28px;
            font-weight: 700;
            color: #ed6f00;
            margin: 24px 0 20px;
            line-height: 1.3;
        }

        /* Кнопка: 20px, border-radius 3px */
        .popm-2801 {
            background-color: #ed6f00;
            border: none;
            color: white;
            font-size: 20px;
            font-weight: 700;
            padding: 16px 28px;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 8px 18px rgba(237,111,0,0.25);
            width: fit-content;
            min-width: 220px;
            text-align: center;
            letter-spacing: 0.3px;
            margin-top: 10px;
            border: 2px solid transparent;
        }

        .popm-2801:hover {
            background-color: #d45d00;
            transform: translateY(-2px);
            box-shadow: 0 12px 22px rgba(237,111,0,0.3);
        }
        .popm-2801:active {
            transform: translateY(0);
            box-shadow: 0 5px 12px rgba(237,111,0,0.4);
        }

 

/* Для специалистов первый блок*/

.benefits-section {
        background: white;
        padding: 40px 0;          /* только вертикальные отступы */
        width: 100%;               /* на всю ширину */
        box-sizing: border-box;
    }

    .benefits-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding: 0 20px;           /* горизонтальные отступы, чтобы контент не прилипал к краям */
        max-width: 100%;            /* занимает всю доступную ширину */
        box-sizing: border-box;
    }

    .benefit-card {
        background: white;
        border-radius: 12px;
        padding: 30px 25px;
        height: 220px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border: 1px solid #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .benefit-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        z-index: 2;
    }

    .stat-number {
        font-size: 56px;
        font-weight: 700;
        color: #ED6F00;
        line-height: 1.1;
        margin-bottom: 10px;
        animation: fadeInUp 0.8s ease-out forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    .benefit-title {
        font-size: 22px;
        color: #174a90;
        font-weight: 600;
        line-height: 1.3;
        margin: 0;
        padding: 0;
        animation: fadeInUp 0.8s ease-out forwards;
        animation-delay: 0.2s;
        opacity: 0;
        transform: translateY(20px);
    }

    /* Задержки для цифр */
    .benefit-card:nth-child(1) .stat-number { animation-delay: 0.1s; }
    .benefit-card:nth-child(2) .stat-number { animation-delay: 0.3s; }
    .benefit-card:nth-child(3) .stat-number { animation-delay: 0.5s; }

    /* Задержки для подписей */
    .benefit-card:nth-child(1) .benefit-title { animation-delay: 0.2s; }
    .benefit-card:nth-child(2) .benefit-title { animation-delay: 0.4s; }
    .benefit-card:nth-child(3) .benefit-title { animation-delay: 0.6s; }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Декоративные плавающие круги */
    .benefit-card::before {
        content: '';
        position: absolute;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(237, 111, 0, 0.03) 0%, rgba(237, 111, 0, 0) 70%);
        border-radius: 50%;
        top: -30px;
        right: -30px;
        z-index: 1;
        animation: float 6s infinite ease-in-out;
    }

    .benefit-card::after {
        content: '';
        position: absolute;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(237, 111, 0, 0.02) 0%, rgba(237, 111, 0, 0) 70%);
        border-radius: 50%;
        bottom: -20px;
        left: -20px;
        z-index: 1;
        animation: float 8s infinite ease-in-out reverse;
    }

    @keyframes float {
        0% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(10px, -10px) scale(1.05); }
        100% { transform: translate(0, 0) scale(1); }
    }

    /* Для специалистов второй блок*/
    .problems-section {
        background: white;
        padding: 40px 0;
        width: 100%;
        box-sizing: border-box;
    }

    .problems-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding: 0 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Карточка-ссылка */
    .problems-link {
        text-decoration: none;
        display: block;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .problems-card {
			height:100% ;
        background: white;
        border-radius: 12px;
        padding: 30px 25px;
        min-height: 200px;
   
        border: 2px solid #174a90; 
        box-shadow: 0 0 0 1px rgba(23, 74, 144, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05); 
        
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease, border-color 0.3s ease;
        position: relative;
        overflow: hidden;
        text-align: center;

        /* Анимация появления самой карточки */
        opacity: 0;
        transform: translateY(20px);
        animation: cardFadeIn 0.8s ease-out forwards;

        /* Анимация пульсации обвода */
        animation: cardFadeIn 0.8s ease-out forwards, glowPulse 2s infinite ease-in-out 0.8s;
    }

    /* Индивидуальные задержки появления карточек */
    .problems-link:nth-child(1) .problems-card { animation-delay: 0.1s, 0.9s; }
    .problems-link:nth-child(2) .problems-card { animation-delay: 0.2s, 1.0s; }
    .problems-link:nth-child(3) .problems-card { animation-delay: 0.3s, 1.1s; }
    .problems-link:nth-child(4) .problems-card { animation-delay: 0.4s, 1.2s; }
    .problems-link:nth-child(5) .problems-card { animation-delay: 0.5s, 1.3s; }
    .problems-link:nth-child(6) .problems-card { animation-delay: 0.6s, 1.4s; }

    /* Ключевые кадры для появления карточки */
    @keyframes cardFadeIn {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Ключевые кадры для пульсации обвода */
    @keyframes glowPulse {
        0% {
            box-shadow: 0 0 0 1px rgba(23, 74, 144, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05); /* Изменено на синий */
        }
        50% {
            box-shadow: 0 0 0 3px rgba(23, 74, 144, 0.5), 0 6px 18px rgba(0, 0, 0, 0.1); /* Изменено на синий */
        }
        100% {
            box-shadow: 0 0 0 1px rgba(23, 74, 144, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05); /* Изменено на синий */
        }
    }

    /* Эффект при наведении */
    .problems-link:hover .problems-card {
        transform: translateY(-5px);
        border-color: #1a5bbf; /* Более светлый синий для ховера */
        animation: cardFadeIn 0.8s ease-out forwards, none;
        box-shadow: 0 0 0 3px rgba(23, 74, 144, 0.8), 0 8px 20px rgba(0, 0, 0, 0.08); 
    }

    .problems-content {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        z-index: 2;
    }

    .problems-title {
        font-size: 22px;
        color: #ED6F00; 
        font-weight: 600;
        line-height: 1.4;
        margin: 0;
        padding: 0;
        animation: fadeInUp 0.8s ease-out forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    /* Задержки анимации для текста */
    .problems-link:nth-child(1) .problems-title { animation-delay: 0.1s; }
    .problems-link:nth-child(2) .problems-title { animation-delay: 0.2s; }
    .problems-link:nth-child(3) .problems-title { animation-delay: 0.3s; }
    .problems-link:nth-child(4) .problems-title { animation-delay: 0.4s; }
    .problems-link:nth-child(5) .problems-title { animation-delay: 0.5s; }
    .problems-link:nth-child(6) .problems-title { animation-delay: 0.6s; }

    /* Анимация текста */
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Декоративные плавающие круги */
    .problems-card::before {
        content: '';
        position: absolute;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(237, 111, 0, 0.03) 0%, rgba(237, 111, 0, 0) 70%);
        border-radius: 50%;
        top: -30px;
        right: -30px;
        z-index: 1;
        animation: float 6s infinite ease-in-out;
    }

    .problems-card::after {
        content: '';
        position: absolute;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(23, 74, 144, 0.02) 0%, rgba(23, 74, 144, 0) 70%); 
        border-radius: 50%;
        bottom: -20px;
        left: -20px;
        z-index: 1;
        animation: float 8s infinite ease-in-out reverse;
    }

    @keyframes float {
        0% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(10px, -10px) scale(1.05); }
        100% { transform: translate(0, 0) scale(1); }
    }

    /* Секция этапов лечения */
    .treatment-stages-section {
        background: white;
        padding: 40px 0;
        width: 100%;
        box-sizing: border-box;
    }

    .treatment-stages-container {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: stretch; /* Изменено с center на stretch для одинаковой высоты */
        gap: 15px;
        padding: 0 0px;
        max-width: 1320px;
        margin: 0 auto;
        flex-wrap: nowrap;
    }

    .treatment-stage-card {
        background: white;
        border-radius: 12px;
        padding: 20px 15px;
        width: 200px;
        min-height: 120px;
        height: auto; /* Автовысота */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        border: 2px solid #174a90;
        box-shadow: 0 0 0 1px rgba(23, 74, 144, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(20px);
        animation: treatmentStageFadeIn 0.8s ease-out forwards, treatmentStageGlow 2s infinite ease-in-out 0.8s;
        flex: 1 1 auto; /* Добавлено для равномерного распределения */
    }

    .treatment-stage-card:nth-child(1) { animation-delay: 0.1s, 0.9s; }
    .treatment-stage-card:nth-child(2) { animation-delay: 0.3s, 1.1s; }
    .treatment-stage-card:nth-child(3) { animation-delay: 0.5s, 1.3s; }
    .treatment-stage-card:nth-child(4) { animation-delay: 0.7s, 1.5s; }

    .treatment-stage-arrow {
        font-size: 40px;
        color: #ED6F00;
        font-weight: 300;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        opacity: 0;
        animation: treatmentArrowFadeIn 0.6s ease-out forwards;
        flex-shrink: 0;
        line-height: 1;
        align-self: center; /* Добавлено для вертикального центрирования стрелок */
    }

    .treatment-stage-arrow:nth-of-type(1) { animation-delay: 0.2s; }
    .treatment-stage-arrow:nth-of-type(2) { animation-delay: 0.4s; }
    .treatment-stage-arrow:nth-of-type(3) { animation-delay: 0.6s; }

    @keyframes treatmentArrowFadeIn {
        0% { opacity: 0; transform: scale(0.5); }
        100% { opacity: 1; transform: scale(1); }
    }

    @keyframes treatmentStageFadeIn {
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes treatmentStageGlow {
        0% { box-shadow: 0 0 0 1px rgba(23, 74, 144, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05); }
        50% { box-shadow: 0 0 0 3px rgba(23, 74, 144, 0.5), 0 6px 18px rgba(0, 0, 0, 0.1); }
        100% { box-shadow: 0 0 0 1px rgba(23, 74, 144, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05); }
    }

    .treatment-stage-card:hover {
        transform: translateY(-5px) scale(1.02);
        border-color: #1a5bbf;
        animation: treatmentStageFadeIn 0.8s ease-out forwards, none;
        box-shadow: 0 0 0 3px rgba(23, 74, 144, 0.8), 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .treatment-stage-title {
        font-size: 20px;
        color: #ED6F00;
        font-weight: 600;
        line-height: 1.3;
        margin: 0;
        padding: 0;
        animation: treatmentTitleFadeIn 0.8s ease-out forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    .treatment-stage-icon {
        font-size: 32px;
        color: #174a90;
        margin-bottom: 10px;
        animation: treatmentIconFadeIn 0.8s ease-out forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    .treatment-stage-card:nth-child(1) .treatment-stage-icon { animation-delay: 0.1s; }
    .treatment-stage-card:nth-child(2) .treatment-stage-icon { animation-delay: 0.3s; }
    .treatment-stage-card:nth-child(3) .treatment-stage-icon { animation-delay: 0.5s; }
    .treatment-stage-card:nth-child(4) .treatment-stage-icon { animation-delay: 0.7s; }

    @keyframes treatmentIconFadeIn {
        to { opacity: 1; transform: translateY(0); }
    }

    .treatment-stage-card:nth-child(1) .treatment-stage-title { animation-delay: 0.2s; }
    .treatment-stage-card:nth-child(2) .treatment-stage-title { animation-delay: 0.4s; }
    .treatment-stage-card:nth-child(3) .treatment-stage-title { animation-delay: 0.6s; }
    .treatment-stage-card:nth-child(4) .treatment-stage-title { animation-delay: 0.8s; }

    @keyframes treatmentTitleFadeIn {
        to { opacity: 1; transform: translateY(0); }
    }

    .treatment-stage-card::before {
        content: '';
        position: absolute;
        width: 120px;
        height: 120px;
        background: radial-gradient(circle, rgba(237, 111, 0, 0.03) 0%, rgba(237, 111, 0, 0) 70%);
        border-radius: 50%;
        top: -30px;
        right: -30px;
        z-index: 0;
        animation: treatmentFloat 6s infinite ease-in-out;
    }

    .treatment-stage-card::after {
        content: '';
        position: absolute;
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, rgba(23, 74, 144, 0.02) 0%, rgba(23, 74, 144, 0) 70%);
        border-radius: 50%;
        bottom: -20px;
        left: -20px;
        z-index: 0;
        animation: treatmentFloat 8s infinite ease-in-out reverse;
    }

    @keyframes treatmentFloat {
        0% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(10px, -10px) scale(1.05); }
        100% { transform: translate(0, 0) scale(1); }
    }

.wpcf7-form-control.wpcf7-submit.has-spinner{
	margin-top:20px;
}

   .approach-section {
        background: white;
        padding: 40px 0;
        width: 100%;
        box-sizing: border-box;
    }

    .approach-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        padding: 0 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .approach-link {
        text-decoration: none;
        display: block;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .approach-card {
        background: white;
        border-radius: 12px;
        padding: 30px 25px;
        min-height: 200px;  /* минимальная высота, фактическая выровняется по самой высокой карточке в строке */
        height: 100%;        /* растягивается по высоте строки */
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #174a90;
        box-shadow: 0 0 0 1px rgba(23, 74, 144, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.8s ease, transform 0.8s ease;
        position: relative;
        overflow: hidden;
        text-align: center;

        /* Исходное состояние скрыто */
        opacity: 0;
        transform: translateY(20px);
    }

    /* Видимое состояние — добавляется скриптом при прокрутке */
    .approach-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Эффект при наведении */
    .approach-link:hover .approach-card {
        transform: translateY(-5px);
        border-color: #1e5bbf;
        box-shadow: 0 0 0 3px rgba(23, 74, 144, 0.8), 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .approach-content {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        z-index: 2;
    }

    .approach-title {
        font-size: 22px;
        color: #ED6F00;
        font-weight: 600;
        line-height: 1.4;
        margin: 0;
        padding: 0;
    }

    /* Декоративные круги (синие) — плавают независимо */
    .approach-card::before {
        content: '';
        position: absolute;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(23, 74, 144, 0.03) 0%, rgba(23, 74, 144, 0) 70%);
        border-radius: 50%;
        top: -30px;
        right: -30px;
        z-index: 1;
        animation: approachFloat 6s infinite ease-in-out;
    }

    .approach-card::after {
        content: '';
        position: absolute;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(23, 74, 144, 0.02) 0%, rgba(23, 74, 144, 0) 70%);
        border-radius: 50%;
        bottom: -20px;
        left: -20px;
        z-index: 1;
        animation: approachFloat 8s infinite ease-in-out reverse;
    }

    @keyframes approachFloat {
        0% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(10px, -10px) scale(1.05); }
        100% { transform: translate(0, 0) scale(1); }
    }
.wp-block-gutenverse-section.guten-element.guten-section.guten-lMdf7U.layout-boxed.align-stretch{
	background: white !important;
}
.guten-Hff1P1 > .guten-background-overlay{
	background-image: unset !important;
}
.guten-Hff1P1:not(.background-animated), .guten-Hff1P1.background-animated > .guten-background-animated .animated-layer{
	background: white !important;
}
.yoast-breadcrumbs span a, .yoast-breadcrumbs span{
	color: #174a90;
	
}
.map{
	color: white;
    font-size: 22px;
    margin-top: 40px;
    text-decoration: underline;
}
.wp-block-gutenverse-section.guten-element.guten-section.guten-lMdf7U.layout-boxed.align-stretch{
	background:#fff5d9;
}
.zagolovok{
	font-size: 34px;
    color: #174a90;
    font-weight: 500;
    margin-bottom: 20px;
}

.soglasie{
	font-size: 14px!important;
	font-weight: 400 !important;
}
input, textarea{
    padding: 12px 15px;
    margin: 3px;
    font-size: 18px;
    color: #174a90;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: #174a90;
    box-shadow: 0 0 5px rgba(23, 74, 144, 0.3);
}

input:not(:placeholder-shown),textarea:not(:placeholder-shown) {
    border-color: #4a90e2;
    background-color: #f8fbff;
}


/* Стили для кнопки телефонной трубки с иконкой */
.phone-button {
  position: fixed !important;
  bottom: 30px;
  right: 30px;
  width: 90px;
  height: 90px;
  background-color: #ed6f00;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(216, 82, 6, 0.4);
  z-index: 1000;
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

.phone-button:hover {
  background-color: #bf4805;
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(216, 82, 6, 0.5);
}

.phone-button:active {
  transform: scale(0.98);
}

/* Иконка телефонной трубки - белая и зеркально отраженная */
.phone-button i {
  color: white;
  font-size: 45px;
  transform: scaleX(-1); /* Горизонтальное отражение (зеркально) */
}

/* Альтернатива: трубка развернутая на 90 градусов */
.phone-button-rotated i {
  color: white;
  font-size: 45px;
  transform: rotate(-90deg); /* Поворот на 90 градусов против часовой стрелки */
}

/* Более сильный разворот (180 градусов) */
.phone-button-reverse i {
  color: white;
  font-size: 45px;
  transform: rotate(180deg); /* Полный разворот на 180 градусов */
}

/* Вариант с комбинированным трансформом (зеркально + поворот) */
.phone-button-mirror i {
  color: white;
  font-size: 45px;
  transform: scaleX(-1) rotate(30deg); /* Зеркально + небольшой поворот */
}

/* Анимация пульсации */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 82, 6, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(216, 82, 6, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(216, 82, 6, 0);
  }
}

/* Анимация легкого покачивания трубки при наведении */
.phone-button:hover i {
  animation: wiggle 0.5s ease;
}

@keyframes wiggle {
  0%, 100% { transform: scaleX(-1) rotate(0deg); }
  25% { transform: scaleX(-1) rotate(-10deg); }
  75% { transform: scaleX(-1) rotate(10deg); }
}

/* Адаптивность */



h3.title, h2, h3, p, h4.title, h5, .icon-box-description, h1, p{
	font-family: 'system-ui' !important;


	   
}

h1 strong{

}

ul li {
	 overflow-wrap: anywhere;
	hyphens: auto;
}

.text_und{
	    text-decoration: underline;
	text-underline-position: under;
	text-decoration-color: #d85206;
	text-decoration-thickness: 4px;
}
.releted_post_content h4 {
	color: #174a90 !important;
}
.text_und .title:hover{
transition: all 2s linear !important;
	transform: translateY(-10px);
}

form{
	width:400px;
}
.akcia{
	z-index:88888;
}
input[type="checkbox" i]
{color: #ed6f00;
    outline-offset: unset;
    outline-style: auto;
    transform: scale(1.7);
    margin-right: 10px;
}
.forrr{
	font-size: 16px !important;
	color: #d85206 !important ;
    line-height: 20px !important;
    margin-bottom: 20px !important;
}
.colorr{
	color:#81027e !important;
}
.new{
	    color: #81027e;
    text-shadow: 1px 1px 10px #ffffff;
    font-size: 34px;
	font-weight: 700 !important;
}
.guten-nav-menu .gutenverse-menu-wrapper .gutenverse-menu li, .guten-nav-menu .gutenverse-menu-wrapper .gutenverse-menu>ul li{
	white-space: nowrap !important;
}
.s a span{
	font-size: 28px !important;
}

#guten-tExGWM .gutenverse-menu-wrapper .gutenverse-menu {
    justify-content: center !important;
    flex-wrap: wrap !important;
}
.nowrap{
	white-space: nowrap;
}
#rev_slider_5_1_wrapper .hebe.tp-rightarrow .tp-arr-imgholder {
    right: auto;
    left: -90px;
	display: none !important;}
.fg .guten-icon-box-wrapper.hover-from-left{
	height: auto !important;
}
.guten-element.guten-dh9Dsa {
    padding-top: 100px;
    padding-bottom: 0px !important;
}
p {
	
}
.guten-SWv0Se .guten-button{
	width: 300px !important;
}
.fonts_zap{
	color: #174a90;
}
.blog_tab_section ul{
	flex-wrap:wrap;
}
.fancy { 
   display:none;
}
.related_post_list_wrapper .single_releted_post, .blog-inner .single-post{
	flex: 0 0 30% !important;
	box-shadow: 1px 1px 10px #ed6f00;
}
#pcp_wrapper-830 .pcp-readmore-link{
	text-transform: capitalize !important;
	background: #d85206 !important;
}

label{
	font-size: 24px;
    color: #ed6f00;
    font-weight: 600;
}
.wpcf7-form-control.wpcf7-submit.has-spinner{
font-size: 20px;
    background: #ed6f00;
    color: white;
    padding: 5px;
    border-radius: 5px;
    border: unset;
    padding-left: 20px;
    border-radius: 5px;
    padding-right: 20px;
    font-family: system-ui;}
.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required{
border: 1px solid #d85713;
    height: 35px;
    /* border: red; */
    border-radius: 5px;
    box-shadow: 1px 1px 10px #d85206;
    width: 100%;
}
.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required{
	border: 1px solid #d85713;
   
    /* border: red; */
    border-radius: 5px;
    box-shadow: 1px 1px 10px #d85206;
    width: 100%;
}
.menu-item a {
	font-size:24px !important;
	
	font-weight:700 !important;
}
.guten-5EMljY{
	width: unset !important;
}
.guten-element.guten-cj8C7b{
	margin-left:0px !important;
	margin-right: 0px !important;
	
}

.category_tab_wrapper ul li {
    padding: 8px 30px;
    background: rgba(30, 120, 190, 0.4);
    border-radius: 20px;
    margin: 0;
    cursor: pointer;
    line-height: 1.4;
    transition: all 0.3s ease;
    text-align: center;
}
.guten-33CSBr{
	width: 20% !important;
}

.guten-ouVfJ2{
	    width: 25% !important;
}
.guten-dh9Dsa.layout-boxed > .guten-container{
	max-width: unset !important;
}
.guten-cj8C7b.layout-boxed > .guten-container{
	max-width: 1900px !important;
}
.QkwJZ0{
	align-items:center !important;
}
#slider-5-slide-7-layer-6, #slider-5-slide-11-layer-6 {
	font-family: 'system-ui' !important;
	font-weight:700 !important;
	background:#ffffff8c !important;
	padding-left: 10px !important;
}

#slider-5-slide-7-layer-7, #slider-5-slide-11-layer-2 {
	font-family: 'system-ui' !important;
	font-weight:600 !important;
	background:#ffffff8c !important;
	padding-left: 10px !important;
}
#slider-5-slide-7-layer-8, #slider-5-slide-11-layer-8 {
	font-family: 'system-ui' !important;
	font-weight:600 !important;
	background:#ffffff8c !important;
}
#pcp_wrapper-830 .pcp-readmore-link{
	background:#FF5722 !important;
	color:white !important;
	font-size:18px;
	border:unset !important;
	
}


.img img{
	border-radius: 20px;
    box-shadow: 1px 1px 10px #a39f9c;
}
.mark2, .mark {
	margin-left: -40px !important;
	margin-top:-15px !important;
}
.mark3 {
	margin-left: -40px !important;
	width: 100%;
}

h2.sp-pcp-title a{
	color:#174a90 !important;
}
.kont{
	margin-left: -13px !important;
}

.mainweight{
	font-weight:700 !important;
	
}
.podweight{
	font-weight:600 !important;
}
#slider-3-slide-4-layer-1{
	padding: 10px;
    border-radius: 50px;
    font-weight: 700 !important;
    backdrop-filter: blur(8px) !important;
}
.weight{
	font-weight:600 !important;
}

.bf_thumb_box_1 {
    padding: inherit;
    background-color: #ffffff !important;
    border: 1px solid;
    border-color: rgba(213, 216, 221);
}
#7{
	display:none !important;
}
.blog_tab_section .category_tab_wrapper h4 {
    font-size: 20px;
    line-height: 1;
    text-transform: capitalize;
    font-weight: 400 !important;
    display: none;
}

/* .blog_tab_section{
	display:flex;
}
.category_tab_bar {
    margin-top: 25px !important;
    /* padding-top: 20px; */
/*     width: 50% !important;
} */ 

.blog_tab_section .load-more {
    text-align: center;
    margin-top: 40px;
    display: none;
}

.category_tab_wrapper ul li {
    padding: 8px 30px;
    background: rgba(30, 120, 190, 0.4);
    border-radius: 20px;
    margin: 0;
    cursor: pointer;
    line-height: 1.4;
    transition: all 0.3s ease;
    font-size: 20px !important;
    color: #174a90;
}

/* .blog_tab_section ul {
    display: flex
;
    list-style: none;
    padding: 0;
    align-items: center;
    margin: 20px 0 37px 0;
    gap: 20px !important;
    flex-direction: column;
} */


.releted_post_image, .blog-inner .single-post .blog-bg {
    position: relative;
    padding-top: 100% !important;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.bf_title_1 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 25px !important;
    color: #174a90;
    font-weight: bold;
    text-align: center;
}
.related_post_list_wrapper .single_releted_post, .blog-inner .single-post {
     max-width: unset !important; 
    flex: 0 0 25%;
    margin: 0 12px 24px;
    background: #FFFFFF;
    border-radius: 15px;
}
.snip0047 {
    background-color: #ea5317 !important;
    font-size: 20px;
}

.bf_read_more_div_1 {
    text-align: right;
    margin: 20px 0px 5px 0px;
    justify-content: center;
    display: flex
;
}
.guten-element.guten-86cUsM{
display:none;
}
.uslug{
	box-shadow: 1px 1px 15px #174a90;
    border-radius: 10px;
}
.guten-lwSu3K.guten-element.guten-post-featured-image{
	display:none !important;
}
.swiper-button-next, .swiper-button-prev{
	margin-left: -20px !important;
	margin-right: -20px !important;
}
.guten-QIZvYc .icon-box.icon-box-body .title, .guten-TXuwnj .icon-box.icon-box-body .title {
	font-weight: 800 !important;
}

 span.s{
	color: #265697 !important;
}

.size2.rab .gtn.gtn-Document-Search-light.icon-style-color{
	font-size: 70px !important;
    font-weight: 800 !important;
}

.size2 .icon-box-header .icon i{
	color: rgb(38 86 151) !important;
}
.guten-button.guten-button-sm span{
	font-size:16px ;
}

.guten-button.guten-button-lg {
	font-size:20px !important;
}
.miss ul{

}
.about h3{
	font-size: 23px !important;
}

.miss .icon-box.icon-box-body {
	font-weight:500 !important;
	font-size: 24px  !important;
}
.icon-box.icon-box-body{
	font-weight:800 !important;
}
.guten-dfGqeZ .icon-box.icon-box-body .title{
	font-weight:800 !important;
}
.guten-ZRdudb > .guten-background-overlay, .guten-JW9r6g > .guten-background-overlay{
	background-image:unset !important;
}

.guten-icon-box.icon-position-left .guten-icon-box-wrapper{

}
.guten-button-wrapper .guten-button{
	margin-top:20px;
}
.size1 .guten-icon-box-wrapper.hover-from-left {

	
}

.size2 .guten-icon-box-wrapper.hover-from-left {
	height: 350px !important;
	background: #FFC107;
	padding-top: 20px !important;
	padding-left: 20px !important;
	padding-right: 20px !important;
}
.size1{

}
.size5 .guten-icon-box-wrapper.hover-from-left {
/* 	height: 200px !important; */
}

.size5 .guten-yDtTlu .icon-box.icon-box-body h4.title{
	font-size: 24px !important;
}
.guten-icon-box-wrapper.hover-from-left {
/* 	height: 200px !important; */
}

.guten-5gkslS .icon-box.icon-box-body .title{
		font-family: 'system-ui' !important;
}

.size1 p{
	font-size:20px !important;
}
.size2 p{
	font-size:20px !important;
	font-weight: 600 !important;
}

.size3 p{
	font-size:20px !important;
}
.size2 p{
font-size: 24px;
    color: #174a90;
}
h4.title{
	font-size: 30px !important;
}

.text_plash {
	font-family: 'system-ui' !important;
	font-size: 22px !important;
	font-weight:600;
	
	
}
.guten-element.guten-gI2Uhl{
	padding-bottom:0px !important;
}
.text_plash p {
    font-family: 'system-ui' !important;
    font-size: 22px !important;
    font-weight: 600;
		
}
 .feature-list-title{
	display:none;
}
.fonts{
	margin-bottom:0px !important;
	font-size:24px !important;
}

#kVRBfu section.guten-section.align-stretch>.guten-container{
	align-items:center !important;
}

.mark li {padding-left: 55px;
	padding-top:10px;
	background: url("https://detskiyvrach21vek.ru/wp-content/uploads/2026/03/double-check-2-e1773046087846.png") no-repeat left center; list-style-type: none; margin-top:10px;}

.mark2 li {padding-left: 55px;
	padding-top:10px;
	background: url("https://detskiyvrach21vek.ru/wp-content/uploads/2026/03/double-check-2-e1773046087846.png") no-repeat left center; list-style-type: none; margin-top:10px;
font-weight: 600;}
.mark3 li {padding-left: 55px;
	padding-top:10px;
	background: url("https://detskiyvrach21vek.ru/wp-content/uploads/2026/03/double-check-2-e1773046087846.png") no-repeat left center; list-style-type: none; margin-top:10px;
font-weight: 600;}


  @media (max-width: 1024px) {
		.fatal2, .fatal, .mobile_tel {
			display:none;
		}
		.soc_mobile{
			width:100% !important;
		}
		h1 {
			font-size: 35px !important;
		}
		.title_nov2{
			font-size: 30px !important;
		}
            .swiper-slide {
                flex-direction: column;
                padding: 32px 28px;
                min-height: auto;
            }
            .slide-left {
                padding-right: 0;
                margin-bottom: 32px;
            }
            .main-title {
                font-size: 36px;
            }
            .slide-right {
                width: 100%;
            }
        
        .benefits-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            padding: 0 15px;        /* чуть уменьшаем боковые отступы */
        }
        
        .benefit-card {
            padding: 25px 20px;
            height: 200px;
        }
        
        .stat-number {
            font-size: 48px;
        }
        
        .benefit-title {
            font-size: 20px;
        }
		 .problems-container {
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            padding: 0 15px;
        }
        
        .problems-card {
            padding: 25px 20px;
            min-height: 180px;
        }
        
        .problems-title {
            font-size: 20px;
        }
		 .treatment-stages-container {
            flex-direction: column;
            flex-wrap: wrap;
            gap: 15px;
        }
        .treatment-stage-card {
            width: 280px;
        }
        .treatment-stage-arrow {
            transform: rotate(90deg);
            animation: treatmentArrowFadeIn 0.6s ease-out forwards;
        }
		   .approach-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            padding: 0 15px;
        }
        .approach-card {
            padding: 25px 20px;
            min-height: 180px;
        }
        .approach-title {
            font-size: 20px;
        }
    }

    @media (max-width: 768px) {
			.guten-V5hwL2 .guten-postblock .guten-post{
				margin-left:0px !important;
				margin-top:0px !important;
			}
			.guten-testimonials.style-2 .profile-image img{
				display:none;
			}
			
			.guten-JDJXCO .guten-testimonial-item .profile-image{
				display:none !important;
			}
       .phone-button {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
	.mob{
		margin-top:45px;
	}
	.treatment-stage-arrow{
		display:none;
	}
	    .treatment-stages-container, .qualities-container {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center !important;
        align-items: center !important;
    }
  .phone-button i,
  .phone-button-rotated i,
  .phone-button-reverse i,
  .phone-button-mirror i {
    font-size: 28px;
  }
			.benefits-section {
            padding: 30px 0;
        }
        
        .benefits-container {
            grid-template-columns: 1fr !important;
            gap: 18px;
            padding: 0 12px;
        }
        
        .benefit-card {
            padding: 22px 18px;
            height: 180px;
        }
        
        .stat-number {
            font-size: 42px;
        }
        
        .benefit-title {
            font-size: 18px;
        }
  .phone-button,
  .phone-button-svg {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
  
  .phone-button::before {
    width: 28px;
    height: 46px;
  }
  
  .phone-button-svg svg {
    width: 28px;
    height: 28px;
  }
			   .problems-section {
            padding: 30px 0;
        }
        
        .problems-container {
            grid-template-columns: 1fr !important;
            gap: 18px;
            padding: 0 12px;
        }
        
        .problems-card {
            padding: 22px 18px;
            min-height: 160px;
        }
        
        .problems-title {
            font-size: 18px;
        }
			  .treatment-stages-section {
            padding: 30px 0;
        }
        .treatment-stage-card {
            width: 260px;
            min-height: 110px;
        }
        .treatment-stage-title {
            font-size: 19px;
        }
        .treatment-stage-arrow {
            font-size: 36px;
        }
			   .approach-section {
            padding: 30px 0;
        }
        .approach-container {
            grid-template-columns: 1fr;
            gap: 18px;
            padding: 0 12px;
        }
        .approach-card {
            padding: 22px 18px;
            min-height: 160px;
        }
        .approach-title {
            font-size: 18px;
        }
}
@media (max-width: 676px){
	 
            .swiper-slide {
                padding: 24px 18px;
            }
            .main-title {
                font-size: 32px;
            }
            .lead-text, .offer-list li, .benefits-list li {
                font-size: 18px;
            }
            .price-new {
                font-size: 26px;
            }
            .popmake-2801 {
                font-size: 20px;
                padding: 14px 20px;
                width: 100%;
            }
            .check-double {
                width: 24px;
                height: 24px;
                font-size: 14px;
            }
            .deadline {
                font-size: 22px;
            }
        

	.price_nav {
		padding: 0px !important;
	}
             .services-list__item {
                 flex-wrap: wrap;
                 gap: 12px;
                 
             }
             
             .service-info {
                 width: 100%;
                 justify-content: space-between;
             }
             
             .appoint-btn {
                 width: 100%;
                 margin-left: 0;
                 text-align: center;
                 padding: 12px;
                 min-width: unset;
             }
             
             .service-name {
                 font-size: 20px;
             }
             
             .service-price {
                 font-size: 20px;
                 padding: 3px 0px;
             }
 
             .price-block__header {
                 font-size: 1.3rem;
             }
         
	.mobile_menu .guten-column-wrapper{

	}
	.guten-image .guten-image-wrapper, .guten-image.select-image {
    display: flex;
    justify-content: start !important;
}
	.mobile_menu .guten-column-wrapper{
		justify-content: flex-start !important;
	}
	 #guten-tExGWM{
        width: initial !important;
    }
	#guten-tExGWM{

		display:flex !important;
		justify-content: flex-start !important;
		margin-left: 20px !important;
	}
	.title_nov{
		font-size: 35px !important;
	}
	.title_nov2{
		font-size: 30px !important;
	}
	.mobile_fixed {
		position:fixed !important;
		top:0;
	}
	.fatal2	.guten-I79pGA .guten-icon-wrapper{
		padding: 9px !important;
	}
	.logo_mobile{
	width:60% !important;
}
	.soc_mobile .guten-column-wrapper .guten-element.guten-social-icons.guten-kexhoY.rounded.horizontal.fill{
		flex-wrap:nowrap !important;
	}
	.soc_mobile p{
		display:none !important;
	}
	.logo_mobile figure{
		margin-bottom: 0px !important;
	}
	.mobile_soc{
		display:none;
	}
	.mobile_block .guten-container.guten-column-gap-default{
		flex-wrap: nowrap !important;
		align-items:center !important;
		padding: 0px !important;
	}
	.fatal{
		display:none;
	}
	.yoast-breadcrumbs{
		display:none;
	}
	.mobile_tel{
		display:none;
	}
	.guten-element {
		padding-left:0px !important;
		padding-right: 0px !important;
	}
	.guten-column-wrapper{
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
	img{
	
	}
	.guten-8wcn4g > .sticky-wrapper > .guten-column-wrapper, .guten-8wcn4g > .guten-column-wrapper{
		margin-left:5px !important;
	}
	.related_post_list_wrapper .single_releted_post, .blog-inner .single-post 
	{
		flex: 0 0 100% !important;
	}
	.guten-element.guten-OxgXYv{
		margin-left:10px !important;
	}
	.guten-pN98sB > .sticky-wrapper > .guten-column-wrapper, .guten-pN98sB > .guten-column-wrapper{
			margin-left:10px !important;
	}
	.guten-element.guten-iQ9tVK{
		margin-left:5px !important;
		padding-top: 0px !important;
		padding-bottom: 0px !important;
		
	}
	    .guten-zVB0ez img {
        width: 201px;
        height: auto !important;
    }
	h3.guten-element.guten-grJYg6{
		text-align:left !important;
	}
	.guten-icon-list-item .list-text{
		padding-left: 6px !important;
	}
.guten-EDRY70 .guten-icon-list-item .list-text, .guten-2pbx1Y .guten-icon-list-item .list-text, .guten-EDRY70 .guten-icon-list-item .list-text, .guten-tBaIau .guten-icon-list-item .list-text, .guten-YBXlWf .guten-icon-list-item .list-text, .guten-PBi7fl .guten-icon-list-item .list-text, .guten-gCwX5l .guten-icon-list-item .list-text{
		font-size: 15px !important;
	}
	.guten-dJMlM5 > .sticky-wrapper > .guten-column-wrapper, .guten-dJMlM5 > .guten-column-wrapper{
		margin-top: 0px !important;
	}
	.has-text-align-left.has-theme-3-color.has-text-color.has-link-color.wp-elements-bb4bcd2ce6852e651ba2600c0bcd8a6d {
		font-size: 25px !important;
	}
	form{
	width:100%;
}
.guten-element.guten-9J5KIb, .guten-element.guten-EmXMPZ, .guten-element.guten-zfQMAs, .guten-element.guten-50sPj8{
		margin-left:10px !important;
			margin-right: 10px !important;
	}
}
   @media (max-width: 480px) {
        .benefits-section {
            padding: 25px 0;
        }
        
        .benefits-container {
            padding: 0 10px;
					
        }
        
        .benefit-card {
            padding: 20px 15px;
            height: 160px;
        }
        
        .stat-number {
            font-size: 36px;
        }
        
        .benefit-title {
            font-size: 16px;
        }
		   .problems-section {
            padding: 25px 0;
        }
        
        .problems-container {
            padding: 0 10px;
        }
        
        .problems-card {
            padding: 20px 15px;
            min-height: 140px;
        }
        
        .problems-title {
            font-size: 16px;
        }
		  .treatment-stage-card {
            width: 240px;
            min-height: 100px;
        }
        .treatment-stage-title {
            font-size: 18px;
        }
        .treatment-stage-arrow {
            font-size: 32px;
        }
		    .approach-section {
            padding: 25px 0;
        }
        .approach-container {
            padding: 0 10px;
        }
        .approach-card {
            padding: 20px 15px;
            min-height: 140px;
        }
        .approach-title {
            font-size: 16px;
        }
    }