#footer {
  background-color: rgb(43, 43, 43);
  color: white;
  padding: 2rem 0;
}

#footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Left section */
.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: white;
  text-align: left;
  max-width: 300px;
}

.footer-left p {
  text-align: left;
}

/* Right section */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.footer-right h5 {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.footer-right ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.footer-right .nav-link {
  color: #cccccc;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-right .nav-link:hover {
  color: var(--primary-color);
}

/* Responsive fallback: stack on small screens */
@media screen and (max-width: 768px) {
  #footer .container {
    flex-direction: column;

  }


}
