:root {
    /*---------------------------   --------------------------------------------*/
    /*------------------------------- #f2e7f9 ------------ блежно-розовый -------------------------*/
    /*----------main-green: #7ba65d;-------*/
    --main-green: #54689a; /*   ========================== #464685 ======================== синий */
    /*--------dark-green: #4a6735;-------*/
    --dark-green: #58237d; /*================================================= фиолетовый */
    --footer-bg: #222521;
    --text-dark: #464685;
    /* --light-bg: #f9fbf8;*/
    --light-bg: #ebf9f8; /*#dff3f1;*/
    /* Дополнительные точные цвета из макета для 3 блоков */
    /*  --contact-bg-light: #a3b899; 
    --contact-bg-light: red;
    --contact-bg-medium: #6e874b;
    --contact-bg-dark: #2b5115;*/
}

/* Общие резиновые стили */
    * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка */
header {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}


nav a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Верхние три карточки (Promo) */
.promo-section {
    display: flex;
    flex-wrap: wrap;
}

.promo-card {
    flex: 1 1 33.333%;
    padding: 30px;
    color: #fff; /*---------------------------#fff gray-----*/
}
   
    .promo-card:nth-child(1) {
        background-color: var(--dark-green);
    }/*==================================================== фиолетовый шапка прямоугольник */
    .promo-card:nth-child(2) {
        background-color: var(--main-green);
    }
    /*==================================================== синий шапка 2-й прямоугольник */

    .promo-card:nth-child(3) {
        background-color: #4ebebe;/*============================================ бирюза 3-й прямоугольник */
    }

    .promo-card h3 {
        font-size: 20px;
        margin-bottom: 5px;
        font-weight: normal;
    }

    .promo-card h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

/* --- ТРИ РЕЗИНОВЫХ БЛОКА В ФУТЕРЕ --- */
.footer-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: var(--footer-bg);
}

/* Общие стили ссылок-карточек */
.footer-card {
    flex: 1 1 33.333%; /* Равномерное заполнение строки на десктопах */
    padding: 30px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

    .footer-card:hover {
        opacity: 0.9;
    }

    /* Раскраска блоков согласно макету */
    .footer-card:nth-child(1) {
        background-color: var(--contact-bg-light);
    }

    .footer-card:nth-child(2) {
        background-color: var(--contact-bg-medium);
    }

    
    .footer-card:nth-child(3) {
        background-color: var(--contact-bg-dark);
    }

    /* Контейнер для SVG иконки */
    .footer-card .icon-box {
        width: 40px;
        height: 40px;
        margin-right: 15px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .footer-card .icon-box svg {
            width: 100%;
            height: 100%;
        }

    /* Текстовый контейнер внутри карточки футера */
    .footer-card .card-text {
        display: flex;
        flex-direction: column;
    }

        /* Центрирование текста для блоков без иконок (например, телефона) */
        .footer-card .card-text.no-icon {
            text-align: center;
            width: 100%;
        }

    /* Стили подписей (Estamos en el mapa и т.д.) */
    .footer-card h3 {
        font-size: 13px;
        margin-bottom: 4px;
        font-weight: 300;
        opacity: 0.9;
        letter-spacing: 0.5px;
    }

    /* Стили главных значений (Nuestra dirección и т.д.) */
    .footer-card h2 {
        font-size: 22px;
        font-weight: 400;
        margin-bottom: 0; /* Сброс нижнего отступа */
    }

/* Секции общего назначения */
section {
    padding: 60px 0;
    background-color: #f5eff9; /* ---------------------------- #f2e7f9 поле индекса розовое-------------------*/
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--dark-green);
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 26px;
}

/* Сетка анализов (Иконка + Текст) */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.analysis-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

    /* Специфичный класс для иконок в сетке анализов, чтобы не ломать футер */
    .analysis-item .icon-box {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

.analysis-text h4 {
    font-size: 18px;
    font-weight: normal;
    color: #45a7a7; /*var(--text-dark)*/
    margin-bottom: 10px;
}


.analysis-text p {
    font-size: 13px;
    color: #464685; /*#666*/
}

/* Двухколоночный блок (Текст + Картинка) */
.two-cols {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.col-text {
    flex: 1 1 500px;
}

.col-img {
    flex: 1 1 400px;
    text-align: center;
}

    .col-img img {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

/* Списки с галочками */
.checkmark-list {
    list-style: none;
    margin-top: 20px;
}

    .checkmark-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 10px;
        font-size: 14px;
    }

        .checkmark-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--main-green);
            font-weight: bold;
        }


/* Базовый контейнер для всего футера */
.main-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Нижняя темная область */
.footer-content {
    background-color: var(--footer-bg);
    padding: 60px 0;
    color: #b0b3b6; /* Слегка сероватый текст, как на макете */

}

/* Сетка для двух колонок */
.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

/* Каждая колонка занимает половину пространства */
.footer-col {
    flex: 1 1 450px;
}

/* Заголовки колонок (Sobre nosotros, Información legal) */
.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

/* Описание под заголовком */
.footer-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 420px;
}

