/* legal.css — KVKK & Çerez Politikası */

/* ═══ İÇERİK ═══ */
.legal-content { background: #fff; padding: 90px 0 130px; }
.legal-content-inner {
    max-width: 760px; margin: 0 auto; padding: 0 40px;
}

.legal-section { margin-bottom: 52px; padding-bottom: 52px; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.legal-section h2 {
    font-size: 22px; font-weight: 700; color: var(--ink);
    letter-spacing: -0.015em; margin-bottom: 16px;
}
.legal-section h3 {
    font-size: 16px; font-weight: 700; color: var(--ink);
    margin: 24px 0 10px;
}
.legal-section p {
    font-size: 15px; color: var(--text); line-height: 1.7;
    margin-bottom: 14px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
    padding-left: 0; margin: 14px 0 0;
    list-style: none;
    display: flex; flex-direction: column; gap: 10px;
}
.legal-section ul li {
    font-size: 15px; color: var(--text); line-height: 1.6;
    padding-left: 20px; position: relative;
}
.legal-section ul li::before {
    content: ""; position: absolute; left: 0; top: 10px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--red);
}
.legal-address {
    font-style: normal; font-size: 15px; color: var(--text);
    line-height: 1.8; margin-top: 16px;
    padding: 24px 28px; background: var(--surface);
    border-left: 3px solid var(--red); border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.legal-address a { color: var(--ink); font-weight: 500; transition: color .2s; }
.legal-address a:hover { color: var(--red); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 980px) {
    .legal-content-inner { padding: 0 24px; }
    .legal-content { padding: 60px 0 90px; }
}
