/* Page title */
.page-title {
  position: relative;
  padding: 100px 0 80px;
  background-size: cover;
  background-position: center;
  position: relative;
}


.page-title .container {
  position: relative;
  z-index: 2;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.page-title h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: #f7a81b;
}

.page-title p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 700px;
}

/* Breadcrumbs */
.breadcrumbs {
  margin-top: 25px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li {
  display: inline-block;
  position: relative;
  padding-right: 15px;
  margin-right: 10px;
}

.breadcrumbs ol li::after {
  content: '/';
  position: absolute;
  right: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs ol li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.breadcrumbs ol li:last-child::after {
  display: none;
}

.breadcrumbs ol li a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs ol li a:hover {
  color: #f7a81b;
}

.breadcrumbs ol li.current {
  color: #f7a81b;
  font-weight: 500;
}

/* Sayfa içerik bölümü */
.page-content {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}

.page-content::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: #fff;
  border-radius: 50px 50px 0 0;
}

.page-content .content-wrapper {
  position: relative;
  z-index: 1;
}

/* İlgili sayfalar bölümü */
.related-pages {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.related-pages h3 {
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
  padding-left: 15px;
  border-left: 4px solid #0072c6;
}

.related-pages .page-card {
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.related-pages .page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-pages .page-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-pages .page-card .card-content {
  padding: 20px;
}

.related-pages .page-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.related-pages .page-card h4 a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-pages .page-card h4 a:hover {
  color: #0072c6;
}

.related-pages .page-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.related-pages .page-card .read-more {
  display: inline-block;
  padding: 8px 20px;
  background: transparent;
  border: 1px solid #0072c6;
  color: #0072c6;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-pages .page-card .read-more:hover {
  background: #0072c6;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .page-title {
    padding: 80px 0 60px;
  }
  
  .page-title h1 {
    font-size: 36px;
  }
  
  .page-content {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-title {
    padding: 60px 0 40px;
  }
  
  .page-title h1 {
    font-size: 30px;
  }
  
  .page-title p {
    font-size: 16px;
  }
  
  .page-content {
    padding: 50px 0;
  }
  
  .related-pages .page-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .page-title h1 {
    font-size: 26px;
  }
  
  .breadcrumbs {
    margin-top: 15px;
  }
  
  .breadcrumbs ol {
    font-size: 13px;
  }
}