/* Списки контактов и ссылок */
.footer-contacts-list,
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    /* Элементы списка контактов (адрес, телефон, почта) */
    .footer-contacts-list li {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .footer-contacts-list a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-contacts-list a:hover {
            color: #ffffff;
        }

    /* Иконки в списке контактов (можно заменить на SVG при необходимости) */
    .footer-contacts-list .contact-icon {
        font-size: 16px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    /* Ссылки в правой колонке */
    .footer-links-list li {
        margin-bottom: 12px;
    }

    .footer-links-list a {
        color: #ffffff; /* Белые ссылки, как на макете */
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
        transition: opacity 0.2s ease;
    }

        .footer-links-list a:hover {
            opacity: 0.8;
        }

/* Адаптивность для мобильных экранов */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }
}
    /*========================================*/
    /* ОБЩИЙ КОНТЕЙНЕР ДЛЯ ВСЕГО ФУТЕРА */
    .site-footer {
        width: 100%;
        background-color: #222521; /* Основной темный фон из вашего макета */
        font-family: 'Segoe UI', Arial, sans-serif;
    }

    /* --- 1. СТИЛИ ДЛЯ ТРЕХ ПЛАШЕК --- */
    .footer-promo-row {
        display: flex;
        flex-wrap: wrap;
        max-width: 1140px; /* ЖЕСТКО ЗАЖИМАЕМ ШИРИНУ ПЛАШЕК */
        margin: 0 auto; /* ЦЕНТРИРУЕМ ИХ ПО ЦЕНТРУ ЭКРАНА */
        width: 100%;
    }

    .promo-block {
        flex: 1 1 300px; /* Резиновая ширина, плашки делят место поровну */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px 20px;
        text-decoration: none;
        color: #ffffff;
    }

    /* Цвета плашек  */
    .block-map {
        background-color: #a3b899;
    }

    .block-phone {
        background-color: #6e874b;
    }

    .block-email {
        background-color: #2b5115;
    }

    /* Иконки внутри плашек */
    .promo-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
        flex-shrink: 0;
    }

        .promo-icon svg {
            width: 100%;
            height: 100%;
        }

    /* Текст внутри плашек */
    .promo-text {
        display: flex;
        flex-direction: column;
    }

        .promo-text.no-icon {
            text-align: center;
            width: 100%;
        }

        .promo-text .label {
            font-size: 13px;
            opacity: 0.85;
            margin-bottom: 4px;
            font-weight: 300;
        }

        .promo-text .value {
            font-size: 22px;
            font-weight: 400;
        }


    /* --- 2. СТИЛИ ДЛЯ НИЖНЕЙ ТЕМНОЙ ЧАСТИ --- */
    .footer-main-content {
        display: flex;
        flex-wrap: wrap;
        max-width: 1140px; /* ТОЖЕ ЗАЖИМАЕМ ШИРИНУ КОЛОНОК */
        margin: 0 auto; /* ЦЕНТРИРУЕМ */
        padding: 60px 20px;
        gap: 60px;
    }

    .footer-column {
        flex: 1 1 450px; /* Две колонки делят пространство 50 на 50 */
    }

        /* Заголовки (Sobre nosotros / Información legal) */
        .footer-column h4 {
            color: #ffffff;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
        }

        /* Описание */
        .footer-column p {
            color: #b0b3b6;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 30px;
        }

    /* Списки */
    .contacts-list, .legal-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .contacts-list li {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            color: #b0b3b6;
            font-size: 14px;
        }

        .contacts-list a {
            color: inherit;
            text-decoration: none;
        }

        .legal-links li {
            margin-bottom: 12px;
        }

        .legal-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
        }

    /* --- 3. МОБИЛЬНАЯ АДАПТИВНОСТЬ --- */
    @media (max-width: 768px) {
        .footer-promo-row, .footer-main-content {
            flex-direction: column;
            gap: 0;
        }

        .footer-main-content {
            gap: 40px;
            padding: 40px 20px;
        }

        .promo-block {
            justify-content: flex-start;
        }

        .promo-text.no-icon {
            text-align: left;
            padding-left: 55px;
        }
    }
    /* --- СТИЛИ ИЗ ВНУТРЕННЕГО ФАЙЛА (ЧАСТЬ 1) --- */

    /* Контейнер для меню */
    .nav-menu {
        display: flex;
        gap: 8px; /* Расстояние между кнопками */
        background-color: #ffffff;
        padding: 10px;
        font-family: sans-serif;
    }

    /* Базовые стили для ссылок меню */
    .nav-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        padding: 0 16px;
        color: #58237d; /* Оливковый цвет текста по умолчанию */
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase; /* Делает текст заглавными буквами */
        background-color: transparent;
        transition: background-color 0.2s ease, color 0.2s ease; /* Плавный переход */
    }


