/* GLASSMORPHISM HİZMET KUTULARI */
.service-item {
  background: rgba(255,255,255,0.55) !important;
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  border: 1.5px solid #e3f0ff !important;
  box-shadow: 0 4px 18px rgba(24,91,181,0.08), 0 2px 8px rgba(67,161,255,0.10);
}
.service-item:hover, .service-item:focus-within {
  background: rgba(227,240,255,0.85) !important;
  border: 2px solid #43a1ff !important;
  box-shadow: 0 8px 32px rgba(24,91,181,0.18), 0 2px 8px rgba(67,161,255,0.10);
}

/* Animasyonlu başlıklar */
.animated-title {
  background: linear-gradient(90deg, #185bb5 0%, #43a1ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-emphasis-color: transparent;
  animation: gradient-move 2.5s linear infinite alternate;
}
@keyframes gradient-move {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Micro-interactions for buttons */
.btn, .btn-secondary {
  transition: transform 0.13s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
}
.btn:active, .btn-secondary:active {
  transform: scale(0.97);
  box-shadow: 0 1px 4px rgba(24,91,181,0.13);
}

/* Koyu mod desteği */
@media (prefers-color-scheme: dark) {
  body {
    background: #181f2a;
    color: #e3f0ff;
  }
  header, .modal-content, .service-item {
    background: rgba(24,31,42,0.92) !important;
    color: #e3f0ff !important;
  }
  .service-item {
    border: 1.5px solid #2b7cff !important;
  }
  .btn, .btn-secondary {
    background: #2b7cff !important;
    color: #fff !important;
    border: none !important;
  }
  .btn-secondary {
    background: #181f2a !important;
    color: #43a1ff !important;
    border: 2px solid #43a1ff !important;
  }
  .modal-content {
    background: #232b3a !important;
    color: #e3f0ff !important;
  }
}

/* Footer glassmorphism ve detaylar */
footer {
  backdrop-filter: blur(6px) saturate(1.1);
  -webkit-backdrop-filter: blur(6px) saturate(1.1);
  background: linear-gradient(90deg, #185bb5cc 0%, #43a1ffcc 100%) !important;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 18px rgba(24,91,181,0.10);
}
/* HİZMET KUTULARI ANİMASYONLARI */
.service-item {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1), box-shadow 0.2s, border 0.2s;
}
.service-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 8px 32px rgba(24,91,181,0.18), 0 2px 8px rgba(67,161,255,0.10);
  border: 2px solid #43a1ff;
  background: linear-gradient(120deg,#e3f0ff 60%,#f7faff 100%);
  transform: translateY(-6px) scale(1.025);
  transition: box-shadow 0.2s, border 0.2s, background 0.3s, transform 0.3s;
  z-index: 2;
}
@media (max-width: 600px) {
  .service-item:hover, .service-item:focus-within {
    transform: scale(1.01);
    box-shadow: 0 2px 12px rgba(24,91,181,0.10);
  }
}
/* GENEL AYARLAR */
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7f9fb;
  color: #222;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8vw;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #2b7cff;
  letter-spacing: 1px;
}

/* MENÜ */
.main-nav {
  width: 100%;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.main-nav ul li a {
  font-weight: 500;
  font-size: 1.1rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  display: block;
  color: #2b7cff;
  background: none;
  transition: background 0.2s, color 0.2s;
}

.main-nav ul li a.active,
.main-nav ul li a:hover {
  color: #185bb5;
  border-bottom: 2px solid #2b7cff;
  background: #e3f0ff;
}

/* HERO BÖLÜMÜ */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px 8vw 48px 8vw;
  background: linear-gradient(90deg, #e3f0ff 60%, #f7f9fb 100%);
  flex-wrap: wrap;
}

.hero-content {
  max-width: 520px;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: #2b7cff;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #333;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}

.btn, .btn-secondary {
  display: inline-block;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 30px;
  padding: 13px 30px;
  transition: background 0.2s, color 0.2s, border 0.2s;
}

.btn {
  background: #2b7cff;
  color: #fff;
  box-shadow: 0 2px 8px rgba(43,124,255,0.08);
}

.btn:hover {
  background: #185bb5;
}

.btn-secondary {
  background: #fff;
  color: #2b7cff;
  border: 2px solid #2b7cff;
}

.btn-secondary:hover {
  background: #2b7cff;
  color: #fff;
}

.hero-image img {
  width: 340px;
  max-width: 90vw;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(43,124,255,0.10);
}

/* HİZMETLER */
.services {
  padding: 40px 8vw 32px 8vw;
  background: #fff;
  text-align: center;
  border-radius: 18px;
  margin: 24px auto 24px auto;
  max-width: 950px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.services h2 {
  font-size: 1.7rem;
  color: #2b7cff;
  margin-bottom: 28px;
  font-weight: 700;
}

.service-list {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-item {
  background: #f7f9fb;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
  padding: 28px 20px;
  max-width: 300px;
  min-width: 200px;
  margin-bottom: 18px;
  transition: transform 0.2s;
}

.service-item:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 24px rgba(43,124,255,0.10);
}

.service-item h3 {
  color: #185bb5;
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 600;
}

.service-item p {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
}

/* HAKKIMIZDA KISA */
.about-short {
  padding: 48px 8vw 48px 8vw;
  background: #e3f0ff;
  text-align: center;
  border-radius: 18px;
  margin: 32px auto 24px auto;
  max-width: 900px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.about-short h2 {
  color: #2b7cff;
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.about-short p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 18px;
  line-height: 1.7;
}

/* MODAL (Sizi Arayalım Formu) */
.modal {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0,0,0,0.3);
}

.modal-content {
  background: #fff;
  margin: 60px auto;
  padding: 32px 24px 24px 24px;
  border-radius: 14px;
  max-width: 400px;
  position: relative;
  box-shadow: 0 8px 32px rgba(43,124,255,0.12);
}

.close {
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 1.7rem;
  color: #2b7cff;
  cursor: pointer;
}

.modal-content h2 {
  margin-top: 0;
  color: #2b7cff;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.modal-content label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 14px;
  border: 1px solid #c7d6f7;
  border-radius: 7px;
  font-size: 1rem;
  font-family: inherit;
  background: #f7f9fb;
  resize: none;
}

.modal-content button {
  width: 100%;
}

/* SABİT WHATSAPP ve TELEFON SİMGELERİ */
.fixed-icons {
  position: fixed;
  right: 24px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 300;
}

.fixed-icons a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 2px 8px rgba(43,124,255,0.18);
  transition: background 0.2s, transform 0.2s;
}

.fixed-icons .whatsapp {
  background: #25d366;
}

.fixed-icons .whatsapp:hover {
  background: #1ebe57;
  transform: scale(1.08);
}

.fixed-icons .phone {
  background: #2b7cff;
}

.fixed-icons .phone:hover {
  background: #185bb5;
  transform: scale(1.08);
}

/* FOOTER */
footer {
  background: #2b7cff;
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-size: 1rem;
  margin-top: 32px;
}

/* MOBİL UYUMLULUK */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    padding: 32px 4vw 32px 4vw;
  }
  .hero-content, .hero-image {
    max-width: 100%;
  }
  header {
    flex-direction: column;
    gap: 18px;
    padding: 18px 4vw;
  }
  /* Menü alta sabit */
  .main-nav {
    width: 100vw;
    position: fixed;
    left: 0;
    bottom: 0;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(43,124,255,0.08);
    z-index: 999;
  }
  .main-nav ul {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    display: flex;
  }
  .main-nav ul li {
    flex: 1;
    text-align: center;
  }
  .main-nav ul li a {
    display: block;
    padding: 14px 0 12px 0;
    font-size: 1.1rem;
    border-bottom: none;
    border-top: 2px solid transparent;
    color: #2b7cff;
    background: none;
    transition: background 0.2s, color 0.2s;
  }
  .main-nav ul li a.active,
  .main-nav ul li a:hover {
    background: #e3f0ff;
    color: #185bb5;
    border-top: 2px solid #2b7cff;
  }
  /* İçerik menüyle çakışmasın diye boşluk bırak */
  main, .hero, .services, .about-short {
    margin-bottom: 70px;
  }
  .fixed-icons {
    bottom: 120px;
  }
}
/* İletişim Sayfası için özel stiller */

.iletisim-container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin: 40px auto 0 auto;
  max-width: 950px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
  padding: 32px 24px;
}

