#cookieSection {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f8f9fa;
    padding: 20px;
    border: 1px solid #ced4da9d;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    max-width: 400px;
}

#cookieSection.show {
    display: block;
}

#cookieTitle {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #333;
}

#cookieInfo {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
}

a {
    color: #000;
}

a:hover{
    color: #000;
    text-decoration: underline;
}

#acceptCookiesBtn {
    padding: 12px 32px;
    background: #000;
    border: none;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 10px #000;
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

#acceptCookiesBtn:hover {
    background-color: #0051a8;
}
