/* Custom CSS for Privacy Policy Page */

/* Base styles */
html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
}

/* Prose styling for content sections */
.prose {
    line-height: 1.7;
}

.prose h2,
.prose h3,
.prose h4 {
    color: inherit;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-weight: 600;
}

.prose p {
    margin-bottom: 1.25em;
}

.prose ul {
    margin-bottom: 1.25em;
}

.prose a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.prose a:hover {
    text-decoration: underline;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* Responsive iframe styles */
iframe {
    max-width: 100%;
}

/* Animation for cards */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Print styles */
@media print {
    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    header, footer {
        display: none;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .prose {
        max-width: 100%;
        padding: 0;
    }

    a {
        text-decoration: underline;
    }

    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        font-weight: normal;
    }
}