body {
      font-family: 'Roboto', sans-serif;
      background: #f0f2f5;
      color: #333;
      scroll-behavior: smooth;
    }
    .blog-detail {
      background: #fff;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .blog-detail img {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 1rem;
    }
	.pricing-card {
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      background: #fff;
      border: none;
    }
    .pricing-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    .pricing-card .card-header {
      background: linear-gradient(90deg, #ff6f61, #ff9a76);
      color: #fff;
      font-weight: 500;
      text-transform: uppercase;
      padding: 1rem;
      font-size: 1.2rem;
    }
    .pricing-card .card-body {
      padding: 2rem;
    }
    .pricing-card .card-title {
      font-size: 2.5rem;
      font-weight: 700;
    }
	
    /* Sticky Navbar */
    .navbar {
      transition: background-color 0.3s, padding 0.3s;
      background-color: rgba(0, 0, 0, 0.75);
    }
    .navbar.sticky {
      background-color: rgba(0, 0, 0, 0.95);
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
    }
    .navbar .nav-link {
      font-weight: 500;
      transition: color 0.3s;
    }
    .navbar .nav-link:hover {
      color: #ff6f61;
    }
    /* Hero Bölümü */
    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
      background: #000;
    }
    .hero video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: 0;
      transform: translate(-50%, -50%);
      filter: brightness(0.6);
    }
    .hero .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
      color: #fff;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      letter-spacing: 2px;
      animation: fadeInUp 1s ease-in-out;
    }
    .hero p {
      font-size: 1.3rem;
      margin: 1rem 0 2rem;
      animation: fadeInUp 1.2s ease-in-out;
    }
    .hero .btn-hero {
      font-size: 1.1rem;
      padding: 0.75rem 2rem;
      border-radius: 30px;
      transition: transform 0.3s;
    }
    .hero .btn-hero:hover {
      transform: scale(1.05);
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    /* Bölüm Başlıkları */
    .section-title {
      margin: 60px 0 40px;
      text-align: center;
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      color: #444;
      position: relative;
    }
    .section-title::after {
      content: "";
      width: 120px;
      height: 4px;
      background: linear-gradient(90deg, #ff6f61, #ff9a76);
      display: block;
      margin: 15px auto 0;
      border-radius: 2px;
    }
    /* Özellikler / Neden Bizi Tercih Etmelisiniz? Bölümü */
    .features-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .feature-item {
      flex: 1 1 30%;
      background: #fff;
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      text-align: center;
    }
    .feature-item h3 {
      margin-top: 1rem;
      font-size: 1.5rem;
    }
    .feature-item p {
      font-size: 1rem;
      color: #666;
    }
    /* Hizmetler Bölümü */
    .service-card {
      background: #fff;
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      margin-bottom: 1rem;
    }
    .service-card h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }
    .service-card p {
      color: #555;
      margin-bottom: 1rem;
    }
    .service-features {
      list-style: none;
      padding-left: 0;
      margin-bottom: 1rem;
    }
    .service-features li {
      margin-bottom: 0.5rem;
      color: #666;
    }
    /* Karşılaştırma Tablosu */
    .service-comparison-table th,
    .service-comparison-table td {
      vertical-align: middle;
      text-align: center;
    }
    /* Güven & Garantiler Bölümü */
    .trust-item {
      background: #fff;
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    }
    .trust-item h4 {
      margin-top: 1rem;
      font-size: 1.25rem;
    }
    .trust-item p {
      font-size: 0.95rem;
      color: #666;
    }
    /* Çağrı (CTA) Bölümü */
    .cta-content {
      text-align: center;
      padding: 2rem;
      border-radius: 10px;
    }
    .cta-content h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    .cta-content p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }
    /* Müşteri Yorumları */
    .testimonial {
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      background: #fff;
      margin-bottom: 1rem;
      text-align: center;
    }
    .testimonial p {
      font-style: italic;
      color: #555;
    }
    .testimonial h6 {
      margin-top: 1rem;
      font-size: 1rem;
      color: #333;
    }
    /* Sıkça Sorulan Sorular */
    .faq-item h3 {
      font-size: 1.25rem;
      color: #444;
    }
    .faq-answer {
      color: #666;
      font-size: 1rem;
    }
    /* Responsive İyileştirmeler */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      .hero p {
        font-size: 1rem;
      }
      .section-title {
        font-size: 2.5rem;
      }
      .features-list {
        flex-direction: column;
      }
    }
	
	.blog-slider-section {
	  padding: 40px 20px;
	  background-color: #f5f5f5;
	  text-align: center;
	}

	.section-title {
	  margin-bottom: 30px;
	  font-size: 24px;
	}

	.blog-card {
	  background: white;
	  border-radius: 12px;
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	  padding: 20px;
	  height: 100%;
	  transition: transform 0.3s ease;
	}

	.blog-card:hover {
	  transform: scale(1.03);
	}
