.burger-menu {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.burger-menu .menu a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 1em;
}

.menu-header {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1.2em;
}
.burger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.burger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.burger-menu .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f8f9fa; /* Светлый фон, как на картинке */
    border: 1px solid #dee2e6; /* Светлая рамка */
    padding: 10px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Мягкая тень */
    border-radius: 20px; /* Небольшое скругление углов */
    width: 200px; /* Ширина меню */
}

.burger-menu .menu a {
    /* ... остальные стили ... */
    font-family: 'Open Sans', sans-serif;
    font-weight: 700; /* Жирный */
    font-size: 1em;
}

.menu-header {
    /* ... остальные стили ... */
    font-family: 'Open Sans', sans-serif;
    font-weight: 700; /* Жирный */
    font-size: 1.2em;
}

}

.burger-menu .menu a:hover {
    background-color: #e9ecef; /* Светлый фон при наведении */
}

.burger-menu.active .menu {
    display: block;
}

/* Измененный стиль крестика */
.burger-menu.active .burger-icon span {
    background-color: transparent; /* Убираем цвет фона */
}

.burger-menu.active .burger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.burger-menu.active .burger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Стили для заголовка меню */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
    font-family: 'Roboto', sans-serif; /*  ШРИФТ ДЛЯ ЗАГОЛОВКА  */
    font-weight: 500; /*  ТОЛЩИНА ДЛЯ ЗАГОЛОВКА  */
    font-size: 1.2em; /*  РАЗМЕР ДЛЯ ЗАГОЛОВКА  */
    color: #343a40;
}

/* Стили для кнопки закрытия */
.close-button {
    cursor: pointer;
    font-size: 1.5em;
    color: #6c757d; /* Серый цвет */
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif; /* ШРИФТ ДЛЯ КРЕСТИКА  */
}

.close-button:hover {
    color: #495057; /* Более темный цвет при наведении */
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
}

header {
    background-color: #eee;
    padding: 20px;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid #ccc;
}

section:first-of-type {
    border-top: none;
}

.phone-link {
    color: #15a90a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    font-family: 'Open Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 5px;
    transition: color 0.3s ease, background-color 0.3s ease;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); /* Добавлена тень */
}


}

/* Убираем цвет и фон при нажатии и после посещения */
.phone-link:active,
.phone-link:visited {
    color: #007bff; /* Возвращаем исходный синий цвет текста */
    background-color: transparent; /* Делаем фон прозрачным */
    text-decoration: none; /* Убираем подчеркивание, если оно появляется */
    outline: none; /* Убираем outline, если он появляется */
}

.phone-link .phone-icon {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    background-image: url(../ppp.jpg);
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    background-color: rgba(0, 123, 255, 0.1);
    padding: 3px;
    box-sizing: border-box;
}

/* Иконка трубки */
.phone-link .phone-icon {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    background-image: url(../ppp.jpg); /* Возвращаем ваше изображение */
    background-size: cover; /* Важно, чтобы изображение заполняло круг */
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%; /* Делаем иконку круглой */
    box-sizing: border-box;

    /* Эффект объема с помощью box-shadow */
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1),  /* Тонкая обводка */
                0 2px 4px rgba(0,0,0,0.3);   /* Тень */
}