/* Стили для текущей активной страницы */
    .nav-link_active {
        background-color: red; /* фиолетовый фон */
        color: #ffffff; /* Белый текст */
    }

        /* Поведение активной ссылки при наведении */
        .nav-link_active:hover {
            background-color: #4ebebe; /* Цвет не меняется, чтобы показать активность */
            color: #ffffff;
        }

    /*======================= price ================*/
    .price-container {
        max-width: 50%;
        margin: 20px auto;
        font-family: Arial, sans-serif;
        color: #e8d3f6; /*                333;         */
        line-height: 1.5;
    }

    /* Элементы идут строго друг за другом */
    .price-grid {
        display: block;
    }

    /* Категория прайса */
    .price-category {
        min-width: 300px;
        background: #fdfdfd;
        padding: 20px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        margin-bottom: 25px; /* Заменяет gap в display: block */
    }

        .price-category h3 {
            margin-top: 0;
            margin-bottom: 15px;
            border-bottom: 2px solid #edf2f7;
            padding-bottom: 8px;
            padding-top: 8px;
            padding-left: 8px;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: #768D4C;
            color: white;
        }
    /* --- СТИЛИ ИЗ ВНУТРЕННЕГО ФАЙЛА (ЧАСТЬ 2)   --- */

    .price-name {
        font-weight: bold;
        font-size: 0.95rem;
        /*font-size:32px;*/
        color: #58237d; /*----------------#58237d------------*/
    }
.temp {
    font-weight: bold;
    /* font-size: 0.95rem; */
    font-size: 32px;
    color: #58237d; /*----------------#58237d------------*/
}

.price-desc {
    font-size: 0.8rem;
    color: #718096; /*#718096*/
    margin-top: 2px;
}

    .price-value {
        font-weight: bold;
        color: #2b6cb0;
        white-space: nowrap;
        font-size: 1rem;
    }

    /* Юридическая текстовая разметка (для блоков 10-25) */


    .legal-value {
        font-size: 14px;
        margin-right: 10%;
        width: 35%;
    }

    .legal-value1 {
        font-size: 14px;
        margin-right: 10%;
        width: 25%;
    }

    .single {
        padding-bottom: 15px;
        padding-top: 15px;
    }
    section
    /* Стили ячеек таблиц / блоков */
    .td_kray {
        border-bottom: 1px dashed #2A4613;
        padding-left: 10px;
        font-size: 0.95rem;
    }

    .td_mid {
        padding-left: 10px;
        border-bottom: 1px dashed #2A4613;
        border-left: 1px dashed #2A4613;
        border-right: 1px dashed #2A4613;
        font-size: 0.95rem;
    }

    .td_left {
        padding-left: 10px;
        border-bottom: 1px dashed #2A4613;
        border-left: 1px dashed #2A4613;
        font-size: 0.95rem;
    }

    /* Адаптивность для мобильных экранов (дополнение в существующий breakpoint) */
    @media (max-width: 768px) {
        .price-container-leg {
            max-width: 100% !important;
            padding: 0 15px;
            flex: 1 1 100%; /* Разрешает увеличиваться, базовый размер 100% */
        }
    }
}
/*=======================price================*/
.price-container {
    max-width: 50%;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.5;
}