.iletisim-bilgileri {
  flex: 1;
  min-width: 260px;
  max-width: 400px;
  background: #f7f9fb;
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 2px 8px rgba(43,124,255,0.04);
  margin-bottom: 18px;
}

.iletisim-bilgileri h3 {
  color: #2b7cff;
  font-size: 1.2rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.iletisim-bilgileri p, .iletisim-bilgileri a {
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.iletisim-bilgileri a {
  color: #2b7cff;
  text-decoration: underline;
  transition: color 0.2s;
}
.iletisim-bilgileri a:hover {
  color: #185bb5;
}

.iletisim-bilgileri i {
  margin-right: 8px;
  font-size: 1.1em;
  vertical-align: middle;
}

/* İletişim Formu */
#contactForm {
  flex: 1;
  min-width: 260px;
  max-width: 400px;
  background: #f7f9fb;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(43,124,255,0.06);
  margin-top: 0;
}

#contactForm label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
  text-align: left;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 14px;
  border: 1px solid #c7d6f7;
  border-radius: 7px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  resize: none;
  box-sizing: border-box;
}

#contactForm button {
  width: 100%;
  background: #2b7cff;
  color: #fff;
  padding: 13px 0;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

#contactForm button:hover {
  background: #185bb5;
}

/* Başlık ve açıklama */
.iletisim-baslik {
  background: #e3f0ff;
  text-align: center;
  border-radius: 16px;
  margin: 32px auto 0 auto;
  max-width: 900px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
  padding: 32px 8vw 18px 8vw;
}

