body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-image: url(../images/1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  
  
  header {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 10px 0;
    background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(150, 150, 150, 0));
  }
  
  header .logo img {
    max-width: 550px;
    height: auto; /* Görsel oranını korur */
  }
  nav ul li{
    list-style: none;
  }
  nav ul li a {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: #ffffff;
    transition: color 0.2s ease-in-out;
  }
  
  
  nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(9, 219, 219);
    transform: scaleX(0);
    transition: transform 0.2s ease-in-out;
  }
  
  
  nav ul li a:hover::after {
    transform: scaleX(1);
  }
  
  .container h6{
    text-align: right;
    margin: 0px;
  }
  
  .container h6 a{
    text-decoration: none;
    color: rgb(255, 255, 255);
  }
  
  .banner {
    display: flex;
    flex-direction: column;
    border-radius: 15px 15px 0 0;
    width: 93%;
    margin: auto;
    align-items: center;
    justify-content: center;
    min-height: 20vh;
    text-align: center;
    font-size: 2rem;
    background-color: rgba(255, 255, 255, 0.85);
  }

.orta {
    display: flex;
    width: 90%;
    height: auto;
    margin: auto;
    border-radius: 0 0 15px 15px;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
  }
  
  .kalite {
    width: 50%;
    height: auto;
  }
  
  .orta .kalite img {
    display: block;
    width: 60%;
    height: auto;
    opacity: 1;
    margin: auto;
    padding: 15px;
  }
  
  .list {
    width: 50%;
    height: auto;
    margin: auto;
    justify-content: center;
    font-weight: bold;
  }
  
  .list ul li{
    padding: 20px;
  }

footer {
    background: linear-gradient(to bottom, rgba(150, 150, 150, 0), rgb(0, 0, 0));
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
    padding: 20px;
}
  
