.footer {
  background-color: #f8f9fa;
  padding: 40px 0;
  font-family: sans-serif;
  color: #333;
  border-top: 1px solid #e7e7e7;
}

.footerContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logoSection {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

.logo {
  width: 100%;
  margin-bottom: 10px;
}

.companyName {
  font-size: 18px;
  font-weight: bold;
}

.linksSection,
.contactSection {
  padding-top: 10px;
}

.linksSection h3,
.contactSection h3 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.linksList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.linksList li {
  margin-bottom: 10px;
}

.linksList a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s ease;
}

.linksList a:hover {
  color: #007bff;
}

.contactInfo p {
  margin: 0 0 10px;
  line-height: 1.6;
}

.socialIcons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.socialIcons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #eaeaea;
  border-radius: 50%;
  color: #333;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.socialIcons a:hover {
  background-color: #2e4fff;
  color: white;
  transform: scale(1.1);
}

.bottomBar {
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #e7e7e7;
  font-size: 14px;
  color: #777;
} 

@media (max-width: 768px) {
  .footer {
    padding: 20px;
    text-align: center;
  }

  .footerContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* Logo ve yönlendirmeleri gizle */
  .logoSection,
  .linksSection,
  .linksList,
  .logo {
    display: none !important;
  }

  /* Sadece iletişim kısmı gösterilsin */
  .contactSection {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .contactInfo p {
    font-size: 14px;
    margin: 6px 0;
  }

  .socialIcons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
  }

  .bottomBar {
    text-align: center;
    border-top: 1px solid #e7e7e7;
    padding-top: 16px;
    font-size: 12px;
    color: #777;
    width: 100%;
  }
}