<?
require($_SERVER["DOCUMENT_ROOT"]."/bitrix/header.php");
$APPLICATION->SetTitle("Title");
?>.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 620px;
    width: 95%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 22px 26px;
    z-index: 99999;
    font-size: 15px;
    line-height: 1.5;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-consent p {
    margin: 0 0 18px 0;
    color: #333;
}

.cookie-consent .buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-consent button {
    padding: 11px 26px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-consent .btn-accept {
    background-color: #2d6a2d;
    color: #fff;
}

.cookie-consent .btn-accept:hover {
    background-color: #1e4d1e;
}

.cookie-consent .btn-settings {
    background-color: #f4f4f4;
    color: #333;
}

.cookie-consent .btn-settings:hover {
    background-color: #e9e9e9;
}<?require($_SERVER["DOCUMENT_ROOT"]."/bitrix/footer.php");?>