.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
    font-family: var(--body-font);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    padding: 10px 0;
    flex: 1;
    min-width: 60%;
    font-size: 14px;
    color: #333;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    padding: 10px 0;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

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

.cookie-btn.decline {
    background-color: #f5f5f5;
    color: #666;
}

.cookie-btn.decline:hover {
    background-color: #e5e5e5;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
} 