.custom-footer {
    background-color: #222;
    color: white;
    padding: 40px 20px;
    font-family: sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-section {
    flex: 1;
    min-width: 220px;
    margin-bottom: 20px;
  }
  
  .footer-section h3 {
    margin-bottom: 10px;
    color: #fff;
  }
  
  .footer-section p,
  .footer-section a,
  .footer-bottom {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    text-decoration: underline;
    color: #fff;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 5px;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #999;
  }

  /* Mobil uyumlu hale getiriyoruz */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-section {
    width: 100%;
  }
}
  