/* Privacy Page Styles */

.privacy-hero {
    background: linear-gradient(135deg, #530966 0%, #7a1fa3 100%);
    padding: 4rem 0 3rem;
    margin-top: 70px;
    margin-bottom: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

    .privacy-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;
    }

    .privacy-hero h1 {
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
    }

    .privacy-hero p {
        font-size: 1.1rem;
        opacity: 0.95;
        position: relative;
        z-index: 1;
    }

.privacy-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;
}

.privacy-toc {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid #530966;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .privacy-toc h3 {
        color: #530966;
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

    .privacy-toc ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .privacy-toc li {
        padding: 0.5rem 0;
    }

    .privacy-toc a {
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        padding: 0.5rem;
        border-radius: 4px;
    }

        .privacy-toc a:hover {
            color: #530966;
            background: rgba(83, 9, 102, 0.05);
            padding-left: 1rem;
        }

        .privacy-toc a i {
            margin-right: 0.75rem;
            color: #C6A877;
        }

.privacy-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;
    position: relative;
    z-index: 0;
}

    .privacy-section:hover {
        box-shadow: 0 4px 20px rgba(83, 9, 102, 0.1);
        transform: translateY(-2px);
    }

    .privacy-section h2 {
        color: #530966;
        font-size: 1.75rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
    }

        .privacy-section h2 i {
            margin-right: 1rem;
            color: #C6A877;
            font-size: 1.5rem;
        }

    .privacy-section h3 {
        color: #530966;
        font-size: 1.3rem;
        font-weight: 600;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .privacy-section p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 1rem;
    }

    .privacy-section ul {
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
    }

        .privacy-section ul li {
            color: #555;
            line-height: 1.8;
            margin-bottom: 0.5rem;
            position: relative;
        }

            .privacy-section ul li::marker {
                color: #C6A877;
            }

.privacy-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid #C6A877;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

    .privacy-highlight strong {
        color: #530966;
    }

.privacy-contact {
    background: linear-gradient(135deg, #530966 0%, #7a1fa3 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 0;
}

    .privacy-contact h3 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .privacy-contact p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        opacity: 0.95;
    }

    .privacy-contact a {
        color: white;
        text-decoration: underline;
        font-weight: 600;
    }

        .privacy-contact a:hover {
            color: #C6A877;
        }

.data-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
}

    .data-table table {
        width: 100%;
        min-width: 600px;
    }

    .data-table th {
        background: #530966;
        color: white;
        padding: 1rem;
        text-align: left;
        font-weight: 600;
    }

    .data-table td {
        padding: 1rem;
        border-bottom: 1px solid #e0e0e0;
    }

    .data-table tr:hover {
        background: #f8f9fa;
    }

.scroll-to-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;
    box-shadow: 0 4px 12px rgba(83, 9, 102, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1020;
}

    .scroll-to-top.visible {
        opacity: 1;
    }

    .scroll-to-top:hover {
        background: #7a1fa3;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(83, 9, 102, 0.4);
    }

/* Responsive */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 2rem 0 1.5rem;
    }

        .privacy-hero h1 {
            font-size: 2rem;
        }

    .privacy-section {
        padding: 1.5rem;
    }

        .privacy-section h2 {
            font-size: 1.5rem;
        }

    .privacy-toc {
        padding: 1.5rem;
    }

    .data-table {
        font-size: 0.9rem;
    }

    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}