<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ============================= */
/* 1. Temel Reset ve Font AyarlarÄ± */
/* ============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fafaf8;
  color: #2a3a2c;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
:root {
  --primary-color: #2a3a2c;
  --secondary-color: #b38b4e;
  --accent-color: #9c7a42;
  --light-bg: #ffffff;
  --muted-bg: #f0efe9;
  --text-color: #2a3a2c;
  --subtext-color: #555555;
  --border-color: #dddddd;
}

/* ============================= */
/* 2. HEADER */
/* ============================= */
.site-header,
.header-inner {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
  padding: 0;
  margin: 0 auto;
}

/* ============================= */
/* 3. INTRO-CONTAINER */
/* ============================= */
.intro-container {
  max-width: 960px;
  margin: 20px auto;
  padding: 0 20px;
  background-color: var(--light-bg);
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.intro-logo {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .intro-logo {
    max-width: 100%;
    padding: 10px 15px;
  }
}
.intro-section {
  text-align: center;
  padding-bottom: 20px;
}
.page-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
}
.lead-text { /* Bu sÄ±nÄ±f contact.php'de kullanÄ±lmÄ±yor, .info-text kullanÄ±lÄ±yor */
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.cta-button {
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
  border: 2px solid transparent;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-button:hover,
.cta-button:focus {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================= */
/* 4. DIVIDER */
/* ============================= */
.divider {
  border: none;
  border-top: 2px solid var(--border-color);
  margin: 20px auto;
  width: 100%;
  max-width: 960px;
}

/* ============================= */
/* 5. INFO GRID */
/* ============================= */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: 20px;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}
.info-item {
  background-color: var(--muted-bg);
  padding: 24px 20px;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.info-item:hover,
.info-item:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.info-title {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 6px;
  font-weight: 500;
}
.info-text { /* contact.php'deki paragraf iÃ§in kullanÄ±lÄ±r */
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 16px;
  line-height: 1.5;
}
.info-list {
  list-style: disc inside;
  color: var(--text-color);
  line-height: 1.5;
  margin-top: 8px;
}
.info-list li {
  margin-bottom: 8px;
  padding-left: 4px;
}

/* ============================= */
/* 6. FAQ */
/* ============================= */
.faq-item {
  margin-bottom: 16px;
}
.faq-item p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* ============================= */
/* 7. FOOTER */
/* ============================= */
.site-footer {
  background-color: var(--muted-bg);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
  margin-top: 40px;
}
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-nav {
  margin-bottom: 12px;
}
.footer-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 0.875rem;
}
.footer-list li a {
  color: var(--text-color);
  transition: color 0.2s ease;
}
.footer-list li a:hover,
.footer-list li a:focus {
  color: var(--secondary-color);
}
.footer-text {
  font-size: 0.875rem;
  color: var(--subtext-color);
}

/* ============================= */
/* 8. RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
  .intro-container {
    margin: 20px auto;
    padding: 0 16px;
  }
  .page-title {
    font-size: 1.75rem;
  }
  .lead-text, .info-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .cta-button {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
  .info-grid {
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .intro-container {
    padding: 0 12px;
  }
  .intro-logo {
    max-width: 100%;
    height: auto;
  }
  .page-title {
    font-size: 1.5rem;
  }
  .lead-text, .info-text {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  .cta-button {
    width: 100%;
    padding: 12px 0;
  }
  .info-grid {
    display: block;
  }
  .info-item {
    margin-bottom: 24px;
  }
}

/* ================================= */
/* Ä°LETÄ°ÅžÄ°M SAYFASI Ã–ZEL STÄ°LLERÄ°   */
/* ================================= */
/* SORUN GÄ°DERME NOTU: EÄŸer aÅŸaÄŸÄ±daki stiller uygulandÄ±ktan sonra form hala istediÄŸiniz gibi gÃ¶rÃ¼nmÃ¼yorsa:
   1. TarayÄ±cÄ± Ã¶nbelleÄŸini temizlediÄŸinizden (Ctrl+Shift+R veya Cmd+Shift+R ile hard refresh).
   2. CSS dosyasÄ±nÄ±n sunucuda gÃ¼ncel olduÄŸundan.
   3. HTML'deki class isimlerinin CSS'deki ile eÅŸleÅŸtiÄŸinden.
   4. BaÅŸka CSS dosyalarÄ±ndan gelen ve bu kurallarÄ± ezen (`!important` iÃ§eren veya daha spesifik) kurallar olmadÄ±ÄŸÄ±ndan emin olun.
   5. TarayÄ±cÄ± geliÅŸtirici araÃ§larÄ±nÄ± (F12) kullanarak elementlerin hangi stilleri aldÄ±ÄŸÄ±nÄ± kontrol edin.
*/

.container { /* Genel container, gerekirse kullanÄ±labilir */
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.main-content { /* Ä°letiÅŸim sayfasÄ± iÃ§eriÄŸini sarmalar */
  padding-top: 40px;
  padding-bottom: 40px;
}

.info-section { /* Ä°letiÅŸim sayfasÄ±ndaki baÅŸlÄ±k, aÃ§Ä±klama ve formu iÃ§eren bÃ¶lÃ¼m */
  max-width: 720px;
  margin: 20px auto;
  padding: 20px;
  background-color: var(--light-bg);
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  text-align: center; /* Ä°Ã§indeki baÅŸlÄ±k ve paragrafÄ±n ortalanmasÄ± iÃ§in */
}

.contact-form { /* Formun kendisi */
  max-width: 600px; /* Formun maksimum geniÅŸliÄŸi */
  margin: 20px auto 0 auto; /* .info-section iÃ§inde ortalar ve Ã¼stten boÅŸluk bÄ±rakÄ±r */
  display: flex;
  flex-direction: column;
  gap: 20px; /* Form elemanlarÄ± arasÄ±ndaki boÅŸluk */
}

.form-group { /* Label ve input/textarea ikilisini iÃ§eren grup */
  display: flex;
  flex-direction: column;
  gap: 6px; /* Label ve input arasÄ±ndaki boÅŸluk */
  width: 100%; /* Form grubunun .contact-form geniÅŸliÄŸinin tamamÄ±nÄ± almasÄ±nÄ± saÄŸlar */
  text-align: left; /* Grup iÃ§indeki label metninin sola yaslanmasÄ±nÄ± saÄŸlar (text-align:center mirasÄ±ndan kaÃ§Ä±nmak iÃ§in) */
}

.contact-form label {
  font-weight: 600;
  color: var(--text-color);
  /* text-align: left; zaten .form-group iÃ§inde ayarlandÄ± */
}

/* HTML'deki class isimleriyle eÅŸleÅŸecek ÅŸekilde gÃ¼ncellendi */
.contact-form .form-input,  /* &lt;input class="form-input"&gt; iÃ§in */
.contact-form .form-textarea { /* &lt;textarea class="form-textarea"&gt; iÃ§in */
  padding: 12px;
  font-size: 1rem;
  border: 1px solid var(--border-color); /* --border-color deÄŸiÅŸkeni kullanÄ±ldÄ± */
  border-radius: 4px;
  width: 100%; /* Input ve textarea'nÄ±n .form-group iÃ§inde tam geniÅŸlik almasÄ±nÄ± saÄŸlar */
  box-sizing: border-box;
  background-color: #fff; /* Gerekirse input arka planÄ±nÄ± belirginleÅŸtirmek iÃ§in */
  color: var(--text-color); /* YazÄ± rengi */
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
  border-color: var(--secondary-color); /* OdaklanÄ±ldÄ±ÄŸÄ±nda kenarlÄ±k rengi */
  box-shadow: 0 0 0 0.2rem rgba(179, 139, 78, 0.25); /* OdaklanÄ±ldÄ±ÄŸÄ±nda hafif bir gÃ¶lge */
}


.contact-form textarea.form-textarea { /* Sadece textarea iÃ§in ek ayar */
  resize: vertical;
  min-height: 100px; /* Textarea iÃ§in minimum yÃ¼kseklik */
}

.contact-form .form-button { /* GÃ¶nder butonu */
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 12px 20px; /* Padding ayarlandÄ± */
  font-size: 1rem;
  font-weight: 500; /* Font aÄŸÄ±rlÄ±ÄŸÄ± eklendi */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  /* Butonun tam geniÅŸlik almasÄ± isteniyorsa width: 100%; eklenebilir */
  /* width: 100%; */
  margin-top: 10px; /* Buton ile son form grubu arasÄ±na biraz boÅŸluk */
}

.contact-form .form-button:hover {
  background-color: var(--accent-color);
  transform: translateY(-1px); /* Hover efekti iÃ§in hafif yukarÄ± kayma */
}

</pre></body></html>