/* Arka plan ve temel font ayarları */
body {
    background-image: url('/img/isimsehir.png');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
    background-color: #1e1e2f;
    color: #ffffff;
    margin: 60px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  
  /* Kaydırma çubuğu stilleri (isteğe bağlı) */
  body::-webkit-scrollbar {
    width: 4px;
  }
  body::-webkit-scrollbar-track {
    background: #1c1c3b;
    border-radius: 10px;
  }
  body::-webkit-scrollbar-thumb {
    background: #ffd700; 
    border-radius: 10px;
    transition: background 0.3s ease;
  }
  body::-webkit-scrollbar-thumb:hover {
    background: #f0c020; 
  }
  
  /* Logo bölümü */
  .header-image {
    text-align: center; 
    margin-bottom: 20px; 
  }
  .header-image img {
    max-width: 150px; 
    height: auto;
    display: inline-block; 
  }
  
  /* Ana konteyner */
  .iletisim-container {
    max-width: 1100px;
    width: 100%;
    margin: 50px auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  /* Arka planlı bölüm */
  .iletisim-section {
    background-color: #1f1f31;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px;
    text-align: left;
  }
  
  .iletisim-section h1 {
    text-align: center;
    color: #f5d142;
    margin-bottom: 20px;
  }
  
  /* Başarılı/Hata mesajları */
  .success-msg {
    color: #28a745;
    font-weight: bold;
  }
  .error-msg {
    color: #dc3545;
    font-weight: bold;
  }
  
  /* Form */
  .iletisim-form {
    display: flex;
    flex-direction: column;
  }
  
  .iletisim-form label {
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  .iletisim-form input,
  .iletisim-form textarea {
    margin-bottom: 15px;
    background-color: #2b2b40;
    border: 1px solid #444;
    border-radius: 6px;
    color: #fff;
    padding: 10px;
  }
  
  /* Gönder butonu */
  .iletisim-form button {
    display: block;
    width: 100%;
    padding: 15px;
    margin-top: 15px;
    border: none;
    border-radius: 8px;
    background-color: #ffd700;
    color: #1c1c3b;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .iletisim-form button:hover {
    background-color: #f0c020;
  }
.contact-intro {
    margin-bottom: 20px;           
    font-size: 1rem;            
    line-height: 1.5;            
    color: #ffffff;               
    background-color: #2b2b40;     
    padding: 15px;               
    border-radius: 6px;           
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); 
  }
  
  
  @media (max-width: 768px) {
  .howto-section {
    padding: 20px;
  }
  .howto-section h1 {
    font-size: 1.8rem;
  }
  .intro {
    font-size: 0.95rem;
  }
}

/* Küçük ekranlar için */
@media (max-width: 440px) {
  .howto-container {
    max-width: 80%;
    margin: 10px auto;
    padding: 0 10px;
  }
  .howto-section {
    padding: 15px;
  }
  .howto-section h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .intro,
  .steps li,
  .points li,
  .tips li {
    font-size: 0.9rem;
  }
  .steps li:before,
  .points li:before,
  .tips li:before {
    left: -2px;
  }
}

/* Çok küçük ekranlar için */
@media (max-width: 375px) {
  .howto-container {
    max-width: 90%;
    margin: 8px auto;
    padding: 0 8px;
  }
  .howto-section {
    padding: 12px;
  }
  .howto-section h1 {
    font-size: 1.3rem;
  }
  .intro {
    padding: 12px;
  }
  .steps li,
  .points li,
  .tips li {
    font-size: 0.85rem;
  }
}