.hero-gradient {
    background: #800000;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.pricing-card:hover {
    transform: scale(1.03);
}
body h1.h1 {font-size:36px !important;text-align: center;margin: 40px auto;}
ul.disc {
    margin: 20px;
}
ul.disc li {
    list-style-type: circle;
}
.politikaFooter a {
    display: block;
}

<style>
#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;
}
.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;
}
#policy-cookie-note {
    position: fixed;
    bottom: 0;
    background: rgb(128 0 0);
    color: #fff;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding: 20px;
}
#policy-cookie-note button[type="button"] {
    border: 1px solid #fff;
    padding: 5px 10px;
    border-radius: 5px;
}
@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;
    }
}
</style>