  .linkler-group {
    margin-bottom: 20px;
  }
  
  .linkler-group h3 {
    margin-bottom: 10px;
  }
  
  .linkler-group ul {
    list-style: none;
    padding: 0;
    display: none; /* Başlangıçta listeyi gizleyin */
  }
  
  .linkler-group ul.show {
    display: block; /* Açılır menüyü göstermek için display değerini değiştirin */
  }
  
  .linkler-group ul li {
    margin-bottom: 5px;
  }
  
  .linkler-group ul li a {
    color: blue;
    text-decoration: none;
  }
  
  .linkler-group ul li a:hover {
    text-decoration: underline;
  }
  
  .linkler-group .toggle-button {
    background-color: #f2f2f2;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
  }
  
  .linkler-group ul li {
  display: inline-block;
  margin-right: 10px;
}

 .contact-box {
    background-color: #f2f2f2;
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact-box a {
    color: blue;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-box a i {
    margin-right: 5px;
  }
  
  .contact-box a:hover {
    text-decoration: underline;
  }
  
  .contact-box a::before {
    content: "\f095";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
  }
    /* Header */
        header {
            background-color: #f2f2f2;
            padding: 20px;
            text-align: center;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        header h1 {
            margin: 0;
            font-size: 24px;
            color: #333;
        }

        .navbar {
            margin-top: 20px;
        }

        .navbar ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
        }

        .navbar li {
            margin: 0 10px;
        }

        .navbar a {
            text-decoration: none;
            color: #555;
            font-weight: bold;
            transition: color 0.3s;
        }

        .navbar a:hover {
            color: blue;
        }

        /* Footer */
        footer {
            background-color: #f2f2f2;
            padding: 20px;
            text-align: center;
            font-size: 14px;
            color: #555;
            box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
        }
   
  .content-list li a {
    font-size: 16px;
    padding: 10px;
    display: inline-block;
  }
  
body {
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
    body {
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  h2 {
    margin-top: 30px;
  }
  
  ul {
    margin-bottom: 20px;
  }
  .call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
  }

  .call-button .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .call-button .btn:hover {
    background-color: #0056b3;
  }

  .call-button .btn .fas {
    margin-right: 5px;
  }

  /* Kontrast oranını iyileştirmek için arka plan ve ön plan renklerini ayarlayalım */
  .call-button .btn {
    background-color: #0066cc;
    color: #ffffff;
  }

  .call-button .btn:hover {
    background-color: #004c99;
  }
 