.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    background-color: #f4f4f4;
    color: #000;
    padding: 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: justify;
    border-radius: 10px;
}

.cookie-banner p {
    margin: 0;
    font-size: 16px;
}

.cookie-policy-link {
    color: #071a4c;
    text-decoration: underline !important;
}

.cookie-policy-link:hover {
    text-decoration: none;
}

.cookie-buttons {
    margin-top: 10px;
}

.cookie-btn {
    margin-top: 5px;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.cookie-btn.decline {
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
}

.cookie-btn.settings:hover {
    background-color: #f0f0f0;
}

.cookie-btn.accept {
    background-color: #000;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #333;
}

@media (max-width: 1280px) {
    .cookie-banner {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        width: 80%;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        width: 100%;
        border-radius: 0px;
        margin-bottom: 25px;
    }
}