/* Override global scroll settings for this page */
html,
body {
    scroll-snap-type: none !important;
    height: auto !important;
    overflow-y: auto !important;
    scrollbar-width: auto !important;
    -ms-overflow-style: auto !important;
}

/* Webkit scrollbar override */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: block !important;
    width: 12px !important;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background-color: #888 !important;
    border-radius: 6px !important;
    border: 3px solid #f1f1f1 !important;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background-color: #555 !important;
}

/* CSS content similar to Gizlilik Politikası, reused for consistency */
.legal-page {
    padding: 120px 0 60px;
    background-color: #f9f9f9;
    min-height: 80vh;
}

.legal-page .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
}

.last-updated {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.legal-content li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}