* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a:focus {
    outline: 2px solid #071f61;
    outline-offset: 2px;
}

img {
    max-width: 100%;
    height: auto;
}

.seo-content {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.seo-content h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #071f61;
}

.seo-content h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #071f61;
}

.seo-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #333;
}

.seo-content ul {
    list-style: none;
    padding-left: 0;
}

.seo-content ul li {
    padding: 8px 0;
    font-size: 16px;
    color: #333;
}

.seo-content ul li::before {
    content: "• ";
    color: #071f61;
}

.legal-page {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px 20px;
}

.legal-page h1 {
    font-size: 32px;
    color: #071f61;
    margin-bottom: 8px;
}

.legal-page .last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.legal-page section {
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 20px;
    color: #071f61;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
}

.legal-page ul {
    list-style: none;
    padding-left: 0;
}

.legal-page ul li {
    padding: 6px 0;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.legal-page ul li::before {
    content: "• ";
    color: #071f61;
}

/* Accordion (details/summary) - varsayılan ok işaretini gizle */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details > summary::marker {
    display: none;
}