.custom-footer {
  background-color: #1b0c2c;
  color: white;
  padding: 40px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding-top: 75px;
}

.footer-container {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  /* gap: 2rem; */
}

.footer-left {
  flex: 1;
  width: 40%;
}

.footer-logo {
  width: 311px;
  height: auto;
  margin-bottom: 10px;
}

.footer-tagline {
  margin: 0 0 10px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 60px;
  width: 60%;
}

.footer-column {
  width: 35%;
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: white;
  text-decoration: none;
}

.footer-column a:hover {
    color: white;
}

.footer-copyright {
    overflow-wrap: break-word;
    hyphens: manual;
    white-space: pre-wrap;
    padding: 0px;
    margin: 0px 0px 6px;
    cursor: text;
    position: relative;
    text-align: start;
    font-size: 0.6875rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5em;
    letter-spacing: 0em;
    color: rgb(255, 255, 255);
}

@media screen and (max-width: 768px) {
    .footer-container {
        gap: 2rem;
        flex-direction: column;
    }
    .footer-left {
        width: 100%;
    }
    .footer-links {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }    
}