main {

    .container {
        max-width: 900px;
        margin: 2rem auto;
        padding: 20px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      }
  
      h1, h2, h3 {
        margin-top: 1.5rem;
      }
  
      h1 {
        text-align: center;
      }
  
      p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
      }
  
      /* Görsel Konteyneri */
      .image-container {
        text-align: center;
        margin: 20px 0;
      }
  
      .image-container img {
        max-width: 100%;
        height: auto;
        border-radius: 6px;
      }
  
      /* Geri Dön Butonu */
      .back-button {
        text-align: center;
        margin-top: 30px;
      }
  
      .back-button a {
        text-decoration: none;
        background: #007BFF;
        color: white;
        padding: 12px 18px;
        border-radius: 6px;
        font-size: 1rem;
        transition: background 0.3s ease-in-out;
      }
  
      .back-button a:hover {
        background: #0056b3;
      }
  
      /* Responsive Ayarlar */
      @media (max-width: 600px) {
        .container {
          padding: 15px;
        }
      }
}