footer {
    background-color: #F29DFF;
    color: #000;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
    font-size: 0.95rem;
}

footer p {
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    margin: 0 0.75rem;
    font-weight: 500;
}

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

.footer-logo img {
    max-width: 200px;
    height: 200px;
    margin-top: -50px;
    margin-bottom: -50px;
}


.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.social-icons a {
    display: inline-block;
}

.social-icons img {
    width: 50px;
    height: 50px;
}

@media (max-width: 768px) {
  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 0.5rem 5rem;
    text-align: left;
  }

  .footer-links a {
    margin: 0;
  }
}