.sss {  width: 100%;  height: auto;  padding: 80px 0px;}.sss .testimonial-header p {  width: 100%;  height: auto;  margin-left: 0px;}/* --- TEMEL AYARLAR --- *//* --- DEĞİŞKENLER (Renkleri buradan kolayca değiştir) --- */:root {  --primary-light: #e7f1ff;  --text-color: #212529;  --border-color: #dee2e6;  --background-color: #f8f9fa;  --white: #fff;  --shadow: 0 4px 15px rgba(0, 0, 0, 0.07);  --primary-color: #d52b1e; /* Ana Mavi Renk */  --primary-hover: #d52b1e; /* Butonun üzerine gelinceki renk */  --muted-text: #6c757d; /* Soluk metin rengi */  --card-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);  --card-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.12);}/* --- ANA KUTU (.contact-section) --- */.contact-section {  background-color: #ffffff;  border-radius: 1rem; /* 16px - Yuvarlak köşeler */  padding: 2.5rem 2rem; /* 40px 32px - İç boşluk */  box-shadow: var(--card-shadow);  text-align: center; /* İçindeki her şeyi ortalar */  transition: all 0.3s ease-in-out;  border: 1px solid #e9ecef; /* Çok hafif bir çerçeve */  margin-top: 2rem; /* Üstten boşluk bırakır */}/* Üzerine gelince kutuya hafif bir kalkma efekti */.contact-section:hover {  transform: translateY(-5px);  box-shadow: var(--card-shadow-hover);}/* --- BAŞLIK (h3) --- */.contact-section h3 {  font-size: 1.75rem; /* 28px */  font-weight: 600;  margin-top: 0;  margin-bottom: 0.75rem; /* 12px */  color: #212529;}/* --- AÇIKLAMA PARAGRAFI (p) --- */.contact-section p {  color: var(--muted-text); /* Soluk renk */  font-size: 1.1rem; /* 17.6px */  line-height: 1.6;  margin-bottom: 1.5rem; /* 24px - Butonla arasına boşluk */  max-width: 450px; /* Çok uzun satırları engeller */  margin-left: auto;  margin-right: auto;}/* --- BUTON (a.btn) --- */.contact-section .btn {  display: inline-flex; /* İkon ve metni düzgün hizalamak için */  align-items: center;  justify-content: center;  background-color: var(--primary-color);  color: #ffffff;  text-decoration: none;  font-weight: 600;  font-size: 1.1rem; /* 17.6px - "btn-lg" etkisi */  padding: 0.8rem 2rem; /* 12.8px 32px - "btn-lg" etkisi */  border-radius: 50px; /* Tam yuvarlak (pill shape) buton */  border: none;  transition: all 0.2s ease-in-out;}.contact-section .btn:hover {  background-color: var(--primary-hover);  transform: scale(1.05); /* Üzerine gelince hafif büyüsün */}/* --- BUTON İÇİNDEKİ İKON (i) --- */.contact-section .btn i {  margin-right: 0.5rem; /* 8px - İkonla yazı arası boşluk */  font-size: 1.2em; /* İkonu yazıdan biraz büyük yapar */}/* --- GRID SİSTEMİ NOTU (.col-xl-6) --- *//*    .col-xl-6 class'ı normalde Bootstrap'in grid sistemine aittir   ve ekran 1200px'den büyükse genişliği %50 yapar.    Eğer Bootstrap kullanmıyorsan, bu class'ın bir etkisi olmaz.   Bu kutunun genişliğini kendin ayarlamak istersen aşağıdaki gibi bir kod ekleyebilirsin.*//* --- SSS BÖLÜMÜ --- */.faq-category-title {  font-weight: 600;  margin-top: 40px;  margin-bottom: 20px;  display: flex;  align-items: center;  gap: 12px; /* İkon ve yazı arası boşluk */  color: var(--primary-color);  border-bottom: 2px solid var(--border-color);  padding-bottom: 10px;}.faq-category-title svg {  width: 28px;  height: 28px;}/* --- AKORDİYON (DETAILS/SUMMARY) --- */.faq-item {  background-color: var(--white);  border: 1px solid var(--border-color);  border-radius: 8px;  margin-top: 1rem;  transition: box-shadow 0.3s ease;  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);}.faq-item:hover {  box-shadow: var(--shadow);}.faq-title {  font-size: 1.1rem;  font-weight: 600;  padding: 1rem 1.25rem;  cursor: pointer;  list-style: none; /* Varsayılan oku kaldırır */  display: flex;  justify-content: space-between;  align-items: center;}/* Chrome/Safari'de varsayılan oku gizle */.faq-title::-webkit-details-marker {  display: none;}.faq-title .chevron {  width: 20px;  height: 20px;  transition: transform 0.25s ease-in-out;}/* Akordiyon açıldığında */.faq-item[open] {  border-color: var(--primary-color);}.faq-item[open] > .faq-title {  color: var(--primary-color);}.faq-item[open] .chevron {  transform: rotate(180deg);}.faq-content {  padding: 1.25rem 1.25rem;  border-top: 1px solid var(--primary-light);  color: #555;}/* Açılma animasyonu */.faq-item[open] .faq-content {  animation: fadeIn 0.4s ease;}@keyframes fadeIn {  from {    opacity: 0;    transform: translateY(-10px);  }  to {    opacity: 1;    transform: translateY(0);  }}