/* Cookies Policy Page Styles */

.cookies-hero {
    background: linear-gradient(135deg, #530966 0%, #7a1fa3 100%);
    padding: 4rem 0 3rem;
    margin-top: 79px;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

    .cookies-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(198, 168, 119, 0.1) 0%, transparent 50%);
        pointer-events: none;
        z-index: -1;
    }

    .cookies-hero h1 {
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
    }

.cookies-updated {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.cookies-intro-box {
    background: linear-gradient(135deg, #f8f0ff 0%, #ffffff 100%);
    border-left: 4px solid #C6A877;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .cookies-intro-box p {
        color: #555;
        line-height: 1.8;
        margin: 0;
    }

.cookies-section {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .cookies-section:hover {
        box-shadow: 0 4px 20px rgba(83, 9, 102, 0.1);
        transform: translateY(-2px);
    }

    .cookies-section h2 {
        color: #530966;
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

    .cookies-section p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 0.75rem;
    }

        .cookies-section p:last-child {
            margin-bottom: 0;
        }

.cookies-date {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    padding: 2rem 0 4rem;
}

.cookies-scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #530966;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(83, 9, 102, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1020;
}

    .cookies-scroll-top.visible {
        opacity: 1;
    }

    .cookies-scroll-top:hover {
        background: #7a1fa3;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(83, 9, 102, 0.4);
    }

@media (max-width: 768px) {
    .cookies-hero {
        padding: 2rem 0 1.5rem;
    }

        .cookies-hero h1 {
            font-size: 2rem;
        }

    .cookies-section {
        padding: 1.5rem;
    }

    .cookies-scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}
