.text-tile {
  color: #36649a;
}
.footer-container {
  height: 390px;
}
.font-footer {
  font-size: 14px;
}
.copyright {
  height: 72px;
  background: #36649a;
}
.copyright .container {
  display: flex;
  align-items: center;
  height: 100%;
}

.footer-download-aplikasi {
  gap: 20px;
  margin-bottom: 20px;
}
.footer-download-aplikasi img {
  max-width: 100%;
  height: auto;
  display: block;
}

.visitor-card {
  display: flex;
  align-items: center;
  border-radius: 30px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 15px 25px;
  max-width: 350px;
  margin: 30px auto;
  right: 3%;
  top: 83%;
}

.visitor-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd700 0%, #ffc107 60%, #ffa000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.visitor-icon i {
  font-size: 24px;
  color: black;
}

.visitor-info .total {
  font-weight: bold;
  color: orange;
}

.visitor-info .today {
  color: orange;
  font-weight: bold;
}

.visitor-info span {
  display: block;
  font-size: 14px;
  color: #000;
}

@media (max-width: 576px) {
  .footer-download-aplikasi {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-download-aplikasi > div {
    width: 100%;
    text-align: left;
  }

  .footer-download-aplikasi img {
    width: 120px; /* Atur ukuran gambar lebih kecil */
    max-width: 100%;
  }

  /* Ukuran logo ISO juga diperkecil */
  .text-tile + img {
    width: 150px;
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .visitor-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 90%;
    padding: 20px;
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }

  .visitor-icon {
    margin: 0 0 10px 0;
  }

  .visitor-info span {
    font-size: 16px;
  }
}