footer {
  background-color: #2a2a2a;
  color: var(--text-white);
  padding: 2rem 4rem 1rem 4rem;
  position: relative; /* Ensures footer is at the bottom */
  bottom: 0; /* Aligns footer at the bottom of the viewport */
  width: 100%; /* Full width */
}
.footer-inside {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}
.footer-bold {
  font-weight: bold;
}

.footer-inside p {
  font-size: 0.8rem;
  margin: 0;
  padding: 0;
}

.footer-middle a {
  cursor: pointer;
  text-decoration: none;
  color: var(--text-white);
}

.footer-img {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-img img {
  width: 60px;
}

.footer-right {
  width: 30rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-bottom {
  margin: 0;
  padding: 0;
}
.footer-bottom hr {
  padding: 0 -4rem !important;
}

.text-container {
  width: 100%; /* Adjust width as needed */
  word-wrap: break-word;
  overflow-wrap: break-word;
  /* Optional styling to manage overflow */
  white-space: normal;
  overflow: hidden;
}
