/*эксперимент*/
/* 1. Основной контейнер */
.hot_items { 
    background: #f4f7f6; 
    padding: 20px 0; /* Чуть больше «воздуха» сверху/снизу */
}

/* 2. Контейнер для рядов */
.hot_items .row { 
    display: flex; 
    flex-wrap: wrap; 
}

/* 3. Стили карточки */
.hot_items .item { 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
    background: #ffffff; 
    border-radius: 12px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    margin-bottom: 30px; 
    overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Эффект наведения на всю карточку */
.hot_items .item:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 12px 30px rgba(0,0,0,0.12); 
}

/* 4. Настройка картинки (Твой исправленный вариант) */
.hot_items .item .preview { 
    display: block; 
    width: 100%; 
    padding-bottom: 90%; /* Чуть компактнее по высоте */
    background-size: cover; 
    background-position: center; 
    transition: transform 0.6s ease; /* Долгая плавная анимация */
}

.hot_items .item:hover .preview { 
    transform: scale(1.1); 
}

/* 5. Контент */
.hot_items .item .content { 
    padding: 20px; /* Равномерные отступы со всех сторон */
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
}

/* 6. Заголовок */
.hot_items .item h3 { 
    margin: 0 0 10px; 
    font-size: 1.0em; 
    line-height: 1.3; 
    height: 5.2em; /* ЗАМЕНИЛИ max-height на height для стабильности */
    overflow: hidden; 
    display: -webkit-box; 
    -webkit-line-clamp: 4; 
    -webkit-box-orient: vertical; 
}

.hot_items .item h3 a { 
    text-decoration: none; 
    color: #222; 
    transition: color 0.3s ease; 
}

.hot_items .item h3 a:hover { 
    color: #c10c66; 
}

