/* ============================================================
   content-page.css — TEK TİP içerik sayfa tipografisi
   Tüm content/*.html ve services/*.php (secure_payment_page hariç)
   sayfaları bu kuralları paylaşır. index.html aestetiğine uyumlu.
   ============================================================ */

.content-page {
    max-width: 980px;
    margin: 30px auto 0;
    padding: 36px 20px 60px;
    color: #cbd5e1;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

.content-page .crumbs {
    font-size: 0.78rem;
    color: #94a3b8;
    margin-bottom: 16px;
}
.content-page .crumbs a {
    color: #fb923c;
    text-decoration: none;
}
.content-page .crumbs a:hover {
    text-decoration: underline;
}

.content-page h1 {
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1.18;
    color: #fff;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
}

.content-page .lead {
    font-size: 1.02rem;
    color: #cbd5e1;
    margin: 0 0 22px;
    line-height: 1.7;
}

.content-page h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #fbbf24;
    margin: 28px 0 12px;
    line-height: 1.25;
}

.content-page h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fb923c;
    margin: 20px 0 10px;
    line-height: 1.3;
}

.content-page p {
    color: #d1d5db;
    line-height: 1.75;
    margin: 8px 0 14px;
    font-size: 0.95rem;
}

.content-page p b,
.content-page p strong {
    color: #fcd34d;
    font-weight: 700;
}

.content-page ul,
.content-page ol {
    list-style: none;
    padding-left: 0;
    margin: 12px 0 20px;
}

.content-page ul li,
.content-page ol li {
    position: relative;
    padding: 6px 0 6px 24px;
    color: #d1d5db;
    line-height: 1.6;
    font-size: 0.95rem;
}

.content-page ul li::before {
    content: '\f3a5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 7px;
    color: #fb923c;
    font-size: 0.85rem;
}

.content-page ol {
    counter-reset: ord;
}
.content-page ol li {
    counter-increment: ord;
}
.content-page ol li::before {
    content: counter(ord) '.';
    position: absolute;
    left: 0;
    top: 6px;
    color: #fb923c;
    font-weight: 900;
    font-size: 0.9rem;
}

.content-page .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 20px 0;
}
.content-page .info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 12px;
    padding: 14px 16px;
}
.content-page .info-card h4 {
    color: #f59e0b;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.content-page .info-card p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.55;
}

.content-page .seo-cta {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    color: #0f172a;
    border-radius: 12px;
    font-weight: 900;
    text-decoration: none;
    font-size: 0.95rem;
    margin: 18px 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.content-page .seo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}
.content-page .seo-cta i {
    margin-right: 8px;
}

.content-page .related {
    margin-top: 38px;
    border-top: 1px solid rgba(245, 158, 11, 0.15);
    padding-top: 22px;
}
.content-page .related h2 {
    font-size: 1.2rem;
    margin-bottom: 14px;
}
.content-page .related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.content-page .related-links a {
    display: inline-block;
    padding: 7px 13px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #fcd34d;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.content-page .related-links a:hover {
    background: rgba(245, 158, 11, 0.18);
    color: #fff;
}

.content-page a {
    color: #fb923c;
    text-decoration: none;
}
.content-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content-page {
        padding: 20px 14px 40px;
    }
    .content-page h1 {
        font-size: 1.45rem;
    }
    .content-page h2 {
        font-size: 1.15rem;
    }
    .content-page h3 {
        font-size: 1rem;
    }
    .content-page p,
    .content-page ul li,
    .content-page ol li {
        font-size: 0.92rem;
    }
}

/* ============================================================
   FOOTER BOTTOM — index.html ile birebir aynı stil
   (Tüm content + servis sayfalarında ortak görünüm)
   ============================================================ */
footer .footer-bottom,
.footer-bottom{
  max-width:900px !important;
  margin:0 auto !important;
  padding:14px 16px 4px !important;
  text-align:center !important;
}
footer .footer-trust-row--compact,
.footer-trust-row--compact{display:flex !important;flex-wrap:wrap;align-items:center;justify-content:center;gap:10px;max-width:600px;margin:0 auto 10px !important;padding:8px 14px 10px;border:0 !important;text-align:center !important}
footer .footer-trust-row--compact img,
.footer-trust-row--compact img{height:22px !important;width:auto !important;max-width:60px !important;max-height:22px !important;background:#fff;border-radius:4px;padding:2px 4px;box-shadow:0 1px 4px rgba(0,0,0,.4);display:inline-block !important;vertical-align:middle !important}
footer .footer-trust-row--compact img.no-bg,
.footer-trust-row--compact img.no-bg{background:transparent !important;padding:0 !important;box-shadow:none !important}
footer .footer-bottom .copyright,
.footer-bottom .copyright{border-top:1px solid rgba(255,255,255,.08) !important;padding-top:10px !important;margin-top:4px !important;font-size:12px !important;color:#6b7280 !important;font-family:inherit !important;font-weight:400 !important;text-align:center !important;display:block !important}
.footer-bottom .copyright #year{font-weight:600 !important;color:#94a3b8 !important}
footer .footer-company,
.footer-company,
.footer-bottom .footer-company{font-size:11px !important;color:#94a3b8 !important;margin:4px auto 0 !important;font-weight:600 !important;letter-spacing:.2px !important;text-align:center !important;display:block !important;padding:0 8px !important}
footer .footer-disclaimer,
.footer-disclaimer,
.footer-bottom .footer-disclaimer{font-size:10.5px !important;color:#64748b !important;margin:6px auto 0 !important;line-height:1.5 !important;max-width:760px !important;padding:0 8px !important;font-weight:400 !important;text-align:center !important;display:block !important;word-wrap:break-word !important}
footer .footer-trust-row img,
.footer-trust-row img{height:22px !important;width:auto !important;max-width:60px !important;max-height:22px !important;display:inline-block !important;vertical-align:middle !important}

@media (max-width: 480px){
  .footer-trust-row--compact img{height:18px !important;max-width:50px !important;max-height:18px !important}
  .footer-trust-row--compact{gap:8px !important}
  .footer-trust-row img{height:18px !important;max-width:50px !important;max-height:18px !important}
  .footer-trust-row{gap:8px !important}
  .footer-company{font-size:10.5px !important}
  .footer-disclaimer{font-size:10px !important;padding:0 12px !important}
}
