/* Genel ayarlar */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #4e3629; /* senin seçtiğin arka plan rengi */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative; /* Marka konumlandırması için eklendi */
  }
  
  /* Sol üst köşe - logo/şirket ismi */
  .brand {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.9;
    color: white;
  }
  
  /* Kutunun bulunduğu alan */
  .container {
    text-align: center;
    padding: 20px;
  }
  
  /* Başlık */
  h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  
  /* Alt yazı */
  p {
    font-size: 1.1rem;
    opacity: 0.8;
  }