.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 15px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-content p {
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

@media (min-width: 768px) {
    .cookie-content p {
        margin: 0 20px 0 0;
        flex: 1;
    }
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.cookie-info-button, .cookie-accept-button {
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.cookie-info-button {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.cookie-info-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-accept-button {
    background-color: #4CAF50;
    border: none;
    color: #fff;
}

.cookie-accept-button:hover {
    background-color: #45a049;
}

.cookie-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-icon.visible {
    display: flex;
}

.cookie-icon a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-icon svg {
    width: 24px;
    height: 24px;
}