/* ================================================================
   VDSSATINAL.ORG — Akademik / Eğitim Teması
   Konsept: Forest Green + Warm Cream — Bilgi, güven, akademi
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --bg:       #0d1208;
  --bg2:      #111a0b;
  --panel:    #16230e;
  --panel2:   #1a2c12;
  --accent:   #4ade80;
  --accent2:  #22c55e;
  --accent3:  #86efac;
  --warm:     #fbbf24;
  --text:     #e8f5e2;
  --text-dim: #7a9e6a;
  --border:   rgba(74,222,128,0.12);
  --radius:   12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.85; overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(34,197,94,0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(74,222,128,0.03) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent2), var(--accent), var(--warm));
  z-index: 9999; width: 0;
}

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,18,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
}

.header-container {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 10px; }

.logo-dot {
  width: 8px; height: 28px; background: var(--accent2);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(34,197,94,0.4);
}

.logo-text {
  font-family: 'Lora', serif;
  font-size: 1.1rem; font-weight: 700; color: #fff; letter-spacing: 0.5px;
}

.nav-links { display: flex; gap: 0.3rem; }
.nav-links a {
  color: var(--text-dim); text-decoration: none;
  padding: 0.4rem 1rem; border-radius: 6px;
  font-size: 0.9rem; font-weight: 500; transition: all 0.2s;
}
.nav-links a:hover { color: var(--accent); background: rgba(74,222,128,0.08); }

.cta-button {
  background: rgba(34,197,94,0.15);
  border: 1px solid var(--accent2);
  color: var(--accent) !important;
  padding: 0.5rem 1.3rem; border-radius: 8px;
  text-decoration: none; font-size: 0.9rem; font-weight: 600;
  transition: all 0.3s;
}
.cta-button:hover { background: var(--accent2); color: var(--bg) !important; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }

/* Two-column hero */
.hero-intro {
  display: grid; grid-template-columns: 1fr;
  padding: 7rem 2rem 5rem;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.25);
  color: var(--accent3); padding: 0.35rem 1rem; border-radius: 6px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 1.5rem;
}

.hero-intro h1 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 700; color: #fff;
  line-height: 1.3; margin-bottom: 1.5rem;
}
.hero-intro h1 span { color: var(--accent); }

.subtitle { color: var(--text-dim); font-size: 1.05rem; max-width: 620px; margin: 0 auto 2.5rem; }

.hero-stats {
  display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Lora', serif;
  font-size: 2rem; font-weight: 700; color: var(--accent); display: block;
}
.stat-label { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.2rem; }

.content-block { margin: 2rem 0 6rem; }

