/* Genel Ayarlar ve CSS Değişkenleri */
:root {
  --primary-color: #6D8B74; /* Ana yeşil tonu - Header, bazı butonlar */
  --secondary-color: #B47B84; /* Vurgu rengi - Hover efektleri, bazı butonlar */
  --text-color: #333333; /* Koyu gri metin rengi */
  --light-bg-color: #F9F6F1; /* Açık krem arka plan */
  --white-color: #ffffff; /* Beyaz */
  --border-color: #A9C9D4; /* Açık mavi-gri sınır rengi */
}

html {
  scroll-behavior: smooth; /* Sayfa içi geçişlerde yumuşak kaydırma */
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6; /* Metin okunabilirliğini artırır */
  color: var(--text-color);
  background-color: var(--light-bg-color);
  margin: 0;
  padding-top: 130px; /* Header'ın yüksekliğine göre ayarlandı, shrink olunca değişebilir */
}

/* Kapsayıcı (Container) - İçeriği ortalamak ve genişliği sınırlamak için */
.container {
  max-width: 1100px; /* igipsikoloji.com.tr gibi sitelerin genel genişliği */
  margin: 0 auto;
  padding: 0 20px;
}

/* Header (Üst Kısım) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  z-index: 999;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  padding: 15px 0; /* Üst ve alttan boşluk eklenir */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Hafif gölge ekler */
  color: var(--white-color); /* Header metin rengi beyaz */
  display: flex; /* İçerik için flexbox kullanılır */
  align-items: center; /* Dikeyde ortalar */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Küçük ekranlarda alta geçişe izin verir */
}

.site-logo {
  height: 150px; /* Logonun yüksekliği daha profesyonel bir boyut */
  transition: height 0.3s ease; /* Küçülme efekti için */
}

/* Navigasyon Menü (Masaüstü) */
nav ul.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px; /* Menü öğeleri arası boşluk */
  margin: 0;
  padding: 0;
}

