:root {
    --bg: #fafcfa;
    --surface: #ffffff;
    --text: #1a2e1a;
    --text2: #3d5a3d;
    --muted: #6b8a6b;
    --border: rgba(30, 80, 30, 0.1);
    --green: #22a352;
    --green-light: #e8f5ec;
    --font: "Outfit", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

a {
    color: var(--green);
    text-decoration: none;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
    color: var(--text);
}

.brand .logo {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand .logo svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.back-link {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.back-link:hover {
    color: var(--green);
}

.legal-container {
    padding: 60px 0 100px;
}

h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
}

.last-updated {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 40px;
}

.content {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border);
}

h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 32px 0 16px;
    color: var(--text);
}

h2:first-child {
    margin-top: 0;
}

p {
    margin-bottom: 16px;
    color: var(--text2);
}

/* CSS-3'ten: ol de dahil */
ul,
ol {
    margin: 16px 0;
    padding-left: 24px;
}

li {
    margin-bottom: 8px;
    color: var(--text2);
}

strong {
    color: var(--text);
}

/* CSS-1'den: tablo stilleri */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}
th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
th {
    font-weight: 700;
    color: var(--text);
    background: var(--bg);
    width: 30%;
}
td {
    color: var(--text2);
}

/* CSS-3'ten: highlight box */
.highlight-box {
    padding: 24px;
    border-radius: 16px;
    margin: 24px 0;
}
.highlight-box.success {
    background: var(--green-light);
    border: 1px solid rgba(34, 163, 82, 0.2);
}
.highlight-box h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--green);
}
.highlight-box p {
    margin: 0;
    color: var(--text2);
}

footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-links a {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-copy {
    font-size: 13px;
    color: var(--muted);
}


.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 14px 28px;
    border-radius: 100px;
    background: var(--text);
    color: white;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 200;
}

header .nav-links{
    display: none;
}
header .nav-actions{
    display: none !important;
}

.values-section {
    padding: 50px 0 100px;
    background: white;
}
.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--text);
}
.section-desc {
    font-size: 17px;
    color: var(--text2);
    line-height: 1.7;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 800px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}
.value-card {
    padding: 32px;
    border-radius: 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    color: inherit;
    text-decoration: none;
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(34, 163, 82, 0.2);
}
.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--green);
}
.value-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text);
}
.value-card p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    background: var(--surface);
    color: var(--text);
    box-shadow: var(--shadow);
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn.primary {
    background: var(--green);
    color: white;
}
.btn.primary:hover {
    background: var(--green-dark);
}
.btn.outline {
    background: transparent;
    border: 1.5px solid var(--border2);
    box-shadow: none;
}
.btn.outline:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-light);
}
.btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.btn-icon svg {
    width: 20px;
    height: 20px;
}