@import url('https://fonts.googleapis.com/css2?family=Inclusive+Sans&display=swap');

/* Header.css'teki .content-page üst boşluğunu bu sayfada sıfırla */
.content-page { padding-top: 0 !important; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.service-details { background: #000; color: #fff; padding: 160px 0 3rem; }

.layout { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: start; }

.sidebar { position: sticky; top: 160px; }
.service-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.service-link { display: flex; align-items: center; gap: 10px; padding: 0.9rem 1rem; background: #111; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; text-decoration: none; transition: border-color .2s ease, transform .2s ease; }
.service-link:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.service-link.active { border-color: #fff; box-shadow: 0 8px 20px rgba(255,255,255,0.08); }

.content { background: #111; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 1.5rem; }
.service-title { display: flex; align-items: center; gap: 10px; font-size: 1.6rem; margin: 0 0 1rem 0; }
.cover { width: 100%; border-radius: 10px; overflow: hidden; margin-bottom: 1rem; }
.cover img { width: 100%; height: 300px; object-fit: cover; display: block; }
.paragraph { color: #ddd; line-height: 1.8; margin: 1rem 0; }

.details-cta { margin-top: 1.5rem; }
.cta { display: inline-flex; align-items: center; gap: 10px; border: 2px solid #fff; color: #fff; border-radius: 30px; text-decoration: none; padding: 0.8rem 1.6rem; transition: all .3s ease; }
.cta:hover { background: #fff; color: #000; transform: translateY(-2px); }

@media (max-width: 1024px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 768px) {
  .service-details { padding-top: 68px; }
  .sidebar { top: 68px; }
}


