.cookie-card {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    max-width: 440px;
    padding: 32px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.282);
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.title {
    font-size: 20px;
    font-weight: 600;
    color: rgb(31, 41, 55);
}

.description {
    margin-top: 16px;
    font-size: 18px;
    line-height: 25px;
    color: rgb(75, 85, 99);
}

.actions a {
    font-size: 18px;
    color: rgb(59, 130, 246);
}

.description a:hover {
    text-decoration: underline;
}

.actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    gap: 16px;
    flex-shrink: 0;
}

.pref {
    font-size: 15px;
    line-height: 20px;
    color: rgb(31, 41, 55);
    text-decoration: underline;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.pref:hover {
    color: rgb(156, 163, 175);
}

.accept {
    font-size: 19px;
    line-height: 20px;
    background-color: rgb(17, 24, 39);
    font-weight: 400;
    border-radius: 24px;
    color: #fff;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: auto;
}

.accept:hover {
    background-color: rgb(55, 65, 81);
}




@media (max-width: 768px) {
    .cookie-card {
        font-size: 18px;
        max-width: 100%;
        padding: 24px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .title {
        font-size: 18px;
    }

    .description {
        font-size: 16px;
        line-height: 22px;
    }

    .actions a, .pref {
        font-size: 16px;
    }

    .accept {
        font-size: 17px;
        padding: 10px 20px;
        border-radius: 20px;
    }
}



