﻿.cookie-banner {
    position: fixed;
    bottom: 30px; 
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
    max-width: 650px;
    min-width: 340px;
    background: linear-gradient(to right, #f9e5d9, #ffd1dc);
    color: #7a4b41;
    padding: 15px 20px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    z-index: 9999;
    border-radius: 25px;
    gap: 16px; 
}

    .cookie-banner p {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 500;    
    }

    .cookie-banner a {
        color: #7a4b41;
        text-decoration: underline;
        margin-left: 5px;
    }

    .cookie-banner button {
        background-color: #7a4b41;
        color: #fff;
        border: none;
        border-radius: 50px;
        padding: 8px 18px;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

        .cookie-banner button:hover {
            background-color: #5a2e2d;
        }
.privacy-wrapper {
    max-width: 80%;
    width: 60%;
    margin: 5% auto;
    padding: 2.5%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    backdrop-filter: blur(5px);
}

    .privacy-wrapper h1,
    .privacy-wrapper h2,
    .privacy-wrapper h3 {
        color: black;
        margin-top: 2.5%;
        margin-bottom: 2%;
    }

    .privacy-wrapper ul {
        padding-left: 5%;
        margin-bottom: 2%;
    }

    .privacy-wrapper li {
        margin-bottom: 1.2%;
    }

    .privacy-wrapper a {
        color: #b76e79;
        text-decoration: underline;
    }

        .privacy-wrapper a:hover {
            color: #944b5c;
        }

.cookie-banner[style*="display: none"] {
    visibility: hidden !important;
    pointer-events: none !important;
}


@media (max-width: 768px) {
    .privacy-wrapper {
        width: 90% !important;
        margin: 30% auto 5% auto; 
        padding: 5%;
        font-size: 0.95rem;
        overflow: auto; 
        min-height: 90vh; 
        padding-bottom: 3rem;
    }

    .privacy-wrapper h1 {
        font-size: 6vw;
        text-align: center;
        margin-bottom: 4%;
    }

    .privacy-wrapper h2 {
        font-size: 4.5vw;
        margin-top: 5%;
        margin-bottom: 3%;
    }

    .privacy-wrapper p,
    .privacy-wrapper li {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .cookie-banner {
        width: 100%;
    }
}