/* ИЗМЕНЕНО: теперь элементы идут строго друг за другом */
.price-grid {
    display: block;
}

/* ИЗМЕНЕНО: убран flex и добавлен отступ снизу */
.price-category {
    min-width: 300px;
    background:white; /*#f2e7f9 --------------------- бордер вокруг анализа---------*/
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    margin-bottom: 25px; /* Заменяет gap, который не работает в display: block */
}

    /* Остальные стили без изменений */
    .price-category h3 {
        margin-top: 0;
        margin-bottom: 15px;
        border-bottom: 2px solid #edf2f7;
        padding-bottom: 8px;
        padding-top: 8px;
        padding-left: 8px;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        background: #4ebebe; /*----------------------------------------------------------- #768D4C  заголовки групп анализов ------------------ */
        color: white;
    }

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px dashed #58237d; /*#2A4613*/
    background: #ebf9f8; /*----------------------------------#f5eff9----------- #F1F1F1 ------------------- внутренние поля анализов -------------------*/
    padding-left: 12px;
    padding-right: 12px;
}

    .price-item:last-child {
        border-bottom: none;
    }

.price-info {
    padding-right: 15px;
    font-weight: bold;
    color: #58237d;
}



.price-desc {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 2px;
}

.price-value {
    font-weight: bold;
    color: #2b6cb0;
    white-space: nowrap;
    font-size: 1rem;
}
/*--------------------------------- меню ---------------------------------------*/
/* Контейнер для меню */
.nav-menu {
    display: flex;
    gap: 8px; /* Расстояние между кнопками */
    background-color: #ffffff;
    padding: 10px;
    font-family: sans-serif; /* Замените на ваш шрифт */
}

/* Базовые стили для ссылок меню */
.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    color: #464685; /* Синий текста по умолчанию */
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase; /* Делает текст заглавными буквами */
    background-color: transparent;
    transition: background-color 0.2s ease, color 0.2s ease; /* Плавный переход */
}

    /* Эффект подсветки при наведении (Hover) */
    .nav-link:hover {
        background-color: #4ebebe; /* Светло-зеленый фон */
        color: #ffffff; /* Белый текст при наведении */
    }

/* Стили для текущей активной страницы */
.nav-link_active {
    background-color: #58237d; /* фиолетовый плашка меню */
    color: #ffffff; /* Белый текст */
}

    /* Опционально: поведение активной ссылки при наведении */
    .nav-link_active:hover {
        background-color: #2a4613; /* Цвет не меняется, чтобы показать активность */
        color: #ffffff;
    }

/*--------------------------------- price ---------------------------------------*/
.legal-big {
    font-size: 26px;
    font-family: 'Century Gothic', sans-serif;
    font-weight: 300;
    padding-bottom: 15px;
    padding-top: 15px;
    color: #4ebebe;
}

.legal-value {
    font-size: 14px;
    margin-right: 10%;
    width: 35%;
}

.legal-value1 {
    font-size: 14px;
    margin-right: 10%;
    width: 25%;
}

.single {
    padding-bottom: 15px;
    padding-top: 15px;
}

.td_kray {
    border-bottom: 1px dashed #2A4613;
    padding-left: 10px;
    font-size: 0.95rem;
}

.td_mid {
    padding-left: 10px;
    border-bottom: 1px dashed #2A4613;
    border-left: 1px dashed #2A4613;
    border-right: 1px dashed #2A4613;
    font-size: 0.95rem;
}

