@media (max-width: 768px) {
    .cookies-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookies-buttons {
        justify-content: center;
    }
    
    .privacy-content {
        margin: 20px;
        width: calc(100% - 40px);
    }
}

@media (max-width: 480px) {
    .cookies-banner {
        padding: 15px;
    }
    
    .cookies-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookies-buttons .btn {
        width: 100%;
    }
}