/* Footer Styles */
#footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Footer Content Layout */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* Footer Logo */
.footer-logo img {
  width: 100px; /* Adjust size for balance */
  height: auto;
}

/* Footer Navigation */
.footer-nav {
  padding: 0.5rem 0;
  height: fit-content;
}

.footer-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--tertiary-color);
}

/* Footer Contact */
.footer-contact p {
  margin: 0.5rem 0;
}

.footer-contact a {
  text-decoration: none;
  color: var(--tertiary-color);
  font-weight: 500;
}

/* Footer Bottom Section */
.footer-bottom {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: #fff;
}
