* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  max-width: 100%;
}

footer {
  font-family: 'Inter', system-ui, sans-serif;
  display: flex;
  justify-content: center;
  background-color: #2a2a2a;
  color: #ffffff;
  border-top: 1px solid #444;
  padding: 15px;
  width: 100vw;
  margin-top: 20px;
  flex-direction: column;
}

footer h1 {
  font-size: 2rem;
  text-align: center;
  color: #ffffff;
}

footer h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin: 4px;
}

footer p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
}

footer a {
  color: #3376f2;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

footer a:hover {
  text-decoration: underline;
}

footer .footer-columns {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

footer .footer-column {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.footer-logo {
    display: inline-block;
    max-height: 120px;
    margin-left: 10px;
    vertical-align: middle;
    margin: 0px;
}

.developed-by {
    margin-top: 10px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
  footer .footer-columns {
    flex-direction: column;
    align-items: center;
  }
  
  footer p {
      font-size: 1rem;
  }
  
  .split {
      flex-direction: column;
  }
  
  .left {
      margin-right: auto;
      margin-left: auto;
  }
}

.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin: 0px;
}

.left {
  display: flex;
  flex-direction: column;
  margin-left: 5vw;
}

.left p {
  text-align: left;
  margin: 0px;
}

.right {
  display: flex;
  flex-direction: row;
  padding: 10px;
  border: 1px solid #444;
  border-radius: 8px;
  margin-right: 3vw;
  margin-top: 15px;
  gap: 10px;
  vertical-align: center;
}

.right img {
    margin:0px;
}