/* 7. Дата (Сделали чуть элегантнее) */
.hot_items .item .date { 
    font-size: 0.9em; 
    margin-bottom: 5px; 
    color: #04730d; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 8. Ссылка "Подробнее" */
.read_more_link { 
    display: inline-block; 
    align-self: flex-start; 
    margin-top: auto; /* Теперь это точно вытолкнет кнопку вниз */
    color: #0066cc; 
    font-weight: 700; 
    text-decoration: none;
    padding-top: 10px; 
}

.read_more_link::after {
    content: ' →';
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Анимация ссылки при наведении на КАРТОЧКУ */
/*.hot_items .item:hover .read_more_link {
    color: #c10c66;
}*/

.hot_items .item:hover .read_more_link::after {
    transform: translateX(5px); /* Стрелочка дергается вправо */
}
.hot_items .item .anno {
    font-size: 0.9em;
    color: #666;
    line-height: 1.4;
    height: 2.8em; /* Ровно 2 строки */
    overflow: hidden;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*@media (min-width: 1200px) {
    .container {
        max-width: 1320px; 
        width: 95%;        
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1520px; 
    }
}*/

/*БЛОК RSS-НОВОСТИ*/
/* Общий контейнер блока */
.box.rss_news {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Заголовок виджета */
.box.rss_news .widget_title {
    font-size: 1.4em;
    color: #2e8b57; /* Ваш основной зеленый */
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

/* Красивая полоска под заголовком */
.box.rss_news .widget_title:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #2e8b57;
}

/* Стилизация каждой новости (item) */
.box.rss_news .item {
    padding: 12px 0;
    border-bottom: 1px solid #f9f9f9;
    transition: all 0.2s ease;
    font-size: 0.95em;
    line-height: 1.5;
}

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

/* Эффект при наведении на строку */
.box.rss_news .item:hover {
    padding-left: 5px;
    background-color: #fcfdfc;
}

/* Стилизация даты */
.box.rss_news .date {
    background: #f0f5f2;
    color: #4a7a5e;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85em;
    margin-right: 10px;
    display: inline-block;
}

/* Ссылка "подробнее" */
.box.rss_news .item a {
    color: #2e8b57;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    margin-left: 5px;
    border-bottom: 1px dashed #2e8b57;
}

.box.rss_news .item a:hover {
    border-bottom-style: solid;
    color: #00b454;
}
/* Добавляем иконку перед заголовком "Новости" */
.box.rss_news .widget_title::before {
    content: "\f09e"; /* Код иконки RSS в шрифте FontAwesome */
    font-family: "Font Awesome 5 Free", "FontAwesome", sans-serif;
    font-weight: 900;
    display: inline-block;
    margin-right: 10px;
    color: #f26522; /* Тот самый оранжевый цвет RSS */
    font-size: 0.9em;
    vertical-align: middle;
}
/*БЛОК RSS-НОВОСТИ - окончание*/
/* Уникальный стиль для оформления статьи */
.my-article-card {
    position: relative;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin: 25px 0 40px 0 !important;
    border: 1px solid #e0e0e0;
    line-height: 1.65; /* Сразу добавляем воздух тексту */
    color: #333;
}

/* Наша зеленая полоска */
.my-article-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #2e8b57;
    border-radius: 12px 12px 0 0;
}

/* Чтобы на телефонах отступы были меньше */
@media (max-width: 991px) {
    .my-article-card {
        padding: 15px;
    }
}

/* --- КРАСИВОЕ ОФОРМЛЕНИЕ СТАТЕЙ (АВТОМАТИЧЕСКОЕ) --- */
/* Превращаем блок статьи в аккуратную карточку */
.entry {
    position: relative;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin: 25px 0 40px 0 !important;
    border: 1px solid #e0e0e0;
    overflow: visible; /* Чтобы изображения не обрезались */
    line-height: 1.65;  /* Воздух между строками */
    color: #333;
}

/* Зеленая полоска сверху */
.entry::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #2e8b57;
    z-index: 10;
    border-radius: 12px 12px 0 0;
}

/* Улучшаем читаемость заголовков и списков внутри статьи */
.entry h2, .entry h3 {
    color: #2e8b57;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

.entry p {
    margin-bottom: 1.2em;
    text-align: left /*!important; /* Убираем дыры в тексте */
}

/* Адаптация для мобильных устройств */
@media (max-width: 991px) {
    .entry {
        padding: 20px;
        margin: 15px 0 !important;
        font-size: 0.95em;
    }
}
/* Снимаем оформление "карточки" со спойлеров, которые являются записями в списке */
.entry.spoiler {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 20px 0 !important;
}

/* Убираем зеленую полоску сверху только у спойлеров */
.entry.spoiler::before {
    display: none !important;
}

/* Настраиваем саму кнопку спойлера, чтобы она была аккуратной */
.entry.spoiler .spoiler_toggle {
    margin-bottom: 5px;
    border-radius: 6px;
    background: #2e8b57; /* Ваш зеленый */
	box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Легкая тень для каждой кнопки */
    transition: transform 0.2s ease;
}

/* Эффект при наведении, чтобы было понятно, что это кнопка */
.entry.spoiler .spoiler_toggle:hover {
    transform: translateY(-1px); /* Кнопка чуть приподнимается */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
/* Оформляем внутренний блок с контентом, когда он раскрыт */
.entry.spoiler .spoiler_content .body {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); /* Легкая внутренняя тень */
    margin-top: 5px;
}

/* Убираем лишние отступы у заголовка внутри кнопки */
.entry.spoiler .spoiler_caption h3 {
    color: #fff !important;
    margin: 0 !important;
    font-size: 1.2em;
}
/*ОФОРМЛЕНИЕ*/
 <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
.exam_03 {
    border-radius: 5px;
    color: #fff;
    font-family: verdana, 'open sans', sans-serif;
    padding: 10px 14px 10px 44px;
    position: relative;
    box-shadow: 0px 1px 5px #999;
    background-color: #8a9bab;
}
 .exam_03:before {
    content: "\f129"; /* код иконки info */
    margin-left: 4px;
    font-family:FontAwesome;
    font-size: 21px;
    left: 14px; /* позиция иконки */
    position: absolute;
}
.exam_05 {
    background: #eeeef9 50%;
    color: #49152C;
    padding: 10px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
}
/*СПИСКИ*/
.list-rectangle {
list-style: none;
margin: 0;
padding: 0;
}
.list-rectangle>li {
position: relative;
display: block;
margin-bottom: .25rem;
padding: .325rem .825rem .325rem 1.325rem;
color: #fff;
background: #C2185B;
}
.list-rectangle>li:last-child {
margin-bottom: 0;
}
.list-rectangle>li::before {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 0.5rem;
background: #ec407a;
}
/*ЗАГОЛОВОК*/
.header-2 {
    position: relative;
    margin-bottom: .5rem;
    text-align: center;
  }
  .header-2 h1 {
    display: inline-block;
    background: #fff;
    margin-bottom: 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    padding: .5rem 1.5rem;
    border: .125rem solid #135b99;
    color: #135b99;
  }
  .header-2 h1::after {
    content: "";
    position: absolute;
    background: #135b99;
    height: .125rem;
    left: 0;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: -999;
  }
  .header-2-dark h1 {
    background: #135b99;
    color: #fff;
  }
   .header-2-darkm h1 {
    background: #135b99;
    color: #fff;
	font-size: 1.1rem;
  }
  
/*КРАСИВЫЙ СПИСОК*/
.pills {
  margin-left: 0;
  margin-right: 30px;
  list-style: none;
  counter-reset: li;
  font-family: calibri;
}
.pills li {
  padding: 10px 15px;
  position: relative;
  left: 1.5em;
  margin-bottom: 0.75em;
  padding-left: 1em;
  background: #E3DEDC;
}
.pills li:before {
  padding: 10px 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.5em;
  width: 1.875em;
  text-align: center;
  color: white;
  font-weight: bold;
  background: #337AB7;
  border-bottom-left-radius: 70em;
  border-top-left-radius: 70em;
  counter-increment: li;
  content: counter(li);
}
/*КРАСИВЫЙ СПИСОК - ОКОНЧАНИЕ*/
/*КРАСИВЫЙ СПИСОК - ВАРИАНТ 2*/
.list2b {
    margin-bottom: 8px;
    padding:0;
    list-style: none;
    counter-reset: li;
}    
.list2b li {
    position: relative;
    border: 2px solid #DDDDDD;
    background: #EFEFEF;
    padding:6px 20px 6px 28px;
    margin:12px 0 12px 40px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
	font-family: calibri;
	font-size: 16px;
	border-top-right-radius: 1em;
	border-bottom-right-radius: 1em;
	text-align: justify;
}
.list2b li:hover {
    background: #DFDADB;
    border: 2px solid #ADCEE9;
}
.list2b li:before {
    line-height: 32px;
    position: absolute;
    top: 4px;
    left:-40px;
    width:40px;
    text-align:center;
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
    background: #042969;
    counter-increment: li;
    content: counter(li);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
.list2b li:hover:before {
    width:46px;
    background: #a52a2a;
}
.list2b li:after {
    position: absolute;
    left: 0;
    top: 4px;
    content: "";
    height: 0;
    width: 0;
    border: 16px solid transparent;
    border-left-color: #A52A2A;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s
}
.list2b li:hover:after {
    margin-left: 6px;
    border-left-color: #042969;
}
/*КРАСИВЫЙ СПИСОК ВАРИАНТ 2 ОКОНЧАНИЕ*/
/*НУМЕРОВАННЫЙ СПИСОК ВАРИАНТ 1*/
.pills1 {
  margin-left: 0;
  list-style: none;
  counter-reset: li;
  font-family: calibri;
  font-weight: 550;
  color: black;
}
.pills1 li {
  padding: 10px 0;
  position: relative;
  left: 0em;
  margin-bottom: 0.75em;
  margin-top: 1em;
  margin-right: 2em;
  padding-left: 1em;
  padding-right: 1em;
  background: #e5ebf9;
}
.pills1 li:before {
  padding: 10px 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.5em;
  width: 1.875em;
  text-align: center;
  color: white;
  font-weight: bold;
  background: #791040;
  border-bottom-left-radius: 0em;
  border-top-left-radius: 0em;
  counter-increment: li;
  content: counter(li);
}
/*НУМЕРОВАННЫЙ СПИСОК ВАРИАНТ 1 ОКОНЧАНИЕ*/
.pills1gr li:before {
  background: #0e7283;
  border-bottom-left-radius: 0.5em;
  border-top-left-radius: 0.5em;
}
.pills1or li {
  padding: 7px 0;
  position: relative;
  left: 0em;
  margin-bottom: 0.75em;
  margin-top: 1em;
  margin-right: 2em;
  padding-left: 1em;
  padding-right: 1em;
  background: #fbd8ca; 
}
.pills1or li:before {
  border-bottom-left-radius: 0.5em;
  border-top-left-radius: 0.5em;
}
/*СПИСОК с цветными полями*/
.border {
list-style: none;
padding: 0;
}
.border li {
/*font-family: "Trebuchet MS", "Lucida Sans";*/
/*font-weight: bold;*/
color: black;
font-weight: 550;
 line-height: 1.3;
padding: 7px 20px;
  margin-top: 1em;
margin-bottom: 10px;
margin-right: 20px;
border-radius: 5px;
border-left: 10px solid #f05d22; 
background: #e5ebf9;
box-shadow: 2px -2px 5px 0 rgba(0,0,0,.1),
     -2px -2px 5px 0 rgba(0,0,0,.1),
    2px 2px 5px 0 rgba(0,0,0,.1),
    -2px 2px 5px 0 rgba(0,0,0,.1);
transition: 0.3s all linear;
}
.border li:nth-child(2){border-color: #8bc63e;}
.border li:nth-child(3){border-color: #fcba30;}
.border li:nth-child(4){border-color: #1ccfc9;}
.border li:nth-child(5){border-color: #493224;}
.border li:nth-child(6){border-color: #0000FF;}
.border li:hover {border-left: 10px solid transparent;}
/*.border li:nth-child(1):hover {border-right: 10px solid #f05d22;}
.border li:nth-child(2):hover {border-right: 10px solid #8bc63e;}
.border li:nth-child(3):hover {border-right: 10px solid #fcba30;}
.border li:nth-child(4):hover {border-right: 10px solid #1ccfc9;}
.border li:nth-child(5):hover {border-right: 10px solid #493224;}
.border li:nth-child(6):hover {border-right: 10px solid #0000FF;}*/

/*красивый заголовок 1*/
.header-h1 {
    text-align: center;
    margin-bottom: .5rem;
  }
  .header-h1 h1 {
    display: inline-block;
    background: #0097a7;
    color: #fff;
    margin-bottom: 0;
    padding: .5rem 1rem .625rem 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    border-radius: 30px;
  }
  .header-h1 {
    text-align: center;
    margin-bottom: .5rem;
  }
  .header-h1mi h1 {
    font-size: 1.1rem;
  }
/*красивый заголовок 1 - окончание*/  
.header-h2 {
    position: relative;
    margin-bottom: .5rem;
  }
  .header-h2 h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    padding-left: 3rem;
    color: #e91e63;
  }
  .header-h2 h1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2.25rem;
    height: 2.25rem;
    background: #e91e63;
  }
  .header-h2 h1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 2rem;
    width: 100%;
    height: .25rem;
    background-color: #e91e63;
  }
/*начало*/  
    .header-h3 h1 {
    position: relative;
    padding-bottom: .5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    color: #00838f;
  }
  .header-h3 h1::before {
    content: "";
    position: absolute;
    border-bottom: 2px solid #00838f;
    bottom: .25rem;
    left: 50%;
    width: 30%;
    transform: translateX(-50%);
  }
  .header-h1 h3::after {
    content: "";
    position: absolute;
    border-bottom: 2px solid #00838f;
    bottom: 0;
    left: 50%;
    width: 15%;
    transform: translateX(-50%);
  }
  .header-h3-left h1 {
    text-align: left;
  }
  .header-h3-left h1::before,
  .header-h3-left h1::after {
    left: 0;
    transform: translateX(0);
  }
  .header-h3-right h1 {
    text-align: right;
  }
  .header-h3-right h1::before,
  .header-h3-right h1::after {
    left: unset;
    right: 0;
    transform: translateX(0);
  }
/*окончание заголовка*/  
.list5a {
    padding:0;
    list-style: none;
}    
.list5a li {
    position: relative;
    padding: 10px 30px;
    background: linear-gradient(to left, #ADCEE9 0%, #FFF, #ADCEE9);
    border: 2px solid #337AB7;
    color: #506a6b;
    box-shadow: 0 5px 5px 0 rgba(0,0,0, .2);
    margin-bottom: 5px;
    text-align:center;
    background-size: 100% 100%;
    z-index: 1;
}
/*.list5a li:before {
    content: "";
    position:absolute;
    width: 0;
    height: 100%;
    top: 50%;
    left: 50%;
    background: linear-gradient(to left, #EBF3FA 0%, #FFF, #EBF3FA);
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    z-index: -1;
}
/*.list5a li:hover:before {
    width: 100%;
    opacity: 1;
}*/
.first  {
list-style: none;
padding: 0;
}
.first li {
padding: 7px 15px;
background: linear-gradient(to left, #f8ab8d 0%, white, #f8ab8d);
border-bottom: 1px solid grey;
color: #506a6b;
box-shadow: 0 5px 5px 0 rgba(0,0,0, .2);
margin-bottom: 5px;
}
.first li:last-child {border-bottom: none;}

.table-grey  {
list-style: none;
padding: 0;
}
.table-grey li {
padding: 7px 15px;
background: #e5ebf9;
border-bottom: 1px solid grey;
color: black;
box-shadow: 0 5px 5px 0 rgba(0,0,0, .2);
margin-bottom: 5px;
}
.table-grey li:last-child {border-bottom: none;}
/*выделение блока*/
.exam_01 {
    background: linear-gradient(135deg, #f4e3f0 50%, #e2debe 50%);
    color: #49152C;
    padding: 30px 50px;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
}
.exam_01mi {
    color: #49152C;
    padding: 10px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
}
.exam_11 {
    /*background-color: #2d1291;*/
	background: #f1f1ff; /* фон рамки */
    padding: 10px 20px;
	margin: 15px 0px 10px 0px;
	color: #000;
	border-radius: 10px; /*  радиус скругления углов рамки */
    border: 2px dashed #584d65; /* размер, форма и цвет рамки */
	box-shadow: 0 0 0 1px #6c35eb;, 2px 1px 6px 4px rgba(150, 128, 137, 0.5); /* смещение, размер и цвет тени рамки*/
    font-family: 'Lato', sans-serif;
    font-size: 15px;
}

.exam_04 {
    background-color: #e3edf7;
    border-left: 6px solid #6891b5;
    color: #1a060f;
    padding: 30px 50px;
   /* font-family: 'Lato', sans-serif;
    font-size: 20px;*/
}
/*выделение блока, end*/
/*Акцент на номере (Пульсация)*/
.phone-highlight {
    font-size: 2em;
    font-weight: bold;
    color: #d32f2f; /* Красный, но спокойный */
    display: block;
    text-align: center;
    margin: 10px 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.phone-highlight {
    font-size: 2em;
    font-weight: bold;
    color: #d32f2f; /* Красный, но спокойный */
    display: block;
    text-align: center;
    margin: 10px 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
/*Акцент на номере (Пульсация)-end*/
.badge-24-7 {
    display: inline-block;
    background: #4caf50; /* Зеленый - символ работы и жизни */
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    vertical-align: middle;
    text-transform: uppercase;
}
/* --- СТИЛИ ДЛЯ ВАЖНЫХ СТАТЕЙ (ПСИХОЛОГИЧЕСКАЯ ПОМОЩЬ И ДР.) --- */
/* Контейнер текста для лучшей читаемости */
.article-text {
    line-height: 1.6;
    font-size: 17px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}
/* Кнопка "Экстренная помощь" в сайдбаре (справа) */
.emergency-button {
    display: block;
    background: #e9003a;
    color: #fff !important;
    text-align: center;
    padding: 15px 10px;
    margin-top: 20px;     /* ОТСТУП СВЕРХУ */
    margin-bottom: 20px;  /* ОТСТУП СНИЗУ */
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
    line-height: 1.2;
    transition: background 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.emergency-button:hover {
    background: #c30031; /* Темнее при наведении */
    text-decoration: none;
}

.emergency-button i {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}
/*КНОПКА СО ССЫЛКОЙ*/
.btn-steps {
    display: inline-block;
    background-color: #2e8b57; /* Ваш фирменный зеленый из меню */
    color: #fff !important;
    padding: 18px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px; /* Скругленная форма выглядит дружелюбнее */
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-steps:hover {
    background-color: #ffffff;
    color: #2e8b57 !important;
    border-color: #2e8b57;
    transform: translateY(-2px); /* Легкий эффект приподнимания */
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
}

.btn-steps i {
    margin-right: 10px;
}