/* Start custom CSS *//* ANA KAPSAYICI */
.land-page {
  font-family: inherit;
  color: #1f2937;
  line-height: 1.6;
}

/* HERO */
.land-hero {
  background: linear-gradient(135deg, #0a3d62, #1e5aa8);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.land-hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.land-hero p {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 30px;
  opacity: 0.95;
}

/* BUTONLAR */
.land-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.land-btn.primary {
  background: #facc15;
  color: #000;
}

.land-btn.primary:hover {
  background: #fde047;
  transform: translateY(-2px);
}

.land-btn.secondary {
  background: #0a3d62;
  color: #fff;
}

.land-btn.secondary:hover {
  background: #08314f;
}

/* BÖLÜMLER */
.land-section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}

.land-section.gray {
  background: #f8fafc;
}

.land-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.land-section p {
  font-size: 16px;
  max-width: 900px;
  margin: 0 auto 16px;
  text-align: center;
  color: #475569;
}

/* GRID */
.land-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.land-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.land-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.land-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.land-box p {
  font-size: 15px;
  color: #4b5563;
  text-align: left;
}

/* ADIMLAR */
.land-steps {
  max-width: 700px;
  margin: 40px auto 0;
  padding-left: 20px;
}

.land-steps li {
  margin-bottom: 14px;
  font-size: 16px;
}

/* LİSTE */
.land-list {
  max-width: 600px;
  margin: 30px auto 0;
  padding-left: 20px;
}

.land-list li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* CTA */
.land-cta {
  background: #facc15;
  padding: 70px 20px;
  text-align: center;
}

.land-cta h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.land-cta p {
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 30px;
}

/* MOBİL */
@media (max-width: 768px) {
  .land-hero h1 {
    font-size: 28px;
  }

  .land-hero p {
    font-size: 16px;
  }

  .land-section h2 {
    font-size: 24px;
  }
}/* End custom CSS */