* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}
/* Genel Header Kapsayıcı Başlangıcı */
.drop-but-mobile {
  position: relative;
}

.drop-but-mobile > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drop-but-mobile .dropdown-mobile {
  display: none;
  flex-direction: column;
  background-color: #7da7e1;
  margin-top: 10px;
}

.drop-but-mobile.active .dropdown-mobile {
  display: flex;
}
/* Blog Bölümü Stil Ayarları */
.blog-title {
  text-align: center;
  font-size: 32px;
  margin-top: 60px;
  margin-bottom: 40px;
  color: rgb(36, 36, 117);
  font-family: "Playwrite DE Grund", cursive;
}

.blog-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 80%;
  margin: 0 auto 80px;
}

.blog-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-heading {
  font-size: 20px;
  margin-bottom: 12px;
  color: #333;
}

.blog-excerpt {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.read-more {
  text-decoration: none;
  color: #1e252d;
  font-weight: bold;
  border-bottom: 2px solid #76d0f4;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.read-more:hover {
  color: #00e6ff;
  border-color: #00e6ff;
}

/* Medya Sorguları */
@media (max-width: 992px) {
  .blog-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .blog-section {
    grid-template-columns: 1fr;
  }

  .blog-card {
    margin: 0 auto;
  }
}
header {
  width: 100%; /* Tam ekran genişliği */
  background-color: rgb(71, 79, 99); /* Koyu mavi */
  top: 0; /* En üstte sabitler */
  position: fixed; /* Header'ı üstte sabit tutar */
  box-shadow: 0 0.5vh 0.5vh rgba(20, 145, 170, 0.2);
  z-index: 1000;
  font-family: "Open Sans", sans-serif;
}

/* Navbar Ayarları */
.navbar {
  height: 9vh;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0% 4%;
  background-color: #0f469e;
  box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
}

/* Navbar Logo Kapsayıcı Başlangıcı */
/* Navbar Logo Kapsayıcı Başlangıcı */
.nav-logo {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

/* Logo Görseli */
.nav-logo img {
  width: 12vw;
  height: auto; /* Yüksekliği otomatik ayarladık */
}

/* Navbar Menü Öğeleri */
.nav-items > ul {
  display: flex;
  flex-direction: row;
  gap: 20px; /* Öğeler arasında boşluk */
}

.nav-items > ul > li {
  position: relative;
  list-style: none;
  padding: 10px 2px;
  cursor: pointer;
  width: 130px;
  text-align: center;
}

.nav-items > ul > li > a {
  color: white;
  text-decoration: none;
}

.nav-items > ul > li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.17rem;
  background-color: #ebe8f6;
  left: 0;
  bottom: 0;
  transform-origin: 0% 100%;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-items > ul > li:hover::after {
  transform: scaleX(1);
}

/* Dropdown Menü */
/* ... (Mevcut CSS kodunuzun tamamı) ... */

/* Dropdown Menü */
.dropdown-class {
  display: none;
  position: absolute;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.drop-but:hover .dropdown-class {
  display: block;
}

.dropdown {
  display: flex;
  flex-direction: column;
  background-color: #3599db;
  border: #0e459e solid 1px;
  z-index: 1000;
  position: relative;
}

.dropdown-items {
  border-bottom: 1px solid #0e459e;
  margin-top: 15px;
}

.dropdown-items a {
  display: block;
  padding: 20px;
  color: white;
  text-decoration: none;
}

.dropdown-items a:hover {
  background-color: #0e459e;
}

/* Masaüstü Görünümüne Özel Dropdown Menü Stilleri */
@media (min-width: 769px) {
  /* Dropdown Menü Genişliğini Artırma */
  .dropdown-class {
    min-width: 250px;
  }

  /* Dropdown Menü Animasyonu */
  .dropdown-class {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .drop-but:hover .dropdown-class {
    opacity: 1;
    margin-top: 11px;
    visibility: visible;
    transform: translateY(0);
  }

  /* Dropdown Menü için Grid Düzeni */
  .dropdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* İki sütun */
    gap: 10px; /* Öğeler arası boşluk */
    padding: 10px; /* Dropdown iç boşluğu */
    background-color: rgba(53, 153, 219, 0.95); /* Transparan mavi arka plan */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Hafif gölge */
    border-radius: 8px; /* Köşeleri yuvarlat */
    border: none; /* Kenarlığı kaldır */
    position: relative; /* Pozisyonlandırmayı netleştir */
  }

  /* Dropdown Menü Öğeleri */
  .dropdown-items {
    border: none; /* Kenarlıkları kaldır */
    margin: 0;
  }

  .dropdown-items a {
    padding: 10px 15px; /* Menü öğesi iç boşlukları */
    border-radius: 4px; /* Köşeleri yuvarlama */
    transition: background-color 0.3s ease, transform 0.3s ease;
    background-color: transparent;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 1px solid #0e459e; /* Alt kenarlık */
  }

  .dropdown-items a:last-child {
    border-bottom: none; /* Son öğe için kenarlığı kaldır */
  }

  .dropdown-items a:hover {
    background-color: #0e459e; /* Hover arka plan rengi */
    color: #00e6ff; /* Hover yazı rengi */
    transform: translateX(5px); /* Hafif sağa kayma efekti */
  }
}

/* İndirme Butonu */
.download-btn {
  background-color: #3498db; /* Butonun arka plan rengi */
  border: none; /* Kenarları yok */
  border-radius: 50px; /* Kenar yuvarlama */
  color: white; /* Yazı rengi */
  padding: 10px 20px; /* İç boşluk */
  font-size: 14px; /* Yazı boyutu */
  cursor: pointer; /* İşaretçi değişimi */
  display: flex; /* Flexbox düzeni */
  align-items: center; /* Dikey ortalama */
  gap: 8px; /* İkon ve metin arası boşluk */
  transition: background-color 0.3s ease, transform 0.3s ease; /* Geçiş efektleri */
  position: relative; /* Tooltip için pozisyon */
  width: 12vw; /* sonadan eklendı genişlik için alt 2 satır da sonrada */
  align-items: center;
  justify-content: center;
}

.download-btn:hover {
  background-color: #2980b9; /* Hover durumu arka plan rengi */
}

.download-btn:hover .tooltip-text {
  visibility: visible; /* Hover sırasında görünür */
  opacity: 1; /* Görünürlük */
  color: white;
  transition-delay: 0s; /* Hover durumunda gecikmeyi sıfırla */
}

.download-btn svg {
  fill: white; /* İkon rengi */
  transition: transform 0.3s ease; /* İkon dönüşüm geçişi */
}

.tooltip-text {
  visibility: hidden; /* Varsayılan olarak gizli */
  opacity: 0; /* Başlangıçta görünmez */
  position: absolute; /* Mutlak konumlandırma */
  top: 110%; /* Butonun hemen altında görünür */
  left: 50%; /* Ortalamak için */
  transform: translateX(-50%); /* Merkeze almak için */
  background-color: #3599db; /* Arka plan rengi */
  color: white; /* Yazı rengi */
  text-align: center; /* Metin ortalama */
  padding: 5px; /* İç boşluk */
  border-radius: 5px; /* Kenar yuvarlama */
  transition: opacity 0.3s ease; /* Görünürlük geçişi */
  white-space: nowrap; /* Yazıyı tek satırda tutar */
  z-index: 1; /* Üstte görünmesi için */
}

/* Ana İçerik Ayarları */
main {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Tasarım */
@media only screen and (max-width: 770px) {
  /* Mobil Menü Ayarları */
  #mobile-menu {
    background-color: #c52726;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
  }

  .mobile-nav-items > ul {
    padding: 0;
  }

  .mobile-nav-items > ul > li {
    text-align: center;
    position: relative;
    list-style: none;
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
  }

  .mobile-nav-items > ul > li > a {
    color: white;
    text-decoration: none;
  }

  .mobile-nav-items > ul > li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.17rem;
    background-color: white;
    left: 0;
    bottom: 0;
    transform-origin: 0% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .mobile-nav-items > ul > li:hover::after {
    transform: scaleX(1);
  }

  .mobile-nav-button {
    background-color: #141214;
    border-radius: 50px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
  }

  .mobile-nav-button .anim-layer {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: white;
    transition: width 0.3s ease, left 0.3s ease;
  }

  .mobile-nav-button:hover .anim-layer {
    width: 100%;
    left: 0;
  }

  .mobile-nav-button:hover a {
    color: #141214;
  }

  .mobile-nav-button a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
  }

  .nav-items > ul,
  .nav-button {
    display: none;
  }

  /* Hamburger Menü İkonu Ortada */
  .hamburger-menu {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
  }

  .hamburger-menu i {
    font-size: 24px;
    color: white;
  }

  /* Logo Sol Üstte */
  .nav-logo {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-logo img {
    width: 90px;
    height: auto; /* Yüksekliği otomatik ayarladık */
  }

  /* İndirme Butonu Sağ Üstte */
  .download-btn {
    position: absolute;
    right: 10px;
    top: 50%;
  }

  /* Navbar Yüksekliği */
  .navbar {
    height: 60px;
  }
}

.agency-section {
  max-width: 900px;
  width: 100%;
  background-color: #1e7979;
  padding: 40px;
  margin: 50px auto;
  text-align: center;
  border-bottom: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.agency-section h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  color: white;
  margin-bottom: 40px;
}

.agency-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.agency-logo {
  flex: 1 1 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.agency-logo img {
  max-height: 60px;
  width: auto;
}

.agency-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.agency-logo a {
  display: block;
  height: 100%;
  width: 100%;
}

/* Responsive Tasarım */

/* Orta boyutlu ekranlar için (Tablet ve küçük dizüstü bilgisayarlar) */
@media (max-width: 991.98px) {
  .agency-section {
    padding: 30px;
    margin: 40px auto;
  }

  .agency-section h2 {
    font-size: 26px;
  }

  .agency-logo {
    flex: 1 1 22%; /* Yaklaşık 4 logo yan yana */
  }

  .agency-logo img {
    max-height: 55px;
  }
}

/* Küçük ekranlar için (Büyük telefonlar ve küçük tabletler) */
@media (max-width: 767.98px) {
  .agency-section {
    padding: 25px;
    margin: 30px auto;
  }

  .agency-section h2 {
    font-size: 24px;
  }

  .agency-logo {
    flex: 1 1 30%; /* Yaklaşık 3 logo yan yana */
    padding: 15px;
  }

  .agency-logo img {
    max-height: 50px;
  }
}

/* Mobil cihazlar için (Akıllı telefonlar) */
@media (max-width: 575.98px) {
  .agency-section {
    padding: 20px;
    margin: 20px auto;
  }

  .agency-section h2 {
    font-size: 22px;
  }

  .agency-logo {
    flex: 1 1 45%; /* Yaklaşık 2 logo yan yana */
    padding: 10px;
  }

  .agency-logo img {
    max-height: 45px;
  }
}

/* Küçük mobil cihazlar için (Küçük akıllı telefonlar) */
@media (max-width: 399.98px) {
  .agency-section {
    padding: 15px;
    margin: 15px auto;
  }

  .agency-section h2 {
    font-size: 20px;
  }

  .agency-logo {
    flex: 1 1 100%; /* Logolar alt alta */
    padding: 8px;
  }

  .agency-logo img {
    max-height: 40px;
  }
}

/* Kaza Tespit Tutanağı Butonu */
.download-btn {
  background-color: #3498db;
  border: none;
  border-radius: 50px;
  color: white;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}

.download-btn svg {
  fill: white;
}

/* Tooltip */
.tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3599db;
  color: white;
  padding: 5px;
  border-radius: 5px;
  transition: opacity 0.3s ease;
}

.download-btn:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Normal Menü */
.nav-items {
  display: flex;
}

.nav-items ul {
  display: flex;
  gap: 30px;
}

.nav-items ul li {
  list-style: none;
}

.nav-items ul li a {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
}

/* Dropdown Menü */

/* Mobil Menü */
.mobile-menu {
  display: none;
}
.hamburger-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

@media (max-width: 768px) {
  /* Hamburger Menü İkonunu Göster */
  .hamburger-menu {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
  }

  /* Normal Menüyü Gizle */
  .nav-items {
    display: none;
  }

  /* Kaza Tespit Tutanağı Butonunu Sağa Yerleştir */
  .download-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Logo Boyutunu Ayarla */
  .saricay-logo {
    width: 30vw;
    height: auto;
  }

  /* Navbar Yüksekliğini Ayarla */
  .navbar {
    height: 10vh;
  }

  /* Mobil Menü Ayarları */
  .mobile-menu {
    display: none;
    position: absolute;
    top: 10vh; /* Navbar'ın altında */
    left: 0;
    width: 100%;
    background-color: #0f469e;
    z-index: 999;
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-menu ul li {
    border-bottom: 1px solid #ddd;
  }

  .mobile-menu ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 15px 20px;
  }

  /* Mobil Dropdown Menü */
  .drop-but-mobile .dropdown-mobile {
    display: none;
  }

  .drop-but-mobile.active .dropdown-mobile {
    display: block;
  }

  .dropdown-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #3599db;
  }

  .dropdown-mobile .dropdown-items a {
    padding-left: 30px;
  }
}

/* Tooltip CSS */
.tooltip {
  visibility: hidden; /* Başlangıçta görünmez */
  width: 120px; /* Tooltip genişliği */
  background-color: rgba(0, 0, 0, 0.7); /* Arka plan rengi */
  color: #fff; /* Yazı rengi */
  text-align: center; /* Yazıyı ortala */
  border-radius: 5px; /* Yuvarlak köşeler */
  padding: 5px; /* İç boşluk */
  position: absolute; /* Konumlandırma */
  top: 110%; /* Tooltip'in konumu butonun altında */
  left: 50%; /* Ortalamak için sola kaydırma */
  transform: translateX(-50%); /* Tam ortalama */
  opacity: 0; /* Başlangıçta görünmez */
  transition: opacity 0.3s; /* Geçiş animasyonu */
}

.Btn:hover .tooltip {
  visibility: visible; /* Üzerine gelindiğinde görünür */
  opacity: 1; /* Görünürlük animasyonu */
}

#menu {
  display: none;
  position: fixed; /* Sayfa kaydırıldığında yerinde kalır */
  top: 0;
  left: 0;
  width: 20%;
  height: 100%; /* Tüm sayfayı kaplar */
  background-color: rgba(128, 128, 128, 0.9); /* Yarı saydam gri arka plan */
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: none; /* Uzun içerikler için kaydırma çubuğu */
}

.social-login-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  -webkit-box-reflect: below 5px linear-gradient(transparent, #00000055);
}
.social-login-icons svg {
  width: 40px;
}

.social-icon-1,
.social-icon-1-1,
.social-icon-2,
.social-icon-2-2,
.social-icon-3,
.social-icon-3-3,
.social-icon-4,
.social-icon-4-4 {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin: 20px 0 0px 0;
}

.icon svg {
  fill: #111;
}

.socialcontainer {
  height: 80px;
  overflow: hidden;
}
.social-icon-1 {
  transition-duration: 0.4s;
  background-color: rgb(0, 0, 0);
  transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);
}
.social-icon-1 svg,
.social-icon-2 svg,
.social-icon-3 svg,
.social-icon-4 svg {
  opacity: 0;
  transition-duration: 0.5s;
  transition-delay: 0.2s;
}
.social-icon-1-1 {
  transition-duration: 0.4s;
  background-color: rgb(0, 0, 0, 0);
}
.socialcontainer:hover .social-icon-1 {
  transform: translateY(-70px);
}
.socialcontainer:hover .social-icon-1 svg,
.socialcontainer:hover .social-icon-2 svg,
.socialcontainer:hover .social-icon-3 svg,
.socialcontainer:hover .social-icon-4 svg {
  opacity: 1;
}
.social-icon-2 {
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);
  background: linear-gradient(
    72.44deg,
    #ff7a00 11.92%,
    #ff0169 51.56%,
    #d300c5 85.69%
  );
}
.socialcontainer:hover .social-icon-2 {
  transform: translateY(-70px);
}
.social-icon-3 {
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);
  background: #316ff6;
}

