footer {
  background-color: #c8b0b0;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

footer p {
  margin-left: 20px;
  display: block; /* Ensures the paragraph text behaves normally */
  line-height: 1.5; /* Adjusts the space between lines for readability */
  white-space: preserve; /* Ensures text breaks normally between lines */
}

footer .social-media a {
  margin-right: 10px;
}

#bottom-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100px;
  width: 100%;
}

@media (max-width: 768px) {
  footer p {
    display: none;
  }

  footer .social-media {
    margin: 0 auto;
  }

  footer .social-media a {
    margin: 15px;
  }

}
