*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:#102033;
  background:#f7f9fc;
}

.ankara-page{
  width:100%;
  overflow:hidden;
}

.ankara-hero{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
  max-width:1180px;
  margin:0 auto;
  padding:70px 20px;
}

.badge{
  display:inline-block;
  background:#ff8a00;
  color:#fff;
  padding:8px 16px;
  border-radius:50px;
  font-weight:700;
  margin-bottom:18px;
}

.ankara-hero h1{
  font-size:44px;
  line-height:1.12;
  margin:0 0 20px;
  color:#123d63;
}

.ankara-hero p{
  font-size:18px;
  line-height:1.7;
  color:#425466;
  margin-bottom:28px;
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:12px;
  font-weight:700;
  text-decoration:none;
}

.btn-primary{
  background:#123d63;
  color:#fff;
}

.btn-secondary{
  background:#fff;
  color:#123d63;
  border:1px solid #d8e1ec;
}

.hero-image img,
.why img{
  width:100%;
  height:auto;
  border-radius:24px;
  display:block;
  box-shadow:0 20px 45px rgba(18,61,99,.16);
}

.services{
  max-width:1180px;
  margin:0 auto;
  padding:40px 20px 70px;
  text-align:center;
}

.services h2,
.why h2,
.contact-section h2,
.faq h2{
  color:#123d63;
  font-size:34px;
  margin-bottom:12px;
}

.section-desc{
  color:#526477;
  font-size:17px;
  margin-bottom:32px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.service-card{
  background:#fff;
  padding:26px;
  border-radius:20px;
  text-align:left;
  text-decoration:none;
  color:#102033;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
  border:1px solid #edf1f6;
  transition:.25s ease;
}

.service-card:hover{
  transform:translateY(-5px);
  border-color:#ff8a00;
}

.service-card h3{
  color:#123d63;
  margin:0 0 12px;
  font-size:20px;
}

.service-card p{
  color:#526477;
  line-height:1.6;
  margin:0;
}

.why{
  max-width:1180px;
  margin:0 auto;
  padding:60px 20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.why p,
.why li{
  color:#526477;
  font-size:17px;
  line-height:1.7;
}

.why ul{
  padding-left:20px;
}

.contact-section{
  background:#123d63;
  padding:70px 20px;
}

.form-box{
  max-width:760px;
  margin:0 auto;
  background:#fff;
  border-radius:24px;
  padding:34px;
}

.form-box h2{
  margin-top:0;
}

.form-box p{
  color:#526477;
  line-height:1.6;
}

form{
  display:grid;
  gap:14px;
}

label{
  font-weight:700;
  color:#123d63;
}

input,
textarea{
  width:100%;
  padding:14px;
  border:1px solid #d9e2ec;
  border-radius:12px;
  font-size:16px;
  outline:none;
}

input:focus,
textarea:focus{
  border-color:#ff8a00;
}

button{
  border:0;
  background:#ff8a00;
  color:#fff;
  padding:15px 20px;
  border-radius:12px;
  font-size:17px;
  font-weight:700;
  cursor:pointer;
}

.faq{
  max-width:900px;
  margin:0 auto;
  padding:70px 20px;
}

details{
  background:#fff;
  border-radius:16px;
  padding:20px;
  margin-bottom:14px;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
}

summary{
  cursor:pointer;
  font-weight:700;
  color:#123d63;
}

details p{
  color:#526477;
  line-height:1.6;
}

/* MOBİL */
@media(max-width:900px){
  .ankara-hero,
  .why{
    grid-template-columns:1fr;
  }

  .ankara-hero{
    padding:44px 18px;
  }

  .ankara-hero h1{
    font-size:32px;
  }

  .ankara-hero p{
    font-size:16px;
  }

  .service-grid{
    grid-template-columns:1fr;
  }

  .services h2,
  .why h2,
  .contact-section h2,
  .faq h2{
    font-size:28px;
  }

  .form-box{
    padding:24px;
  }
}

@media(max-width:520px){
  .hero-buttons a{
    width:100%;
  }

  .ankara-hero h1{
    font-size:29px;
  }

  .badge{
    font-size:14px;
  }
}