.socialcontainer:hover .social-icon-3 {
  transform: translateY(-70px);
}
.social-icon-4 {
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);

  background: linear-gradient(
    180deg,
    rgba(129, 34, 144, 1) 0%,
    rgba(77, 34, 124, 1) 91%
  );
}

.socialcontainer:hover .social-icon-4 {
  transform: translateY(-70px);
}

/* Medya Sorguları ile Responsive Tasarım Ayarları */
@media (max-width: 1200px) {
  .agency-logo {
    flex: 1 1 20%; /* 20% genişlik ayarı */
  }
}

@media (max-width: 992px) {
  .agency-logo {
    flex: 1 1 25%; /* 25% genişlik ayarı */
  }
}

@media (max-width: 768px) {
  .agency-logo {
    flex: 1 1 30%; /* 30% genişlik ayarı */
  }
}

@media (max-width: 576px) {
  .agency-logo {
    flex: 1 1 45%; /* 45% genişlik ayarı */
  }

  .agency-section {
    padding: 20px; /* Mobilde padding azaltıldı */
  }

  .agency-section h2 {
    font-size: 24px; /* Mobilde başlık boyutu azaltıldı */
  }
}

/* Footer Stilini Ayarla */
footer {
  background-color: #79a7f3;
  color: rgb(7, 7, 173);
  padding: 40px 20px 20px 20px;
}
.adres,
.mail,
.tel {
  color: red;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 15px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 calc(33.333% - 30px);
  margin: 15px;
  min-width: 0;
}

.footer-left .logo img {
  max-width: 100%;
  height: auto;
}

.footer-left .footer-links {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.footer-left .footer-links li {
  margin-bottom: 10px;
}

.footer-left .footer-links a {
  color: rgb(99, 53, 53);
  text-decoration: none;
}

.footer-left .footer-links a:hover {
  text-decoration: underline;
}

.footer-center .map iframe {
  width: 100%;
  max-width: 100%;
  height: 200px;
  border: 0;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-right .social-login-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-right .social-icon {
  color: #602406;
  font-size: 24px;
  transition: color 0.3s ease;
}

.footer-right .social-icon:hover {
  color: #e06122;
}

.footer-right .address {
  text-align: center;
}

.footer-right .address p {
  margin: 5px 0;
  color: white;
  word-wrap: break-word;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ffffff33;
  padding-top: 10px;
  margin-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #ddd;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
  .footer-left,
  .footer-center,
  .footer-right {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: 1 1 100%;
    margin: 10px 0;
    max-width: 100%;
    text-align: center;
  }

  .footer-left .footer-links {
    text-align: center;
  }
}
