footer {
  background-color: var(--color-dark);
  color: #ffffff;
  padding: 50px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-brand {
  flex: 1;
  min-width: 300px;
  margin-bottom: 30px;
}

.footer-brand h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-sections {
  display: flex;
  flex: 2;
  justify-content: flex-end;
  gap: 40px;
  flex-wrap: nowrap;
}

.footer-section {
  min-width: 180px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: normal;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 15px;
}

.footer-section a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #cccccc;
}

.footer-contact a {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: #444;
}

.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
}

.copyright {
  margin-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #888;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Responsive design */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .footer-sections {
      width: 100%;
      justify-content: space-around;
      gap: 20px;
  }
  
  .footer-section {
      min-width: 140px;
      width: auto;
  }

  .footer-bottom {
      text-align: center;
  }

  .footer-links {
      margin-top: 15px;
      justify-content: center;
  }

  .footer-brand {
      text-align: left;
      margin-bottom: 40px;
      align-self: flex-start;
      width: 100%;
  }
}