/* Footer Styling */
.footer {
    background-color: #333; /* Gri ton */
    color: #fff;
    padding: 0px 0;
    text-align: center;
  }
  
  .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  
  .footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  
  .footer-left, .footer-center, .footer-right {
    flex: 1;
    padding: 10px;
  }
  
  .footer-left ul, .footer-center ul, .footer-right ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-left li, .footer-center li, .footer-right li {
    margin-bottom: 10px;
  }
  
  .footer-left a, .footer-center a, .footer-right a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-left a:hover, .footer-center a:hover, .footer-right a:hover {
    color: #007bff;
  }
  
  .footer-right ul {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .footer-right a {
    font-size: 20px;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    background-color: #222; /* Daha koyu gri */
    color: #bbb;
    padding: 10px 0; /* Daha az padding */
    font-size: 14px;
    text-align: center;
    margin-top: 20px; /* Arka plandaki gri alanı engellemek için margin-top ekledik */
  }
  
  .footer-bottom a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-bottom a:hover {
    color: #007bff;
  }
  
  /* Mobile Styling */
  @media (max-width: 767px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-left, .footer-center, .footer-right {
      text-align: center;
      margin-bottom: 20px;
    }
  
    .footer-bottom {
      font-size: 12px;
    }
  }  