html {
    scroll-behavior: smooth;
}
  

  /* Media Queries -------------------------------------------------------------------- */
  
  /* Ekran ölçüsü 768px ve üzeri için */
  @media only screen and (min-width: 768px) {
    body {
        width: 100%;
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        background-image: url(../images/1.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
      }
      
      
      header {
        width: 100%;
        display: flex;
        list-style: none;
        justify-content: center;
        padding: 20px 0;
        background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(150, 150, 150, 0));
      }
      
      header .logo img {
        max-width: 100%;
        height: 50px; /* Görsel oranını korur */
      }
      
      
      header nav ul {
        display: flex;
        list-style: none;
        justify-content:center;
        font-size: 5px;
      }
      
      header nav ul li {
        font-size: 11px;
        margin:auto;
      }
      
      header nav ul li a {
        font-weight: bold;
        text-decoration: none;
        color: #ffffff;
        font-weight: bold;
      }
      
      header nav ul li a:hover {
        color: rgb(9, 219, 219);
      }
      
      .container h6{
        width:100%;
        text-align: right;
        margin: 0;
      }
      
      .container h6 a{
        text-decoration: none;
        color: rgb(255, 255, 255);
      }
      
      .banner {
        display: flex;
        flex-direction: column;
        border-radius: 15px 15px 0 0;
        width: 91.4%;
        padding: 7px;
        margin: auto;
        align-items: center;
        justify-content: center;
        min-height: 20vh;
        text-align: center;
        font-size: 2rem;
        background-color: rgba(255, 255, 255, 0.85);
      }
    
    footer {
      background: linear-gradient(to bottom, rgba(150, 150, 150, 0), rgb(0, 0, 0));
      color: #fff;
      text-align: center;
      font-size: 0.9rem;
      padding: 20px;
    }
    
    html {
     scroll-behavior: smooth;
    }
  }
  
  /* Ekran ölçüsü 480px ve üzeri için ---------------------------------------------*/
  @media only screen and (max-width: 480px) {
    body {
        width: 100%;
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        background-image: url(../images/1.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
      }
      
      
      header {
        width: 100%;
        display: flex;
        list-style: none;
        justify-content: center;
        padding: 20px 0;
        background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(150, 150, 150, 0));
      }
      
      header .logo img {
        max-width: 100%;
        height: 50px; /* Görsel oranını korur */
      }
      
      
      header nav ul {
        display: block;
        list-style: none;
        justify-content:center;
        font-size: 5px;
      }
      
      header nav ul li {
        font-size: 11px;
        margin:auto;
      }
      
      header nav ul li a {
        font-weight: bold;
        text-decoration: none;
        color: #ffffff;
        font-weight: bold;
      }
      
      header nav ul li a:hover {
        color: rgb(9, 219, 219);
      }
      
      .container h6{
        width:300px;
        text-align: right;
        margin: 0;
      }
      
      .container h6 a{
        text-decoration: none;
        color: rgb(255, 255, 255);
      }
      
      .banner {
        display: flex;
        flex-direction: column;
        border-radius: 15px 15px 0 0;
        width: 81%;
        padding: 3px;
        margin: auto;
        align-items: center;
        justify-content: center;
        min-height: 20vh;
        text-align: center;
        font-size: 2rem;
        background-color: rgba(255, 255, 255, 0.85);
      }

      .orta {
        display: flex; /* Flexbox kullanarak düzenleme */
        flex-direction: column; /* Dikey hizalama */
        width: 80%;
        height: auto;
        margin: auto;
        text-align: center;
        border-radius: 0 0 15px 15px;
        background-color: rgba(255, 255, 255, 0.85);
        padding: 5px;
    }
    
    .kalite {
        display: flex; /* Flexbox kullanarak resim ve listeyi yan yana yerleştirme */
        justify-content: center; /* Ortalamak için */
        align-items: center; /* Dikey ortalama */
        width: 100%; /* Tam genişlik */
    }
    
    .quality-image {
        width: 20%; /* Resmin genişliği */
        height: auto; /* Yüksekliği otomatik ayarlama */
        opacity: 1;
        margin: auto;
        padding: 5px;
    }
    
    .list {
        display: flex; /* Flexbox kullanarak listeyi ortalama */
        justify-content: center; /* Ortalamak için */
        width: 100%; /* Tam genişlik */
    }
    
    .list ul {
        width: 200px; /* Liste genişliği */
        margin: auto; /* Ortalamak için */
        height: auto;
        text-align: center; /* Metni ortalama */
    }
    
    .list ul li {
        font-size: 10px; /* Yazı boyutu */
        padding: 10px; /* İç boşluk */
        margin: auto; /* Ortalamak için */
        height: auto;
        text-align: center; /* Metni ortalama */
    }
    
    
    footer {
      background: linear-gradient(to bottom, rgba(150, 150, 150, 0), rgb(0, 0, 0));
      color: #fff;
      text-align: center;
      font-size: 0.9rem;
      padding: 20px;
    }
    
    html {
     scroll-behavior: smooth;
    }
  }
  
  /* Ekran ölçüsü 320px ve üzeri için ----------------------------------------------------*/
  @media only screen and (max-width: 350px) {
    body {
        width: 100%;
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        background-image: url(../images/1.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
      }
      
      
      header {
        width: 100%;
        display: flex;
        list-style: none;
        justify-content: center;
        padding: 20px 0;
        background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(150, 150, 150, 0));
      }
      
      header .logo img {
        max-width: 100%;
        height: 50px; /* Görsel oranını korur */
      }
      
      
      header nav ul {
        display: block;
        list-style: none;
        justify-content:center;
        font-size: 5px;
      }
      
      header nav ul li {
        font-size: 11px;
        margin:auto;
      }
      
      header nav ul li a {
        font-weight: bold;
        text-decoration: none;
        color: #ffffff;
        font-weight: bold;
      }
      
      header nav ul li a:hover {
        color: rgb(9, 219, 219);
      }
      
      .container h6{
        width:300px;
        text-align: right;
        margin: 0;
      }
      
      .container h6 a{
        text-decoration: none;
        color: rgb(255, 255, 255);
      }
      
      .banner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 20vh;
        text-align: center;
        font-size: 2rem;
        font-family: 'Courier New', Courier, monospace;
        background-color: rgba(255, 255, 255, 0.85);
      }

      .orta {
        display: flex; /* Flexbox kullanarak düzenleme */
        flex-direction: column; /* Dikey hizalama */
        width: 95%;
        height: auto;
        margin: auto;
        text-align: center;
        border-radius: 15px;
        background-color: rgba(255, 255, 255, 0.85);
        padding: 5px;
    }
    
    .kalite {
        display: flex; /* Flexbox kullanarak resim ve listeyi yan yana yerleştirme */
        justify-content: center; /* Ortalamak için */
        align-items: center; /* Dikey ortalama */
        width: 100%; /* Tam genişlik */
    }
    
    .quality-image {
        width: 20%; /* Resmin genişliği */
        height: auto; /* Yüksekliği otomatik ayarlama */
        opacity: 1;
        margin: auto;
        padding: 5px;
    }
    
    .list {
        display: flex; /* Flexbox kullanarak listeyi ortalama */
        justify-content: center; /* Ortalamak için */
        width: 100%; /* Tam genişlik */
    }
    
    .list ul {
        width: 200px; /* Liste genişliği */
        margin: auto; /* Ortalamak için */
        height: auto;
        text-align: center; /* Metni ortalama */
    }
    
    .list ul li {
        font-size: 10px; /* Yazı boyutu */
        padding: 10px; /* İç boşluk */
        margin: auto; /* Ortalamak için */
        height: auto;
        text-align: center; /* Metni ortalama */
    }
    
    footer {
        background: linear-gradient(to bottom, rgba(150, 150, 150, 0), rgb(0, 0, 0));
        color: #fff;
        text-align: center;
        font-size: 0.9rem;
        padding: 20px;
    }
      
    html {
        scroll-behavior: smooth;
    }
  }