h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  
  margin-top: 28px;
  margin-bottom: 12px;
  
  position: relative;
  padding-left: 14px;
  
  letter-spacing: 0.3px;
}

h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  
  width: 4px;
  height: 70%;
  
  background: linear-gradient(180deg, #4facfe, #00f2fe);
  border-radius: 2px;
}
h3 {
  transition: all 0.2s ease;
}

h3:hover {
  color: #4facfe;
}

h2{
  font-size: 22px;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
  color: #e2e8f0;
}

h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;   /* 🔥 BU KRİTİK */
  height:3px;
  background: linear-gradient(90deg,#3b82f6,#22c55e);
  border-radius:2px;
  
}.apple-footer{
  width:100%;
  background:#020617;
  padding:40px 20px;
  margin-top:60px;
  text-align:center;
}

/* linkler */
.footer-links a{
  color:rgba(148,163,184,0.8);
  margin:0 14px;
  font-size:13px;
  text-decoration:none;
  transition:0.2s;
}

.footer-links a:hover{
  color:white;
}

/* ince çizgi (Apple hissi burada gelir) */
.footer-divider{
  width:80%;
  height:1px;
  background:rgba(255,255,255,0.08);
  margin:20px auto;
}

/* copyright */
.footer-copy{
  font-size:12px;
  color:rgba(148,163,184,0.6);
}
.related a{
  display:block;
  padding:10px;
  margin:5px 0;
  background:#0f172a;
  border-radius:8px;
  color:#3b82f6;
  transition:0.2s;
}

.related a:hover{
  background:#1e293b;
  transform:translateX(4px);
}

.faq{
  max-width: 700px;
  margin: 30px auto;
}

.faq-item{
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question{
  width: 100%;
  background: none;
  border: none;
  color: white;
  text-align: left;
  padding: 15px 10px;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover{
  color: #3b82f6;
}

.arrow{
  transition: 0.3s;
}

.faq-item.active .arrow{
  transform: rotate(180deg);
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #94a3b8;
  font-size: 14px;
  padding: 0 10px;
}

.faq-item.active .faq-answer{
  max-height: 200px;
  padding-bottom: 10px;
}
