#footer {

    background: linear-gradient(135deg, rgba(21, 21, 44, 0.267));
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 40px 20px;
    color: white;
    font-family: Arial, sans-serif;
    top: 100%;
    width: 100vw;
    height: auto;


}

#footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

#footer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
}

#footer-col ul {
  list-style: none;
}

#footer-col ul li {
  margin-bottom: 10px;
}

#footer-col ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

#footer-col ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

hr {
  margin: 30px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

#footer-bottom {
  display: flex;
  flex-direction: row; 
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 15px;
}

#footer-bottom p {
  font-size: 14px;
}

#footer-bottom a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
  font-size: 14px;
}

#footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 16px;
}

@media (min-width: 768px) {
  #footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}