#policy-cookie-note {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    z-index: 9999;
    padding: 15px 0;
    font-family: Arial, sans-serif;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease-in-out;
}
.policy-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.policy-cookie-text {
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.acceptence-area-wrap {
    background: white;
    padding: 10px;    
}

.acceptence-area-wrap  span.wpcf7-list-item {
    margin-left: 0;
    margin-right: 10px;
}

.acceptence-area-wrap {
    display: flex;
    align-items: flex-start;    
}

.policy-cookie-action button {
    color: black;
}

.policy-cookie-text a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}
.policy-cookie-text a:hover {
    color: #ccc;
}
.policy-cookie-action {
    margin-left: 20px;
}

form.wpcf7-form .wpcf7-response-output {
    background: white;
    padding: 6px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .policy-cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .policy-cookie-action {
        margin-left: 0;
        margin-top: 15px;
    }
}