/* Footer container */
.footer {
  background-color: #fe3989;
  color: white;
  padding: 2rem 0;
  text-align: center;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 12rem;
}

/* Layout for the footer content */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 2rem;
}

/* Contact information styling */
.contact-info {
  text-align: left;
  min-width: 200px; /* Ensure consistent width */
}

.contact-info p {
  margin: 0.5rem 0;
  color: white;
}

/* Footer rights section */
.footer-rights {
  font-size: 14px;
  margin-top: 2rem;
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer {
    height: auto;
    align-items: center;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .contact-info {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 1.5rem 0;
    height: auto;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .contact-info {
    text-align: center;
  }
  .contact-info p {
    font-size: medium;
  }
  .footer-rights {
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 1rem 0;
    height: max-content;
  }
  .footer-container {
    gap: 1rem;
  }
  .contact-info p {
    font-size: small;
  }
  .footer-rights {
    font-size: 12px;
    margin-top: 0.5rem;
  }
}

@media (max-width: 360px) {
  .footer {
    padding: 0.5rem 0;
    height: max-content;
  }
  .footer-container {
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-info {
    min-width: 100%;
  }
  .footer-rights {
    font-size: 10px;
  }
}
