/* Основные стили */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 1.35rem; /* Увеличен размер шрифта */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif; /* Изменен шрифт для заголовков */
    color: #007BFF; /* Цвет заголовков */
    font-weight: 800; /* Жирный шрифт для заголовков */
    font-size: 2rem; /* Увеличен размер шрифта для заголовков */
}

.main-block {
    background: url('../images/main-bg.jpg') no-repeat center center/cover;
    height: 100vh;
}
.hero-title {
    font-size: 55px;
    text-transform: uppercase;
}
.hero-subtitle {
    font-size: 25px;
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 39;
}
.card-header h5 button {
    font-size: 17px;
    width: 100%;
    text-align: left;
}
.navbar-toggler {
    width: auto;
}
button:hover {
    color: #fff!important;
}
.swiper-slide img {
    width: 200px;
}
.swiper-container {
    position: relative;
}
.popup form, .popup div {
    background: #fff;
    padding: 0.5rem;
    border-radius: 5px;
    position: relative;
    max-width: 500px;
    width: 100%;
}

.popup .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}

button {
    font-size: 1.25rem; /* Увеличен размер шрифта для кнопок */
    background-color: #dc3545; /* Цвет кнопок */
    border: none;
    padding: 0.5rem 1rem;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    width: 280px; /* Увеличен размер кнопок */
    margin: 0.5rem 0;
}

button:hover {
    background-color: #c82333; /* Темный оттенок для hover эффекта */
}

.navbar {
    position: fixed;
    width: 100%;
    z-index: 29;
}
.policy {
    padding-top: 9rem!important;
}
.cookie-consent{position:fixed;left:16px;bottom:16px;z-index:9999;max-width:420px;background:#1f1f1f;color:#fff;border-radius:12px;box-shadow:0 10px 25px rgba(0,0,0,.35);padding:16px;display:none}
.cookie-consent.show{display:block}
.cookie-consent a{color:#ffd166;text-decoration:underline}
.cookie-actions{display:flex;gap:8px;justify-content:flex-end;margin-top:10px}
.cookie-consent .btn{border-radius:999px;padding:.5rem 1rem}
@media(max-width:576px){.cookie-consent{left:8px;right:8px;max-width:none}}