:root {
  --bg: #F3F4F6;
  --panel: #FFFFFF;
  --panel-2: #F9FAFB;
  --line: #E5E7EB;
  --ink: #1F2937;
  --ink-dim: #6B7280;
  --teal: #0D9488;
  --teal-2: #14B8A6;
  --amber: #D97706;
  --green: #059669;
  --red: #DC2626;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
}

/* Ana sitenin navbar'iyla BIREBIR ayni (index.html / style.css'teki
   .navbar + body.light-theme override'lariyla ayni degerler). */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-container {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #1F2937;
  border-right: 3px solid #2D62FF;
  padding-right: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-details {
  display: flex;
  flex-direction: column;
}

.brand-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: #1F2937;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  color: #4B5563;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s;
}

.nav-item:hover,
.nav-item.active {
  color: #2D62FF;
}

.btn-nav-action {
  background: #2D62FF;
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(45, 98, 255, 0.3);
  transition: all 0.2s ease-in-out;
}

.btn-nav-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 98, 255, 0.5);
}

@media (max-width: 768px) {
  .navbar {
    position: relative;
    flex-direction: column;
    padding: 16px;
    gap: 12px;
    text-align: center;
    height: auto;
  }
  .nav-brand {
    justify-content: center;
    margin-bottom: 4px;
  }
  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
  }
  .nav-item {
    font-size: 13px;
    padding: 6px 10px;
  }
  .btn-nav-action {
    width: 100%;
    text-align: center;
    padding: 10px;
    margin-top: 4px;
  }
}

.wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 20px 80px;
}

.intro {
  text-align: center;
  margin-bottom: 28px;
}

.intro h2 {
  font-size: 1.6rem;
  margin: 0 0 8px;
}

.intro p {
  color: var(--ink-dim);
  font-size: 0.95rem;
  max-width: 620px;
  margin: 0 auto;
}

.qa-search {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: var(--sans);
  margin-bottom: 18px;
  background: var(--panel);
}

.qa-search:focus {
  outline: none;
  border-color: var(--teal);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.category-pill {
  font-family: var(--sans);
  font-size: 0.82rem;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink-dim);
  cursor: pointer;
}

.category-pill:hover {
  background: var(--panel-2);
}

.category-pill.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.qa-category-block {
  margin-bottom: 30px;
}

.qa-category-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  margin: 0 0 10px;
}

.qa-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.qa-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 15px 18px;
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.qa-chevron {
  color: var(--ink-dim);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.qa-item.open .qa-chevron {
  transform: rotate(180deg);
  color: var(--teal);
}

.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.qa-answer p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-dim);
}

.qa-answer a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

.qa-answer a:hover {
  text-decoration: underline;
}

.qa-empty {
  text-align: center;
  color: var(--ink-dim);
  padding: 40px 0;
  font-size: 0.9rem;
}

.footer-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-dim);
  margin-top: 20px;
}

/* Hero Banner Alarko Style */
.hero-banner {
  position: relative;
  width: 100%;
  height: 420px;
  background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px 10%;
  margin-bottom: 40px;
}
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.5) 100%);
}
.hero-breadcrumbs {
  position: relative;
  z-index: 1;
  position: absolute;
  top: 40px;
  left: 10%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.hero-breadcrumbs a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.hero-breadcrumbs a:hover {
  color: #38bdf8;
}
.hero-title {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .hero-banner {
    height: 300px;
    padding: 30px 20px;
    margin-bottom: 25px;
  }
  .hero-breadcrumbs {
    top: 25px;
    left: 20px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
}

/* --- Premium Navbar Styling (Synced from Main Page) --- */
.navbar {
  border-bottom: none !important;
  box-shadow: 0 4px 25px rgba(0,0,0,0.06) !important;
  position: relative;
  background: #ffffff !important;
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #f97316, #8b5cf6);
}
.nav-item {
  position: relative;
  font-weight: 600 !important;
  padding-bottom: 2px;
  color: #4B5563 !important;
}
.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #f97316, #8b5cf6);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-item:hover::after,
.nav-item.active::after {
  width: 70%;
}
.nav-item:hover,
.nav-item.active {
  color: #2D62FF !important;
}
.btn-nav-action {
  background: linear-gradient(135deg, #2563eb, #4f46e5) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 10px 26px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  border: none !important;
}
.btn-nav-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
}
