/* Footer Top Bölümü */
.footer-top .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
}

/* Kolon */
.col-3 {
  flex: 1 1 calc(25% - 30px);
  max-width: calc(25% - 30px);
  box-sizing: border-box;
}

/* Responsive */
@media (max-width: 992px) {
  .col-3 {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media (max-width: 600px) {
  .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-top .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Footer Container */
.site-footer .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer Alt Bilgi */
.footer-bottom {
  width: 100%;
  border-top: 1px solid #ccc;
  padding: 20px 0;
  text-align: center;
  background-color: #f5f5f5;
  margin-top: 40px;
}

.site-owner {
  font-size: 1rem;
  color: #444;
}

.site-owner a {
  color: #0077b5;
  font-weight: bold;
  text-decoration: underline;
  transition: 0.3s;
}

.site-owner a:hover {
  color: #005580;
}