.section {
  background: linear-gradient(145deg, var(--panel), var(--panel2));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 3rem; margin-bottom: 2rem;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.section::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--accent2), var(--warm), transparent);
}
.section:hover { border-color: rgba(74,222,128,0.25); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

.section-number {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  color: var(--warm); margin-bottom: 0.5rem; letter-spacing: 1px;
}

.section h2 {
  font-family: 'Lora', serif;
  font-size: 1.6rem; font-weight: 700; color: #fff;
  margin-bottom: 1.5rem; line-height: 1.35;
}

.section img {
  width: 100%; height: 320px; object-fit: cover;
  border-radius: 10px; margin: 1.5rem 0;
  border: 1px solid var(--border);
}

.section p { color: var(--text-dim); font-size: 1rem; margin-bottom: 1.2rem; line-height: 1.9; text-align: justify; }

a { color: var(--accent); text-decoration: none; font-weight: 600; }
a:hover { color: var(--accent3); text-decoration: underline; }

.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; margin-top: 4rem; }
.footer-container { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.footer-col h4 { font-family: 'Lora', serif; color: var(--accent); font-size: 1rem; font-weight: 700; margin-bottom: 1.2rem; }
.footer-col a { display: block; color: var(--text-dim); text-decoration: none; margin-bottom: 0.5rem; font-size: 0.88rem; transition: all 0.2s; font-weight: 400; }
.footer-col a:hover { color: var(--accent); }
.footer-desc { color: var(--text-dim); font-size: 0.88rem; line-height: 1.7; margin-top: 0.8rem; }
.footer-bottom { text-align: center; font-size: 0.82rem; color: var(--text-dim); }

@media (max-width: 768px) {
  .header-container { flex-direction: column; gap: 1rem; }
  .section { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .nav-links { display: none; }
}

/* ==========================================
   MIGRATED INLINE STYLES
   ========================================== */
/* Base & Reset */
    :root {
      --accent: #84cc16;
      --accent-dark: #65a30d;
      --accent-light: #ecfccb;
      --dark: #0f172a;
      --dark-light: #1e293b;
      --light: #f8fafc;
      --border: #e2e8f0;
      --text: #334155;
      --text-muted: #64748b;
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--text);
      background-color: var(--light);
      line-height: 1.6;
    }

    /* Progress Bar */
    .progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 4px;
      background-color: var(--accent);
      width: 0%;
      z-index: 9999;
      transition: width 0.1s ease-out;
    }

    /* Header Styles */
    header {
      background-color: var(--dark);
      color: white;
      padding: 15px 5%;
      position: sticky;
      top: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 800;
      font-size: 1.4rem;
      text-decoration: none;
      color: white;
    }

    .logo-dot {
      width: 12px;
      height: 12px;
      background-color: var(--accent);
      border-radius: 50%;
      display: inline-block;
    }

    .nav-links {
      display: flex;
      gap: 20px;
      list-style: none;
    }

    .nav-links a {
      color: #cbd5e1;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--accent);
    }

    .header-cta {
      background-color: var(--accent);
      color: white;
      padding: 8px 18px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.2s;
    }

    .header-cta:hover {
      background-color: var(--accent-dark);
    }

    /* Hero Intro */
    .hero-intro {
      background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
      color: white;
      padding: 80px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero-tag {
      display: inline-block;
      background-color: rgba(132, 204, 22, 0.15);
      color: var(--accent);
      padding: 6px 16px;
      border-radius: 20px;
      font-weight: 600;
      font-size: 0.85rem;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
      border: 1px solid rgba(132, 204, 22, 0.3);
    }

    .hero-intro h1 {
      font-size: 2.8rem;
      line-height: 1.2;
      max-width: 900px;
      margin: 0 auto 20px auto;
      font-weight: 800;
    }

    .hero-intro h1 span {
      color: var(--accent);
    }

    .hero-intro .subtitle {
      font-size: 1.25rem;
      color: #94a3b8;
      max-width: 700px;
      margin: 0 auto 40px auto;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 40px;
    }

    .stat-item {
      text-align: center;
    }

    .stat-val {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--accent);
      display: block;
      margin-bottom: 5px;
    }

    .stat-lbl {
      font-size: 0.9rem;
      color: #94a3b8;
    }

    /* Content Block & Article Layout */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 5%;
    }

    .content-block {
      display: flex;
      gap: 40px;
    }

    .sidebar {
      width: 25%;
      position: sticky;
      top: 100px;
      height: fit-content;
      background: white;
      padding: 20px;
      border-radius: 8px;
      border: 1px solid var(--border);
    }

    .sidebar h3 {
      margin-bottom: 15px;
      font-size: 1.1rem;
      color: var(--dark);
      border-bottom: 2px solid var(--accent);
      padding-bottom: 8px;
    }

    .sidebar ul {
      list-style: none;
    }

    .sidebar li {
      margin-bottom: 10px;
    }

    .sidebar a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
      display: block;
    }

    .sidebar a:hover {
      color: var(--accent-dark);
      font-weight: 600;
    }

    article {
      width: 75%;
    }

    @media (max-width: 992px) {
      .content-block {
        flex-direction: column;
      }
      .sidebar {
        width: 100%;
        position: static;
        margin-bottom: 30px;
      }
      article {
        width: 100%;
      }
    }

    /* Section Styling */
    .section {
      background: white;
      padding: 35px;
      border-radius: 12px;
      border: 1px solid var(--border);
      margin-bottom: 40px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
      scroll-margin-top: 100px;
    }

    .section-number {
      display: inline-block;
      background-color: var(--accent-light);
      color: var(--accent-dark);
      font-weight: 700;
      font-size: 0.85rem;
      padding: 4px 12px;
      border-radius: 4px;
      margin-bottom: 15px;
      text-transform: uppercase;
    }

    .section h2 {
      font-size: 1.8rem;
      color: var(--dark);
      margin-bottom: 20px;
      font-weight: 700;
      line-height: 1.3;
    }

    .section img {
      width: 100%;
      max-height: 450px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 25px;
      display: block;
      border: 1px solid var(--border);
    }

    .section p {
      font-size: 1rem;
      color: var(--text);
      margin-bottom: 20px;
      text-align: justify;
    }

    .section-cta {
      margin-top: 25px;
      text-align: right;
    }

    /* Custom classes configured with Lime accent */
    .winner-box {
      border: 2px solid var(--accent);
      background-color: rgba(132, 204, 22, 0.04);
      padding: 25px;
      border-radius: 8px;
      margin: 25px 0;
    }

    .cta-primary {
      background-color: var(--accent);
      color: white !important;
      padding: 10px 24px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      transition: background-color 0.2s;
      border: none;
    }

    .cta-primary:hover {
      background-color: var(--accent-dark);
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      margin: 25px 0;
    }

    .compare-table th {
      background-color: var(--accent);
      color: white;
      padding: 12px 15px;
      font-weight: 600;
      text-align: left;
      font-size: 0.95rem;
    }

    .compare-table td {
      padding: 12px 15px;
      border-bottom: 1px solid var(--border);
      font-size: 0.9rem;
      color: var(--text);
    }

    .compare-table tr:nth-child(even) {
      background-color: var(--light);
    }

    .feature-list {
      list-style: none;
      margin: 20px 0;
    }

    .feature-list li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 12px;
      font-size: 0.95rem;
    }

    .feature-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--accent);
      font-weight: 800;
      font-size: 1.1rem;
    }

    .tip-box {
      border-left: 4px solid var(--accent);
      background-color: rgba(132, 204, 22, 0.08);
      padding: 20px;
      margin: 25px 0;
      border-radius: 0 8px 8px 0;
      font-size: 0.95rem;
      color: #3f6212;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
      padding: 20px 0;
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-item h3 {
      font-size: 1.15rem;
      color: var(--dark);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .faq-item p {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-bottom: 0;
      line-height: 1.6;
    }

    .rating-bar {
      background-color: #cbd5e1;
      height: 8px;
      border-radius: 4px;
      margin-top: 6px;
      overflow: hidden;
    }

    .rating-bar-fill {
      background-color: var(--accent);
      height: 100%;
      border-radius: 4px;
    }

    /* Footer */
    footer {
      background-color: var(--dark);
      color: #e2e8f0;
      padding: 60px 5% 30px 5%;
      font-size: 0.9rem;
      border-top: 4px solid var(--accent);
    }

    .footer-columns {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto 40px auto;
    }

    .footer-col h4 {
      color: white;
      font-size: 1.1rem;
      margin-bottom: 20px;
      border-bottom: 2px solid var(--accent);
      padding-bottom: 8px;
      display: inline-block;
    }

    .footer-col p {
      line-height: 1.8;
      color: #94a3b8;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li {
      margin-bottom: 10px;
    }

    .footer-col a {
      color: #cbd5e1;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: var(--accent);
    }

    .footer-bottom {
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 30px;
      color: #64748b;
    }

