/* Override CSS for PC Version - High Specificity */

/* PC versiyonu için hero başlık boyutu - yüksek öncelik */
@media (min-width: 769px) {
  body .hero .hero-content .hero-title {
    font-size: 2.25rem !important; /* section-title ile aynı boyut */
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.01em !important;
    color: #1f2937 !important; /* gray-800 */
  }
}

/* Daha büyük PC ekranları için */
@media (min-width: 1200px) {
  body .hero .hero-content .hero-title {
    font-size: 2.5rem !important; /* Biraz daha büyük */
  }
}

/* Çok büyük PC ekranları için */
@media (min-width: 1536px) {
  body .hero .hero-content .hero-title {
    font-size: 3rem !important; /* En büyük ekranlar için */
  }
}