html, body, p {
  margin: 0;
  padding: 0;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--blue);
    padding: 40px 60px;
    color: white;
    font-family: var(--fontisi);
    margin: 0;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.logo-footer {
    width: 80px;
    margin-bottom: 10px;
}

.footer-left p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.sosmed-icons img {
    width: 20px;
}

.footer-right {
    text-align: right;
    max-width: 480px;
}

.tagline {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    font-family: var(--fontjudul);
    text-transform: uppercase;
}

.kontak {
    font-family: var(--fontisi);
    font-size: 14px;
    margin-top: 30px;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .footer-left {
    align-items: center;      /* logo & teks di tengah */
    justify-content: center;  /* biar rapi vertikal */
  }

  .footer-right {
    text-align: center;
    margin-top: 20px;
  }

  .tagline {
    margin-bottom: 10px;
  }

  .social-icons {
    justify-content: center;  /* ikon sosmed di tengah */
  }

  .sosmed-icons img {
    align-items: center;
  }
}
