.footer-section {
  background-color: #1e1e1e;
  color: #ddd;
  padding: 80px 20px 40px; /* YÜKSEKLİK ARTIRILDI */
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-description {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.5;
}

.footer-list li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-list li a:hover {
  color: #d61c1c;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.95rem;
  color: #aaa;
}




/* Mobil uyum */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
