html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}

footer {
  background-color: #000036f5;
  color: #f8f9fa;
  padding: 1.125rem 1.5rem;
  font-size: 1rem;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;            
  max-width: none;          
  margin: 0;                 
  padding: 0 1.5rem;         
}
.footer-text {
  flex: 0 1 auto;
  text-align: left;
}
.footer-text p {
  margin: 0.25rem 0;
}
.footer-icons {
  flex: 0 1 auto;
  display: flex;
  gap: 0.75rem;
  margin-top: 0;
  justify-content: flex-end;
}
.footer-icon {
  width: 3rem;
  height: 3rem;
  transition: opacity 0.3s ease;
}
.footer-icon:hover {
  opacity: 0.7;
}
.footer-link {
  color: #f8f9fa;
  text-decoration: underline;
}

@media (max-width: 768px), (orientation: portrait) {
  footer {
    padding: 0.875rem 0.625rem;
    font-size: 0.875rem; 
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-icons {
    margin-top: 0.75rem; 
  }
  .footer-icon {
    width: 1.75rem; 
    height: 1.75rem;
  }
}