.iletisim-baslik h2 {
  color: #2b7cff;
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.iletisim-baslik p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Mobil uyumluluk */
@media (max-width: 900px) {
  .iletisim-container {
    flex-direction: column;
    gap: 0;
    padding: 18px 4vw;
    max-width: 100%;
    border-radius: 10px;
  }
  .iletisim-bilgileri, #contactForm {
    max-width: 100%;
    min-width: 0;
    margin-bottom: 18px;
  }
  .iletisim-baslik {
    padding: 18px 4vw 10px 4vw;
    max-width: 100%;
    border-radius: 10px;
  }
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7f9fb;
  color: #222;
}

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8vw;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #2b7cff;
  letter-spacing: 1px;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.main-nav ul li a {
  font-weight: 500;
  font-size: 1.1rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  display: block;
  color: #2b7cff;
  background: none;
  transition: background 0.2s, color 0.2s;
}

.main-nav ul li a.active,
.main-nav ul li a:hover {
  color: #185bb5;
  border-bottom: 2px solid #2b7cff;
  background: #e3f0ff;
}

.italya-hero {
  background: linear-gradient(90deg, #e3f0ff 60%, #f7f9fb 100%);
  padding: 48px 8vw 32px 8vw;
  text-align: center;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.italya-hero h1 {
  color: #2b7cff;
  font-size: 2.2rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.italya-hero p {
  color: #333;
  font-size: 1.15rem;
  margin-bottom: 0;
  line-height: 1.7;
}

.italya-content {
  background: #fff;
  max-width: 900px;
  margin: 32px auto;
  padding: 40px 32px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.italya-content h2 {
  color: #2b7cff;
  font-size: 1.4rem;
  margin-top: 32px;
  margin-bottom: 14px;
  font-weight: 700;
}

.italya-content ul {
  text-align: left;
  margin-bottom: 18px;
  padding-left: 20px;
}

.italya-content li {
  margin-bottom: 10px;
  font-size: 1.08rem;
  color: #333;
  line-height: 1.6;
}

.italya-cta {
  text-align: center;
  margin-top: 32px;
}

.btn {
  background: #2b7cff;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(43,124,255,0.08);
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background: #185bb5;
}

footer {
  background: #2b7cff;
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-size: 1rem;
  margin-top: 32px;
}

/* Mobil uyumluluk */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 18px;
    padding: 18px 4vw;
  }
  .main-nav ul {
    flex-direction: row;
    gap: 0;
    background: #fff;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    box-shadow: 0 -2px 12px rgba(43,124,255,0.08);
    z-index: 999;
    justify-content: space-around;
  }
  .main-nav ul li {
    flex: 1;
    text-align: center;
  }
  .main-nav ul li a {
    display: block;
    padding: 14px 0 12px 0;
    font-size: 1.1rem;
    border-bottom: none;
    border-top: 2px solid transparent;
    color: #2b7cff;
    background: none;
    transition: background 0.2s, color 0.2s;
  }
  .main-nav ul li a.active,
  .main-nav ul li a:hover {
    background: #e3f0ff;
    color: #185bb5;
    border-top: 2px solid #2b7cff;
  }
  .italya-hero, .italya-content {
    padding: 18px 4vw;
    max-width: 100%;
    border-radius: 10px;
  }
  .italya-content {
    margin-bottom: 70px;
  }
}
/* Hakkımızda Sayfası için özel stiller */

.about-short {
  padding: 48px 8vw 48px 8vw;
  background: #e3f0ff;
  text-align: center;
  border-radius: 18px;
  margin: 32px auto 24px auto;
  max-width: 900px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.about-short h2 {
  color: #2b7cff;
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.about-short p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 18px;
  line-height: 1.7;
}

.services {
  padding: 40px 8vw 32px 8vw;
  background: #fff;
  text-align: center;
  border-radius: 18px;
  margin: 24px auto 24px auto;
  max-width: 950px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.services h2 {
  font-size: 1.7rem;
  color: #2b7cff;
  margin-bottom: 28px;
  font-weight: 700;
}

.service-list {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-item {
  background: #f7f9fb;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
  padding: 28px 20px;
  max-width: 300px;
  min-width: 200px;
  margin-bottom: 18px;
  transition: transform 0.2s;
}

.service-item:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 24px rgba(43,124,255,0.10);
}

.service-item h3 {
  color: #185bb5;
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 600;
}

.service-item p {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
}

/* Mobil uyumluluk */
@media (max-width: 900px) {
  .about-short, .services {
    padding: 28px 4vw 28px 4vw;
    max-width: 100%;
    border-radius: 10px;
  }
  .service-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7f9fb;
  color: #222;
}

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8vw;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #2b7cff;
  letter-spacing: 1px;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.main-nav ul li a {
  font-weight: 500;
  font-size: 1.1rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  display: block;
  color: #2b7cff;
  background: none;
  transition: background 0.2s, color 0.2s;
}

.main-nav ul li a.active,
.main-nav ul li a:hover {
  color: #185bb5;
  border-bottom: 2px solid #2b7cff;
  background: #e3f0ff;
}

.rusya-hero {
  background: linear-gradient(90deg, #e3f0ff 60%, #f7f9fb 100%);
  padding: 48px 8vw 32px 8vw;
  text-align: center;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.rusya-hero h1 {
  color: #2b7cff;
  font-size: 2.2rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.rusya-hero p {
  color: #333;
  font-size: 1.15rem;
  margin-bottom: 0;
  line-height: 1.7;
}

.rusya-content {
  background: #fff;
  max-width: 900px;
  margin: 32px auto;
  padding: 40px 32px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.rusya-content h2 {
  color: #2b7cff;
  font-size: 1.4rem;
  margin-top: 32px;
  margin-bottom: 14px;
  font-weight: 700;
}

.rusya-content ul {
  text-align: left;
  margin-bottom: 18px;
  padding-left: 20px;
}

.rusya-content li {
  margin-bottom: 10px;
  font-size: 1.08rem;
  color: #333;
  line-height: 1.6;
}

.rusya-content hr {
  border: none;
  border-top: 1px solid #c7d6f7;
  margin: 32px 0;
}

footer {
  background: #2b7cff;
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-size: 1rem;
  margin-top: 32px;
}

/* Mobil uyumluluk */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 18px;
    padding: 18px 4vw;
  }
  .main-nav ul {
    flex-direction: row;
    gap: 0;
    background: #fff;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    box-shadow: 0 -2px 12px rgba(43,124,255,0.08);
    z-index: 999;
    justify-content: space-around;
  }
  .main-nav ul li {
    flex: 1;
    text-align: center;
  }
  .main-nav ul li a {
    display: block;
    padding: 14px 0 12px 0;
    font-size: 1.1rem;
    border-bottom: none;
    border-top: 2px solid transparent;
    color: #2b7cff;
    background: none;
    transition: background 0.2s, color 0.2s;
  }
  .main-nav ul li a.active,
  .main-nav ul li a:hover {
    background: #e3f0ff;
    color: #185bb5;
    border-top: 2px solid #2b7cff;
  }
  .rusya-hero, .rusya-content {
    padding: 18px 4vw;
    max-width: 100%;
    border-radius: 10px;
  }
  .rusya-content {
    margin-bottom: 70px;
  }
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7f9fb;
  color: #222;
}

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8vw;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #2b7cff;
  letter-spacing: 1px;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.main-nav ul li a {
  font-weight: 500;
  font-size: 1.1rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  display: block;
  color: #2b7cff;
  background: none;
  transition: background 0.2s, color 0.2s;
}

.main-nav ul li a.active,
.main-nav ul li a:hover {
  color: #185bb5;
  border-bottom: 2px solid #2b7cff;
  background: #e3f0ff;
}

.misir-hero {
  background: linear-gradient(90deg, #e3f0ff 60%, #f7f9fb 100%);
  padding: 48px 8vw 32px 8vw;
  text-align: center;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.misir-hero h1 {
  color: #2b7cff;
  font-size: 2.1rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.misir-hero p {
  color: #333;
  font-size: 1.15rem;
  margin-bottom: 0;
  line-height: 1.7;
}

.misir-content {
  background: #fff;
  max-width: 900px;
  margin: 32px auto;
  padding: 40px 32px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.misir-content h2 {
  color: #2b7cff;
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 14px;
  font-weight: 700;
}

.misir-content ul,
.misir-content ol {
  text-align: left;
  margin-bottom: 18px;
  padding-left: 20px;
}

.misir-content li {
  margin-bottom: 10px;
  font-size: 1.08rem;
  color: #333;
  line-height: 1.6;
}

.misir-content p {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 8px;
}

footer {
  background: #2b7cff;
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-size: 1rem;
  margin-top: 32px;
}

/* Mobil uyumluluk */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 18px;
    padding: 18px 4vw;
  }
  .main-nav ul {
    flex-direction: row;
    gap: 0;
    background: #fff;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    box-shadow: 0 -2px 12px rgba(43,124,255,0.08);
    z-index: 999;
    justify-content: space-around;
  }
  .main-nav ul li {
    flex: 1;
    text-align: center;
  }
  .main-nav ul li a {
    display: block;
    padding: 14px 0 12px 0;
    font-size: 1.1rem;
    border-bottom: none;
    border-top: 2px solid transparent;
    color: #2b7cff;
    background: none;
    transition: background 0.2s, color 0.2s;
  }
  .main-nav ul li a.active,
  .main-nav ul li a:hover {
    background: #e3f0ff;
    color: #185bb5;
    border-top: 2px solid #2b7cff;
  }
  .misir-hero, .misir-content {
    padding: 18px 4vw;
    max-width: 100%;
    border-radius: 10px;
  }
  .misir-content {
    margin-bottom: 70px;
  }
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7f9fb;
  color: #222;
}

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8vw;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #2b7cff;
  letter-spacing: 1px;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.main-nav ul li a {
  font-weight: 500;
  font-size: 1.1rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  display: block;
  color: #2b7cff;
  background: none;
  transition: background 0.2s, color 0.2s;
}

.main-nav ul li a.active,
.main-nav ul li a:hover {
  color: #185bb5;
  border-bottom: 2px solid #2b7cff;
  background: #e3f0ff;
}

.yatay-hero {
  background: linear-gradient(90deg, #e3f0ff 60%, #f7f9fb 100%);
  padding: 48px 8vw 32px 8vw;
  text-align: center;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.yatay-hero h1 {
  color: #2b7cff;
  font-size: 2.1rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.yatay-hero p {
  color: #333;
  font-size: 1.15rem;
  margin-bottom: 0;
  line-height: 1.7;
}

.yatay-content {
  background: #fff;
  max-width: 900px;
  margin: 32px auto;
  padding: 40px 32px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.yatay-content h2 {
  color: #2b7cff;
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 14px;
  font-weight: 700;
}

.yatay-content h3 {
  color: #185bb5;
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.yatay-content ul,
.yatay-content ol {
  text-align: left;
  margin-bottom: 18px;
  padding-left: 20px;
}

.yatay-content li {
  margin-bottom: 10px;
  font-size: 1.08rem;
  color: #333;
  line-height: 1.6;
}

.yatay-content p {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 8px;
}

footer {
  background: #2b7cff;
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-size: 1rem;
  margin-top: 32px;
}

/* Mobil uyumluluk */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 18px;
    padding: 18px 4vw;
  }
  .main-nav ul {
    flex-direction: row;
    gap: 0;
    background: #fff;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    box-shadow: 0 -2px 12px rgba(43,124,255,0.08);
    z-index: 999;
    justify-content: space-around;
  }
  .main-nav ul li {
    flex: 1;
    text-align: center;
  }
  .main-nav ul li a {
    display: block;
    padding: 14px 0 12px 0;
    font-size: 1.1rem;
    border-bottom: none;
    border-top: 2px solid transparent;
    color: #2b7cff;
    background: none;
    transition: background 0.2s, color 0.2s;
  }
  .main-nav ul li a.active,
  .main-nav ul li a:hover {
    background: #e3f0ff;
    color: #185bb5;
    border-top: 2px solid #2b7cff;
  }
  .yatay-hero, .yatay-content {
    padding: 18px 4vw;
    max-width: 100%;
    border-radius: 10px;
  }
  .yatay-content {
    margin-bottom: 70px;
  }
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7f9fb;
  color: #222;
}

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8vw;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #2b7cff;
  letter-spacing: 1px;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.main-nav ul li a {
  font-weight: 500;
  font-size: 1.1rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  display: block;
  color: #2b7cff;
  background: none;
  transition: background 0.2s, color 0.2s;
}

.main-nav ul li a.active,
.main-nav ul li a:hover {
  color: #185bb5;
  border-bottom: 2px solid #2b7cff;
  background: #e3f0ff;
}

.dil-hero {
  background: linear-gradient(90deg, #e3f0ff 60%, #f7f9fb 100%);
  padding: 48px 8vw 32px 8vw;
  text-align: center;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.dil-hero h1 {
  color: #2b7cff;
  font-size: 2.1rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.dil-hero p {
  color: #333;
  font-size: 1.15rem;
  margin-bottom: 0;
  line-height: 1.7;
}

.dil-content {
  background: #fff;
  max-width: 900px;
  margin: 32px auto;
  padding: 40px 32px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.dil-content h2 {
  color: #2b7cff;
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 14px;
  font-weight: 700;
}

.dil-content h3 {
  color: #185bb5;
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.dil-content ul,
.dil-content ol {
  text-align: left;
  margin-bottom: 18px;
  padding-left: 20px;
}

.dil-content li {
  margin-bottom: 10px;
  font-size: 1.08rem;
  color: #333;
  line-height: 1.6;
}

.dil-content p {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 8px;
}

footer {
  background: #2b7cff;
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-size: 1rem;
  margin-top: 32px;
}

/* Mobil uyumluluk */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 18px;
    padding: 18px 4vw;
  }
  .main-nav ul {
    flex-direction: row;
    gap: 0;
    background: #fff;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    box-shadow: 0 -2px 12px rgba(43,124,255,0.08);
    z-index: 999;
    justify-content: space-around;
  }
  .main-nav ul li {
    flex: 1;
    text-align: center;
  }
  .main-nav ul li a {
    display: block;
    padding: 14px 0 12px 0;
    font-size: 1.1rem;
    border-bottom: none;
    border-top: 2px solid transparent;
    color: #2b7cff;
    background: none;
    transition: background 0.2s, color 0.2s;
  }
  .main-nav ul li a.active,
  .main-nav ul li a:hover {
    background: #e3f0ff;
    color: #185bb5;
    border-top: 2px solid #2b7cff;
  }
  .dil-hero, .dil-content {
    padding: 18px 4vw;
    max-width: 100%;
    border-radius: 10px;
  }
  .dil-content {
    margin-bottom: 70px;
  }
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7f9fb;
  color: #222;
}

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8vw;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #2b7cff;
  letter-spacing: 1px;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.main-nav ul li a {
  font-weight: 500;
  font-size: 1.1rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  display: block;
  color: #2b7cff;
  background: none;
  transition: background 0.2s, color 0.2s;
}

.main-nav ul li a.active,
.main-nav ul li a:hover {
  color: #185bb5;
  border-bottom: 2px solid #2b7cff;
  background: #e3f0ff;
}

.vize-hero {
  background: linear-gradient(90deg, #e3f0ff 60%, #f7f9fb 100%);
  padding: 48px 8vw 32px 8vw;
  text-align: center;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.vize-hero h1 {
  color: #2b7cff;
  font-size: 2.1rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.vize-hero p {
  color: #333;
  font-size: 1.15rem;
  margin-bottom: 0;
  line-height: 1.7;
}

.vize-content {
  background: #fff;
  max-width: 900px;
  margin: 32px auto;
  padding: 40px 32px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.vize-content h2 {
  color: #2b7cff;
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 14px;
  font-weight: 700;
}

.vize-content h3 {
  color: #185bb5;
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.vize-content ul,
.vize-content ol {
  text-align: left;
  margin-bottom: 18px;
  padding-left: 20px;
}

.vize-content li {
  margin-bottom: 10px;
  font-size: 1.08rem;
  color: #333;
  line-height: 1.6;
}

.vize-content p {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 8px;
}

.vize-content hr {
  border: none;
  border-top: 1px solid #c7d6f7;
  margin: 32px 0;
}

footer {
  background: #2b7cff;
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-size: 1rem;
  margin-top: 32px;
}

/* Mobil uyumluluk */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 18px;
    padding: 18px 4vw;
  }
  .main-nav ul {
    flex-direction: row;
    gap: 0;
    background: #fff;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    box-shadow: 0 -2px 12px rgba(43,124,255,0.08);
    z-index: 999;
    justify-content: space-around;
  }
  .main-nav ul li {
    flex: 1;
    text-align: center;
  }
  .main-nav ul li a {
    display: block;
    padding: 14px 0 12px 0;
    font-size: 1.1rem;
    border-bottom: none;
    border-top: 2px solid transparent;
    color: #2b7cff;
    background: none;
    transition: background 0.2s, color 0.2s;
  }
  .main-nav ul li a.active,
  .main-nav ul li a:hover {
    background: #e3f0ff;
    color: #185bb5;
    border-top: 2px solid #2b7cff;
  }
  .vize-hero, .vize-content {
    padding: 18px 4vw;
    max-width: 100%;
    border-radius: 10px;
  }
  .vize-content {
    margin-bottom: 70px;
  }
}
.egitimler-hero {
  background: linear-gradient(90deg, #e3f0ff 60%, #f7f9fb 100%);
  padding: 48px 8vw 32px 8vw;
  text-align: center;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.egitimler-hero h1 {
  color: #2b7cff;
  font-size: 2.1rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.egitimler-hero p {
  color: #333;
  font-size: 1.15rem;
  margin-bottom: 0;
  line-height: 1.7;
}

.egitimler-content {
  background: #fff;
  max-width: 950px;
  margin: 32px auto;
  padding: 40px 32px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.egitimler-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.egitimler-item {
  background: #f7f9fb;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
  padding: 28px 20px;
  max-width: 300px;
  min-width: 220px;
  margin-bottom: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: left;
}

.egitimler-item:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 24px rgba(43,124,255,0.10);
}

.egitimler-item h2 {
  color: #185bb5;
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 600;
}

.egitimler-item h2 a {
  color: #185bb5;
  text-decoration: none;
  transition: color 0.2s;
}

.egitimler-item h2 a:hover {
  color: #2b7cff;
  text-decoration: underline;
}

.egitimler-item p {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
}

/* Mobil uyumluluk */
@media (max-width: 900px) {
  .egitimler-hero, .egitimler-content {
    padding: 18px 4vw;
    max-width: 100%;
    border-radius: 10px;
  }
  .egitimler-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .egitimler-item {
    width: 100%;
    min-width: unset;
    max-width: 100%;
  }
}
.egitimler-hero {
  background: linear-gradient(90deg, #e3f0ff 60%, #f7f9fb 100%);
  padding: 48px 8vw 32px 8vw;
  text-align: center;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.egitimler-hero h1 {
  color: #2b7cff;
  font-size: 2.1rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.egitimler-hero p {
  color: #333;
  font-size: 1.15rem;
  margin-bottom: 0;
  line-height: 1.7;
}

.egitimler-content {
  background: #fff;
  max-width: 950px;
  margin: 32px auto;
  padding: 40px 32px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}

.egitimler-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.egitimler-item {
  background: #f7f9fb;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(43,124,255,0.04);
  padding: 28px 20px;
  max-width: 300px;
  min-width: 220px;
  margin-bottom: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: left;
}

.egitimler-item:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 24px rgba(43,124,255,0.10);
}

.egitimler-item h2 {
  color: #185bb5;
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 600;
}

.egitimler-item h2 a {
  color: #185bb5;
  text-decoration: none;
  transition: color 0.2s;
}

.egitimler-item h2 a:hover {
  color: #2b7cff;
  text-decoration: underline;
}

.egitimler-item p {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
}

/* Mobil uyumluluk */
@media (max-width: 900px) {
  .egitimler-hero, .egitimler-content {
    padding: 18px 4vw;
    max-width: 100%;
    border-radius: 10px;
  }
  .egitimler-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .egitimler-item {
    width: 100%;
    min-width: unset;
    max-width: 100%;
  }
}
.main-nav {
  background: #fff;
  box-shadow: 0 2px 8px rgba(43,124,255,0.04);
  margin-bottom: 24px;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav ul li {
  display: inline-block;
}

.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: #2b7cff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 8px 8px 0 0;
  transition: background 0.2s, color 0.2s;
  border-bottom: 2px solid transparent;
  display: block;
}

.main-nav ul li a.active,
.main-nav ul li a:hover {
  background: #e3f0ff;
  color: #185bb5;
  border-bottom: 2px solid #2b7cff;
}

@media (max-width: 700px) {
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav ul li a {
    border-radius: 8px;
    margin-bottom: 6px;
    border-bottom: none;
    border-left: 4px solid transparent;
  }
  .main-nav ul li a.active,
  .main-nav ul li a:hover {
    border-left: 4px solid #2b7cff;
    border-bottom: none;
  }
}
/* Menü ve Logo */
header {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #1a73e8; /* ChakraEğitim yazısı rengi */
  text-decoration: none;
  white-space: nowrap;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  font-weight: 500;
  font-size: 16px;
  color: #1a73e8;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px 6px 0 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
  background-color: #e3f2fd;
}

nav ul li a.active {
  background-color: #e3f2fd;
  border-bottom: 3px solid #1a73e8;
  font-weight: 600;
}
