.site-footer {
  background: #f4f4f4;
  padding: 30px 15px;
  font-size: 14px;
  border-top: 1px solid #ddd;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img {
  width: 32px;
  height: 32px;
}
.footer-logo span {
  font-weight: bold;
  font-size: 16px;
}
.footer-nav, .footer-info {
  margin-top: 10px;
}
.footer-nav a, .footer-info a {
  margin: 0 10px;
  color: #007bff;
  text-decoration: none;
}
.footer-info a:hover, .footer-nav a:hover {
  text-decoration: underline;
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  max-width: 600px;
  width: 90%;
  padding: 30px;
  border-radius: 12px;
  position: relative;
}
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}
.site-footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-footer .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.site-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.site-footer .footer-info {
  text-align: center;
}