nav ul.nav-menu li a {
  text-decoration: none;
  color: var(--white-color);
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul.nav-menu li a:hover,
nav ul.nav-menu li a.active {
  background-color: var(--secondary-color); /* Vurgu rengi hover/aktif */
  color: var(--white-color);
}

/* Hamburger Menü Butonu (Mobil) */
.menu-btn {
  display: none; /* Masaüstünde gizli */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px; /* Hamburger yüksekliği */
  cursor: pointer;
  z-index: 1001; /* Menünün üzerinde kalır */
}

.menu-btn span {
  display: block;
  height: 3px; /* Hamburger çubuk kalınlığı */
  background-color: var(--white-color); /* Hamburger çubuk rengi */
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger açık-kapalı animasyonu */
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Ana İçerik */
main {
  padding: 40px 0; /* İçeriğin üst ve alttan boşluğu */
}

main section {
  padding: 60px 0; /* Bölümler arası daha fazla boşluk */
  border-bottom: 1px solid var(--border-color); /* Hafif ayırıcı çizgi */
}

main section:last-child {
  border-bottom: none; /* Son bölümde çizgi olmaz */
}

/* Bölüm Başlıkları (Ortak Stiller) */
h1, h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

h1 {
  font-size: 3em;
} /* Hero section başlığı için */
h2 {
  font-size: 2.5em;
} /* Diğer bölüm başlıkları için */
h3 {
  color: var(--text-color);
  font-size: 1.8em;
  margin-bottom: 15px;
}

/* Hero Section (Ana Sayfa İlk Ekran) */
.hero-section {
  background-color: var(--white-color); /* Beyaz arka plan */
  padding: 80px 0; /* Daha fazla dikey boşluk */
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.hero-section .container {
  display: flex;
  flex-direction: column; /* Mobil için dikey */
  align-items: center;
  gap: 40px;
}

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

.hero-content h1 {
  font-size: 3.5em; /* Daha büyük ve etkileyici başlık */
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-color);
}

/* Buton Stilleri */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.btn-primary:hover {
  background-color: #5A7D7C; /* Biraz daha koyu bir ton */
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.btn-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Hakkımızda Önizleme ve Hizmet Kartları */
.about-preview-section .container,
.services-preview-section .container {
    text-align: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.about-content img {
    width: 350px; /* Uzman fotoğrafı boyutu */
    height: 350px;
    border-radius: 50%; /* Yuvarlak fotoğraf */
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Duyarlı ızgara */
  gap: 30px;
  margin-top: 40px;
}

/* Danışan Yorumları (Testimonials) */
.testimonials-section {
  background-color: var(--light-bg-color);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.testimonial-slider { /* .slider-container */
  position: relative;
  max-width: 700px; /* Slider için daha uygun genişlik */
  margin: 40px auto;
  overflow: hidden; /* Kartların dışarı taşmasını engeller */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.slider-wrapper { /* .slider */
  display: flex;
  transition: transform 0.4s ease;
}

.danısan-kart { /* .testimonial-item olarak genelleştirilebilir */
  min-width: 100%; /* Kaydırıcı içindeki her kart tam genişlikte */
  box-sizing: border-box;
  background-color: var(--white-color);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.danısan-kart p {
  font-size: 1.2em;
  font-style: italic;
  margin-bottom: 15px;
  color: var(--text-color);
}

.danısan-kart span {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1em;
}

/* Slider Gezinme Butonları */
.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--secondary-color);
  color: var(--white-color);
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.prev-btn:hover, .next-btn:hover {
  background-color: #A06D75; /* Hover rengi */
  transform: translateY(-50%) scale(1.05);
}

.prev-btn {
  left: 10px; /* İçeriye doğru konumlandırma */
}

.next-btn {
  right: 10px; /* İçeriye doğru konumlandırma */
}

/* Blog Önizleme Bölümü */
.blog-preview-section .container {
    text-align: center;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.post-card {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden; /* Görselin taşmasını engeller */
  transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card img {
  width: 100%;
  height: 200px; /* Görselin sabit yüksekliği */
  object-fit: cover; /* Görseli keserek alanı doldurur */
  display: block; /* Görsel altında boşluk kalmaması için */
}

.post-card h3 {
  font-size: 1.5em;
  margin: 20px 20px 10px;
  color: var(--primary-color);
}

.post-card h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.post-card h3 a:hover {
  color: var(--secondary-color);
}

.post-card p {
  font-size: 1em;
  color: var(--text-color);
  margin: 0 20px 20px;
}

/* İletişim Sayfası Form ve Harita */
.contact-section {
    padding: 60px 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-item p {
    margin-bottom: 5px;
}

.info-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-form-map {
    display: grid;
    grid-template-columns: 1fr; /* Başlangıçta tek sütun */
    gap: 50px;
    margin-top: 60px;
}

.contact-form, .map-container {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form h2, .map-container h2 {
    text-align: left; /* Bu başlıkları sola yasla */
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2em;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1em;
  color: var(--text-color);
  background-color: var(--light-bg-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box; /* Padding dahil genişlik hesaplaması */
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(109, 139, 116, 0.2);
}

textarea {
  resize: vertical; /* Sadece dikeyde boyutlandırmaya izin ver */
  min-height: 120px;
}

button[type="submit"] {
  width: auto; /* Tam genişlik yerine içeriğe göre genişlik */
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
  background-color: #5A7D7C;
  transform: translateY(-2px);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 8px; /* Map iframe'e de border-radius */
}

/* Footer (Alt Kısım) */
footer {
  background-color: var(--text-color); /* Koyu gri arka plan */
  color: var(--light-bg-color); /* Açık renk metin */
  padding: 40px 0;
  margin-top: 60px; /* Üstten boşluk */
  font-size: 0.9em;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: left;
  margin-bottom: 30px;
}

.footer-col h3 {
  color: var(--primary-color); /* Footer başlıkları için ana renk */
  margin-bottom: 15px;
  font-size: 1.2em;
}

.footer-col p, .footer-col ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

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

.footer-col ul li a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links img {
  width: 35px; /* İkon boyutu */
  height: 35px;
  transition: transform 0.2s ease;
}

.social-links img:hover {
  transform: scale(1.1);
}

.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Hafif ayırıcı çizgi */
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.7);
}

/* Yorum Puanı (Rating) - Sadece örnek, HTML'de yıldız ikonları kullanılmalı */
.rating {
  font-size: 1.5em;
  color: gold; /* Yıldızlar için altın rengi */
  margin-top: 5px;
}

/* Çizgili Liste (Servis listelemeleri vb. için) */
.cizgili-liste {
  list-style: none;
  padding-left: 0;
}

.cizgili-liste li {
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.cizgili-liste li::before {
  content: "—"; /* Daha estetik bir çizgi */
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Mobil Uyumlu Düzenlemeler */
@media (max-width: 992px) { /* Tabletler ve daha küçük ekranlar için */
    .hero-content h1 {
        font-size: 2.8em;
    }
    h2 {
        font-size: 2em;
    }
    h3 {
        font-size: 1.5em;
    }
    .service-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) { /* Telefonlar ve dikey tabletler için */
  /* Header ve Navigasyon */
  header .container {
    flex-direction: row; /* Mobil headerda logo ve menü butonu yan yana */
    justify-content: space-between;
    align-items: center;
  }
  nav ul.nav-menu {
    position: fixed;
    top: 0;
    right: -280px; /* Mobil menü gizli */
    width: 280px; /* Menü genişliği */
    height: 100%;
    background-color: var(--text-color); /* Koyu menü arka planı */
    flex-direction: column;
    padding-top: 100px; /* Header yüksekliği kadar boşluk */
    transition: right 0.3s ease;
    box-shadow: -4px 0 10px rgba(0,0,0,0.3);
    z-index: 1000;
  }

  nav ul.nav-menu.active {
    right: 0; /* Açık */
  }

  nav ul.nav-menu li {
    margin: 15px 0;
    padding-left: 30px;
  }
  nav ul.nav-menu li a {
    color: var(--light-bg-color); /* Menü içi link rengi */
    font-size: 1.1em;
  }
  nav ul.nav-menu li a:hover,
  nav ul.nav-menu li a.active {
    background-color: transparent; /* Mobil menüde hover efekti */
    color: var(--primary-color); /* Mobil menüde hover rengi */
  }

  .menu-btn {
    display: flex; /* Mobilde hamburger görünsün */
    margin-right: 10px; /* Butonun sağdan boşluğu */
  }

  /* Ana içerik padding ve başlık boyutları */
  body {
    padding-top: 100px; /* Mobil header yüksekliğine göre ayarlanır */
  }
  main {
    padding: 20px 0;
  }
  main section {
    padding: 40px 0;
  }
  h1 {
    font-size: 2.5em;
  }
  h2 {
    font-size: 1.8em;
  }

  /* İletişim Formu ve Harita */
  .contact-form-map {
      grid-template-columns: 1fr; /* Tek sütunda alt alta */
  }
  .contact-form, .map-container {
      padding: 30px;
  }
}

@media (max-width: 480px) { /* Çok küçük telefonlar için */
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-content p {
        font-size: 1.1em;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .hizmet-kart, .post-card {
        padding: 20px;
    }
    .danısan-kart {
        padding: 30px 20px;
        font-size: 0.9em;
    }
    .prev-btn, .next-btn {
        padding: 8px 12px;
        font-size: 1em;
    }
    .footer-content {
        grid-template-columns: 1fr; /* Footer sütunları da tekli */
        text-align: center;
    }
    .footer-col ul {
        margin-bottom: 20px;
    }
    .social-links {
        justify-content: center;
    }
}

/* Hakkımızda Sayfası Stilleri */
.about-us-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.about-us-section h1 {
    margin-bottom: 50px;
}

.about-content {
    display: flex;
    flex-wrap: wrap; /* Küçük ekranlarda alt alta geçiş */
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    justify-content: center; /* Ortalar */
}

.about-image {
    width: 300px;
    height: 300px;
    border-radius: 15px; /* Köşeleri biraz yuvarla */
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
    min-width: 300px; /* Metin kutusunun minimum genişliği */
    max-width: 700px;
}

.about-text h2 {
    text-align: left;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Mobil için responsive ayarlar */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-text h2 {
        text-align: center;
    }
}
/* Hizmetler Sayfası Stilleri */
.services-full-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.services-full-section h1 {
    margin-bottom: 30px;
}

.section-description {
    text-align: center;
    font-size: 1.15em;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 80px; /* Hizmet öğeleri arası boşluk */
}

.service-item {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: var(--light-bg-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-item:nth-child(even) { /* Her ikinci öğe için görseli sağa al */
    flex-direction: row-reverse;
}

.service-item img {
    width: 40%; /* Görsel genişliği */
    max-width: 400px; /* Maksimum görsel genişliği */
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-content {
    flex: 1; /* Metin içeriğinin kalan alanı doldurmasını sağlar */
}

.service-content h2 {
    text-align: left;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 2em;
}

.service-content p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-content .cizgili-liste {
    margin-bottom: 30px;
    margin-top: 20px;
}

/* Mobil için responsive ayarlar */
@media (max-width: 992px) {
    .service-item {
        flex-direction: column !important; /* Mobil'de tüm hizmet öğelerini dikey sırala */
        text-align: center;
    }
    .service-item img {
        width: 80%;
        max-width: 500px;
        margin-bottom: 20px;
    }
    .service-content h2 {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .service-item {
        padding: 30px;
    }
    .service-item img {
        width: 100%;
    }
    .service-content h2 {
        font-size: 1.8em;
    }
    .service-content p {
        font-size: 1em;
    }
}

/* Blog Sayfası Stilleri */
.blog-full-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.blog-full-section h1 {
    margin-bottom: 30px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px; /* Blog kartları arası boşluk */
    margin-top: 40px;
}

.post-card {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.post-card img {
    width: 100%;
    height: 220px; /* Sabit görsel yüksekliği */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border-color);
}

.post-content {
    padding: 25px;
}

.post-content h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.post-content h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.post-content h3 a:hover {
    color: var(--secondary-color);
}

.post-meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
}

.post-content p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Sayfalama Stilleri (Opsiyonel) */
.pagination {
    text-align: center;
    margin-top: 60px;
}

.pagination a {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    text-decoration: none;
    color: var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination a.active,
.pagination a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Mobil için responsive ayarlar */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr; /* Mobil'de tek sütun */
    }
    .post-content {
        padding: 20px;
    }
    .post-content h3 {
        font-size: 1.4em;
    }
}

/* İletişim Sayfası Stilleri */
.contact-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.contact-section h1 {
    margin-bottom: 30px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 60px;
    text-align: center;
}

.contact-info-grid .info-item {
    background-color: var(--light-bg-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-info-grid .info-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.contact-info-grid .info-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.contact-info-grid .info-item p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-form-map {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Form daha geniş, harita biraz daha dar */
    gap: 60px;
    margin-top: 60px;
}

.contact-form, .map-container {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-form h2, .map-container h2 {
    text-align: left;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.2em;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.map-address-text {
    text-align: center;
    margin-top: 20px;
    font-size: 1.1em;
    color: #555;
}

/* Mobil için responsive ayarlar */
@media (max-width: 992px) {
    .contact-form-map {
        grid-template-columns: 1fr; /* Tek sütunda alt alta */
    }
}

@media (max-width: 600px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .contact-form, .map-container {
        padding: 25px;
    }
    .contact-form h2, .map-container h2 {
        font-size: 1.8em;
    }
}

/* İletişim Sayfası Stilleri */
.contact-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.contact-section h1 {
    margin-bottom: 30px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 60px;
    text-align: center;
}

.contact-info-grid .info-item {
    background-color: var(--light-bg-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-info-grid .info-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.contact-info-grid .info-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.contact-info-grid .info-item p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-form-map {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Form daha geniş, harita biraz daha dar */
    gap: 60px;
    margin-top: 60px;
}

.contact-form, .map-container {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-form h2, .map-container h2 {
    text-align: left;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.2em;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.map-address-text {
    text-align: center;
    margin-top: 20px;
    font-size: 1.1em;
    color: #555;
}

/* Mobil için responsive ayarlar */
@media (max-width: 992px) {
    .contact-form-map {
        grid-template-columns: 1fr; /* Tek sütunda alt alta */
    }
}

@media (max-width: 600px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .contact-form, .map-container {
        padding: 25px;
    }
    .contact-form h2, .map-container h2 {
        font-size: 1.8em;
    }
}

/* SSS Sayfası Stilleri */
.faq-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.faq-section h1 {
    margin-bottom: 30px;
}

.faq-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: var(--light-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden; /* transition için gerekli */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item summary {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--primary-color);
    padding: 20px 25px;
    cursor: pointer;
    outline: none; /* Odaklandığında dış çizgiyi kaldırır */
    list-style: none; /* Varsayılan oku gizler */
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-item summary:hover {
    background-color: rgba(109, 139, 116, 0.1);
}

/* Kendi açma/kapama ikonu */
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 15px 25px 25px;
    border-top: 1px solid var(--border-color);
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-color);
}

/* Mobil için responsive ayarlar */
@media (max-width: 768px) {
    .faq-list {
        margin: 30px auto 0;
    }
    .faq-item summary {
        font-size: 1.1em;
        padding: 18px 20px;
    }
    .faq-item summary::after {
        right: 20px;
    }
    .faq-answer {
        padding: 12px 20px 20px;
        font-size: 0.95em;
    }
}

/* Yeni Eklenen Alanlar İçin CSS Stilleri */

/* Çalışma Alanları Bölümü */
.areas-of-work {
    margin-top: 80px;
    padding: 60px 0;
    background-color: var(--light-bg-color); /* Hafif arka plan rengi */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.areas-of-work h2 {
    margin-bottom: 50px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Duyarlı ızgara */
    gap: 30px;
    margin-top: 40px;
}

.area-item {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: left; /* İçerik sola yaslı */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.area-item h3 {
    color: var(--secondary-color); /* Vurgu renginde başlık */
    font-size: 1.6em;
    margin-bottom: 15px;
}

.area-item p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-color);
}

/* Akademik Çalışmalar Bölümü */
.academic-works {
    margin-top: 80px;
    padding: 60px 0;
    text-align: center;
}

.academic-works h2 {
    margin-bottom: 50px;
}

.academic-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.academic-item {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: left;
}

.academic-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.academic-item p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--text-color);
}

.academic-item ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.academic-item ul li {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    color: var(--text-color);
}

/* Mevcut .cizgili-liste stilini akademik liste için de kullanabiliriz */
/* .cizgili-liste li::before tanımı zaten genel CSS'te var, eklemeye gerek yok */


/* Mobil Uyumlu Düzenlemeler (Önceki medyaya ek olarak veya içine entegre) */
@media (max-width: 768px) {
    .areas-grid,
    .academic-list {
        grid-template-columns: 1fr; /* Mobil'de tek sütun */
    }
    .area-item, .academic-item {
        padding: 25px;
    }
    .area-item h3, .academic-item h3 {
        font-size: 1.4em;
    }
}

/* style.css içine eklenecek genel blog sayfası ve post stilleri */
.blog-post-section {
    padding: 60px 0;
    line-height: 1.8;
    font-size: 1.1em;
    color: var(--text-color);
}

.blog-post-section h1 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2.5em;
}

.blog-post-section h2 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.blog-post-section p {
    margin-bottom: 20px;
}

.blog-post-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.blog-post-section ul li {
    margin-bottom: 10px;
}

.blog-post-section strong {
    color: var(--title-color); /* Veya farklı bir vurgu rengi */
}

/* Blog Listeleme Sayfası Stilleri (blog.html için) */
.blog-list-section {
    padding: 60px 0;
    text-align: center;
}

.blog-list-section h1 {
    margin-bottom: 50px;
    color: var(--primary-color);
    font-size: 2.8em;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.blog-post-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-post-card h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-post-card h2 a {
    color: var(--secondary-color);
    text-decoration: none;
}

.blog-post-card h2 a:hover {
    color: var(--primary-color);
}

.blog-post-card p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-color);
    flex-grow: 1; /* Metnin kart içinde yayılmasını sağlar */
    margin-bottom: 20px;
}

.blog-post-card .read-more {
    display: inline-block;
    margin-top: auto; /* Kartın en altına hizalar */
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.blog-post-card .read-more:hover {
    background-color: var(--secondary-color);
}

/* Duyarlılık (Responsive) Ayarları */
@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    .blog-post-section h1 {
        font-size: 2em;
    }
    .blog-post-section h2 {
        font-size: 1.6em;
    }
}

/* Ofis Fotoğrafları Slider Stilleri */
.office-photos-section {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--white-color); /* Arka plan rengi */
}

.office-slider {
    max-width: 800px;
    position: relative;
    margin: 30px auto;
    background-color: var(--light-bg-color); /* Kaydırıcı arka planı */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden; /* Taşmaları engeller */
}

/* Slaytları gizle */
.slide {
    display: none;
}

/* Resimlerin stilini ayarla */
.slide img {
    width: 100%;
    max-height: 500px; /* Maksimum yükseklik belirleyin */
    object-fit: contain; /* Resmi kutuya sığdırır, gerekirse boşluk bırakır */
    display: block; /* Altındaki boşluğu kaldırır */
}

/* Önceki ve sonraki düğmeler */
.prev, .next {
    cursor: pointer;
    position: absolute; /* Kaydırıcı konteynerine göre konumlandırır */
    top: 50%; /* Dikeyde ortalar */
    transform: translateY(-50%); /* Kendi yüksekliğinin yarısı kadar yukarı kaydırarak tam ortalar */
    width: auto;
    padding: 16px;
    /* margin-top: -22px; Bu satırı kaldırın, yerine transform kullanacağız */
    color: white;
    font-weight: bold;
    font-size: 22px; /* Daha belirgin olması için boyutu artırabilirsiniz */
    transition: 0.6s ease;
    user-select: none;
    background-color: rgba(0,0,0,0.5); /* Yarı şeffaf arka plan */
    z-index: 10; /* Resimlerin ve diğer içeriklerin üzerinde kalmasını sağlar */
    border-radius: 3px; /* Köşeleri biraz yuvarlayın */
    text-decoration: none; /* Alt çizgiyi kaldırın */
}

/* "Sonraki düğme sağa konumlandırılır" */
.next {
    right: 0;
    border-radius: 3px 0 0 3px; /* Sağ tarafı düz, sol tarafı yuvarlak */
}

/* "Önceki düğme sola konumlandırılır" */
.prev {
    left: 0;
    border-radius: 0 3px 3px 0; /* Sol tarafı düz, sağ tarafı yuvarlak */
}

/* Hover üzerindeki düğme arka planı */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Slayt numarası metni */
.slide-number {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    border-bottom-right-radius: 8px;
}

/* Soluk animasyonu */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* Altındaki nokta göstergeleri */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Responsive Düzenlemeler */
@media screen and (max-width: 768px) {
    .office-slider {
        margin: 20px auto;
    }
    .slide img {
        max-height: 300px; /* Küçük ekranlarda daha küçük yükseklik */
    }
}