.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(44, 94, 46, 0.2);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    z-index: 10000;
    font-family: 'Lato', sans-serif;
    animation: slideUp 0.5s ease-out forwards;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #2c5e2e;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #2c5e2e;
    transition: all 0.3s ease;
}

.cookie-content a:hover {
    color: #1a3c1b;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background-color: #2c5e2e;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.2s;
}

.btn-cookie-accept:hover {
    background-color: #1a3c1b;
    transform: translateY(-2px);
}

.btn-cookie-decline {
    background: none;
    border: none;
    color: #666;
    padding: 10px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.btn-cookie-decline:hover {
    color: #333;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}