.td_left {
    padding-left: 10px;
    border-bottom: 1px dashed #2A4613;
    border-left: 1px dashed #2A4613;
    font-size: 0.95rem;
}
.sq_foot1 {
    flex: 0 1 340px;
    min-width: 280px;
    background-color: #acf3ed;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin: 0;
}
.icon_foot1 {
    display: block;
    margin-left: 30px;
    margin-right: 30px;
}

.sq_foot1_tx1 {
    font-size: 11px;
    text-transform: uppercase;
    color: #58237d;
    margin-bottom: 2px;
}
.sq_foot2 {
    flex: 0 1 340px;
    min-width: 280px;
    background-color: #4ebebe;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.sq_foot2_tx1 {
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2px;
}
.foot_pan_cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    background-color: #58237d;
    padding: 0;
    box-sizing: border-box;
}
.price-container-leg {
    max-width: 45%;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.5;
}
/*-----------------------------------------------------------------*/

/*----------------------------------------------------------------------------*/
/* Стили для мобильных устройств (экраны до 768px) */
@media (max-width: 768px) {
    .header-box {
        display: flex;
        flex-direction: column; /* Выстраивает элементы вертикально */
        align-items: center; /* Центрирует элементы по горизонтали */
        gap: 20px; /* Добавляет отступ между логотипом и меню */
    }

    .nav-menu {
        display: flex;
        flex-direction: column; /* Выстраивает ссылки меню друг под другом */
        align-items: center;
        gap: 15px; /* Отступ между ссылками */
    }

        /* Сбрасываем жесткий отступ у ссылки RU, чтобы на мобильном она была по центру */
        .nav-menu .nav-link {
            margin-left: 0 !important;
        }
}
/*-------------------------------------------------------*/
@media screen and (max-width: 768px) {
    /* Расширяем главный контейнер на весь экран */
    .price-category {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 15px; /* Защитные отступы по бокам */
        box-sizing: border-box;
    }

    /* Выстраиваем название/описание и цену в одну строку по краям */
    .price-item {
        display: flex;
        justify-content: space-between;
        align-items: flex-start; /* Выравнивание по верхнему краю */
        width: 100%;
        padding: 15px 0;
        box-sizing: border-box;
    }

    /* Блок с текстом занимает все свободное место */
    .price-info {
        flex-grow: 1;
        padding-right: 15px; /* Чтобы текст не налезал на цену */
    }

    /* Описание анализов делаем чуть компактнее */
    .price-desc {
        font-size: 12px;
        color: #666;
        margin-top: 5px;
    }

    /* Цена фиксируется справа и не переносится */
    .price-value {
        flex-shrink: 0;
        white-space: nowrap;
        font-weight: bold;
    }
}

/*-------------------------------------------------------------------------------------------*/
/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .footer-section {
        flex-direction: column;
    }

    .footer-card {
        flex: 1 1 100%;
        width: 100%;
        justify-content: flex-start;
        padding: 20px;
    }

        .footer-card .card-text.no-icon {
            text-align: left;
            padding-left: 55px; /* Выравнивание со строками, у которых есть иконки */
        }
}

/*-----------------------------------------новый--------------------------*/
@media screen and (max-width: 768px) {
    /* Растягиваем контейнер на весь экран смартфона */
    .price-container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 10px 0 !important; /* Убираем боковые авто-отступы */
        padding: 0 15px !important; /* Добавляем аккуратные отступы, чтобы текст не прилипал к краям дисплея */
        box-sizing: border-box !important;
    }

    /* Корректируем элементы, чтобы цена и названия красиво встали по краям */
    .price-item {
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        gap: 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .price-info {
        flex-grow: 1 !important;
    }

    .price-value {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }
}
/*--------------------------------- обнулить отступы --------------------------*/
@media screen and (max-width: 768px) {
    /* Полностью убираем боковые отступы у контейнера */
    .price-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* Убираем боковые отступы у самой категории с прайсом */
    .price-category {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Добавляем минимальный безопасный отступ только для строк с текстом, */
    /* чтобы буквы не прижимались вплотную к самому стеклу экрана */
    .price-item {
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box !important;
    }

    /* Смещаем заголовок "Packs de Análisis" ближе к левому краю */
    .price-category h3 {
        padding-left: 10px !important;
        margin-left: 0 !important;
    }
}

