.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
  background-color: #f0f0f0;
  color: #54f034;
  box-shadow: 0 -4px 12px rgba(15, 172, 15, 0.603);
  flex-direction: row;
  padding: 80px 120px 45px;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h3 {
  color: #222;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #54f034;
  margin-top: 6px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #54f034;
}

/* İletişim alanı */
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #333;
  font-size: 14px;
}

.contact-item i {
  color: #555;
}

/* Disclaimer */
.disclaimer {
  margin-top: 40px;
  font-size: 13px;
  color: #444;
  background-color: #e0e0e0;
  padding: 12px 20px;
  border-radius: 5px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-style: italic;
}

/* hakklar */
.copyright {
  margin-top: 25px;
  font-size: 13px;
  color: #666;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}

/* Mobil uyum */
@media (max-width: 480px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    padding: 45px;
  }

  .footer-column {
    margin-bottom: 25px;
  }

  .footer-column h3::after {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-item {
    justify-content: center;
  }
}

body {
      font-family: Arial, sans-serif;
      
    }

    .navbar {
      box-shadow: 0 4px 10px rgba(15, 172, 15, 0.603);
      background-color: #333;
      width: 100%;   
      height: 80px;       
      display: flex;
      padding: 0 20px;
    }

    .dropdown-menu a {
      color: #666;
      font-weight: 500;
    }

    .dropdown-menu a:hover {
      background-color: #6abe26d3;
    }

    .navbar-brand {
      font-weight: bold;
      color: #666 !important;
    }

    @media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}

    
  
  