/* Temel Sıfırlama ve Yapılandırma */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Georgia', 'Palatino', serif;
    line-height: 1.75;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    font-size: 17px;
    min-height: 100vh;
}
.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 35px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
/* Başlık Stilleri */
h1 {
    font-size: 32px;
    color: #1e293b;
    text-align: center;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #0f172a, #334155);
    border-radius: 2px;
}
h2 {
    font-size: 24px;
    color: #0f172a;
    margin: 35px 0 18px 0;
    position: relative;
    padding-left: 25px;
    font-weight: 600;
    letter-spacing: -0.3px;
}
h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 35px;
    background: linear-gradient(180deg, #dc2626, #991b1b);
    border-radius: 3px;
}
h3 {
    font-size: 19px;
    color: #1e293b;
    margin: 25px 0 12px 0;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}
h3::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-size: 14px;
}
/* Paragraf Stilleri */
p {
    margin-bottom: 18px;
    text-align: justify;
    text-indent: 25px;
    line-height: 1.8;
    color: #1e293b;
    font-weight: 400;
}
/* Üst Kısım */
header {
    text-align: center;
    margin-bottom: 45px;
    padding: 30px 0;
    position: relative;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 8px;
    border: 1px solid #cbd5e1;
}
header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #64748b, transparent);
}
.subtitle {
    font-size: 19px;
    color: #475569;
    font-style: italic;
    margin-bottom: 12px;
    text-indent: 0;
    font-weight: 500;
}
.date {
    font-size: 15px;
    color: #64748b;
    text-indent: 0;
    font-weight: 500;
}
/* İçerik Tablosu */
.toc {
    background: #f8fafc;
    padding: 25px;
    margin-bottom: 35px;
    border-radius: 10px;
    border: 2px solid #cbd5e1;
    position: relative;
    overflow: hidden;
}
.toc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #991b1b, #7c2d12);
}
.toc h2 {
    margin-top: 0;
    margin-bottom: 18px;
    padding-left: 0;
    color: #0f172a;
}
.toc h2::before {
    display: none;
}
.toc ul {
    list-style: none;
    padding-left: 0;
}
.toc li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}
.toc li::before {
    content: '●';
    position: absolute;
    left: 8px;
    color: #dc2626;
    font-size: 12px;
}
.toc a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}
.toc a:hover {
    color: #dc2626;
    border-bottom-color: #dc2626;
}
/* Liste Stilleri */
ul,
ol {
    margin: 18px 0;
    padding-left: 45px;
}
li {
    margin-bottom: 10px;
    color: #1e293b;
    line-height: 1.6;
}
/* Tablo Stilleri */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 25px 0;
    font-size: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #cbd5e1;
}
th,
td {
    border: none;
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #cbd5e1;
}
th {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}
tr:nth-child(even) {
    background-color: #f8fafc;
}
tr:hover {
    background-color: #f1f5f9;
    transition: background-color 0.2s ease;
}
td {
    color: #1e293b;
    font-weight: 400;
}
/* SSS Bölümü */
.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}
.faq-item h3 {
    color: #0f172a;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
    padding-left: 0;
    font-weight: 600;
}
.faq-item h3::before {
    content: '❓';
    margin-right: 8px;
    color: #dc2626;
}
.faq-item p {
    text-indent: 0;
    margin-bottom: 0;
    color: #1e293b;
    line-height: 1.7;
}
.faq-item div[itemprop="text"] {
    color: #1e293b;
    font-weight: 400;
}
/* Bölüm Stilleri */
section {
    margin-bottom: 45px;
    page-break-inside: avoid;
    position: relative;
}
/* Vurgu Stilleri */
strong {
    color: #0f172a;
    font-weight: 700;
}
em {
    color: #dc2626;
    font-style: normal;
    font-weight: 600;
}
/* Alt Kısım */
footer {
    margin-top: 60px;
    padding: 25px;
    border-top: 2px solid #cbd5e1;
    text-align: center;
    font-size: 15px;
    color: #475569;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
footer p {
    text-indent: 0;
    margin-bottom: 8px;
    color: #475569;
}
footer strong {
    color: #0f172a;
}
/* Responsive Tasarım - Tablet ve Küçük Masaüstü */
@media (max-width: 1024px) {
    .container {
        max-width: 95%;
        padding: 25px;
        margin: 15px auto;
    }
    h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    h2 {
        font-size: 22px;
        margin: 30px 0 15px 0;
        padding-left: 20px;
    }
    h2::before {
        width: 5px;
        height: 30px;
    }
    table {
        font-size: 14px;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
    table thead,
    table tbody,
    table tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }
}
/* Mobil Uyumluluk - Tablet */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.6;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }
    .container {
        padding: 20px;
        margin: 10px;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        background: #ffffff;
    }
    h1 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 15px;
        padding-bottom: 12px;
        color: #0f172a;
    }
    h1::after {
        width: 80px;
        height: 3px;
    }
    h2 {
        font-size: 20px;
        margin: 25px 0 12px 0;
        padding-left: 18px;
        color: #0f172a;
    }
    h2::before {
        width: 4px;
        height: 25px;
    }
    h3 {
        font-size: 17px;
        margin: 20px 0 10px 0;
        padding-left: 12px;
        color: #1e293b;
    }
    .subtitle {
        font-size: 17px;
        line-height: 1.4;
        color: #475569;
    }
    .date {
        font-size: 14px;
        color: #64748b;
    }
    /* Tablo Responsive */
    table {
        font-size: 13px;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        border-radius: 6px;
    }
    table thead,
    table tbody,
    table tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }
    th,
    td {
        padding: 8px 6px;
        font-size: 12px;
        min-width: 80px;
    }
    th {
        font-size: 11px;
        letter-spacing: 0.3px;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        color: #ffffff;
    }
    td {
        color: #1e293b;
    }
    /* TOC Responsive */
    .toc {
        padding: 18px;
        margin-bottom: 25px;
        background: #f8fafc;
        border: 2px solid #cbd5e1;
    }
    .toc li {
        margin-bottom: 8px;
        padding-left: 20px;
        line-height: 1.4;
    }
    .toc a {
        font-size: 15px;
        line-height: 1.3;
        color: #0f172a;
    }
    /* Liste Responsive */
    ul,
    ol {
        padding-left: 25px;
        margin: 15px 0;
    }
    li {
        margin-bottom: 8px;
        line-height: 1.5;
        color: #1e293b;
    }
    /* Paragraf Responsive */
    p {
        text-indent: 12px;
        margin-bottom: 15px;
        line-height: 1.6;
        color: #1e293b;
    }
    /* FAQ Responsive */
    .faq-item {
        padding: 16px;
        margin-bottom: 20px;
        background: #ffffff;
        border: 2px solid #e2e8f0;
    }
    .faq-item h3 {
        font-size: 16px;
        padding-left: 0;
        color: #0f172a;
    }
    .faq-item p {
        color: #1e293b;
    }
    /* Header Responsive */
    header {
        margin-bottom: 35px;
        padding: 25px 0;
        background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    }
    /* Footer Responsive */
    footer {
        margin-top: 40px;
        padding: 20px;
        font-size: 14px;
        color: #475569;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    }
}
/* Mobil Uyumluluk - Küçük Ekranlar */
@media (max-width: 480px) {
    body {
        font-size: 15px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    }
    .container {
        padding: 15px;
        margin: 5px;
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        background: #ffffff;
    }
    h1 {
        font-size: 20px;
        line-height: 1.1;
        margin-bottom: 12px;
        padding-bottom: 10px;
        text-align: center;
        color: #0f172a;
    }
    h1::after {
        width: 60px;
        height: 2px;
    }
    h2 {
        font-size: 18px;
        margin: 20px 0 10px 0;
        padding-left: 15px;
        line-height: 1.2;
        color: #0f172a;
    }
    h2::before {
        width: 3px;
        height: 20px;
    }
    h3 {
        font-size: 16px;
        margin: 15px 0 8px 0;
        padding-left: 10px;
        line-height: 1.2;
        color: #1e293b;
    }
    .subtitle {
        font-size: 15px;
        line-height: 1.3;
        margin-bottom: 8px;
        color: #475569;
    }
    .date {
        font-size: 13px;
        color: #64748b;
    }
    /* Tablo Ultra Responsive */
    table {
        font-size: 11px;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        border-radius: 4px;
        margin: 15px 0;
    }
    th,
    td {
        padding: 6px 4px;
        font-size: 10px;
        min-width: 70px;
    }
    th {
        font-size: 9px;
        letter-spacing: 0.2px;
        text-transform: uppercase;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        color: #ffffff;
    }
    td {
        color: #1e293b;
    }
    /* TOC Ultra Responsive */
    .toc {
        padding: 15px;
        margin-bottom: 20px;
        background: #f8fafc;
    }
    .toc h2 {
        font-size: 16px;
        margin-bottom: 12px;
        padding-left: 0;
        color: #0f172a;
    }
    .toc li {
        margin-bottom: 6px;
        padding-left: 18px;
        line-height: 1.3;
    }
    .toc a {
        font-size: 14px;
        line-height: 1.2;
        color: #0f172a;
    }
    /* Liste Ultra Responsive */
    ul,
    ol {
        padding-left: 20px;
        margin: 12px 0;
    }
    li {
        margin-bottom: 6px;
        line-height: 1.4;
        font-size: 14px;
        color: #1e293b;
    }
    /* Paragraf Ultra Responsive */
    p {
        text-indent: 8px;
        margin-bottom: 12px;
        line-height: 1.5;
        font-size: 14px;
        color: #1e293b;
    }
    /* FAQ Ultra Responsive */
    .faq-item {
        padding: 12px;
        margin-bottom: 15px;
        background: #ffffff;
        border: 2px solid #e2e8f0;
    }
    .faq-item h3 {
        font-size: 15px;
        margin-bottom: 8px;
        padding-left: 0;
        line-height: 1.2;
        color: #0f172a;
    }
    .faq-item p {
        font-size: 13px;
        line-height: 1.4;
        color: #1e293b;
    }
    /* Header Ultra Responsive */
    header {
        margin-bottom: 25px;
        padding: 20px 0;
        background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    }
    /* Footer Ultra Responsive */
    footer {
        margin-top: 30px;
        padding: 15px;
        font-size: 13px;
        color: #475569;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    }
    footer p {
        margin-bottom: 6px;
        text-indent: 0;
        line-height: 1.3;
        color: #475569;
    }
    /* Section Spacing */
    section {
        margin-bottom: 30px;
    }
}
/* Çok Küçük Ekranlar (320px ve altı) */
@media (max-width: 320px) {
    .container {
        padding: 12px;
        margin: 3px;
        background: #ffffff;
    }
    h1 {
        font-size: 18px;
        color: #0f172a;
    }
    h2 {
        font-size: 16px;
        padding-left: 12px;
        color: #0f172a;
    }
    h3 {
        font-size: 15px;
        padding-left: 8px;
        color: #1e293b;
    }
    table {
        font-size: 10px;
    }
    th,
    td {
        padding: 4px 3px;
        font-size: 9px;
        min-width: 60px;
    }
    th {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        color: #ffffff;
    }
    td {
        color: #1e293b;
    }
    .toc {
        padding: 12px;
        background: #f8fafc;
    }
    .toc a {
        font-size: 13px;
        color: #0f172a;
    }
    p,
    li {
        font-size: 13px;
        color: #1e293b;
    }
    .faq-item {
        padding: 10px;
        background: #ffffff;
    }
    .faq-item h3 {
        color: #0f172a;
    }
    .faq-item p {
        color: #1e293b;
    }
}
/* Yazdırma Uyumluluğu */
@media print {
    body {
        font-size: 11pt;
        line-height: 1.5;
        background: white;
        color: #000000;
    }
    .container {
        max-width: none;
        padding: 0;
        box-shadow: none;
        background: white;
        border: none;
    }
    h1 {
        font-size: 16pt;
        page-break-after: avoid;
        color: #000000;
    }
    h2 {
        font-size: 14pt;
        page-break-after: avoid;
        color: #000000;
    }
    h3 {
        font-size: 12pt;
        page-break-after: avoid;
        color: #000000;
    }
    p, li {
        color: #000000;
    }
    section {
        page-break-inside: avoid;
    }
    table {
        page-break-inside: avoid;
        border: 1px solid #000000;
    }
    th {
        background: #000000 !important;
        color: #ffffff !important;
    }
    td {
        color: #000000;
    }
    .toc {
        page-break-after: always;
        background: white;
        border: 1px solid #000000;
    }
    .faq-item {
        background: white;
        border: 1px solid #000000;
        color: #000000;
    }
    footer {
        color: #000000;
        background: white;
    }
}