.footer {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: #a4bae5; /* or your preferred light tone */
}

.footer-top {
  background: rgb(238, 237, 213);
  padding: 20px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-summary,
.footer-links{
  border-top: 1px solid rgba(31, 65, 121, 0.05);
}
.footer-bottom {
  border-top: 1px solid rgba(31, 65, 121, 0.05);
}

.footer-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 auto 8px;
  justify-content: space-between;
}

.footer-card {
  flex: 1 1 180px;
  min-width: 200px;
  background: #ffffff;
  border: none;
  border-radius: 15px;
  padding: 18px;
  box-shadow: none;

}

.footer-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--accent);
}

.footer-card p {
  margin: 0;
  color: var(--text-primary);
  font-weight: 600;
}

.footer-links {
  width: 100%;
  margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid rgba(31, 65, 121, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer-links a {
  color: var(--accent);
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid rgba(31, 65, 121, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.footer-links a:hover {
  background: rgba(69, 235, 199, 0.08);
  transform: translateY(-1px);
}

.footer-bottom {
  margin-top: 20px;
  padding: 24px 20px;          /* more breathing space */
  background: #d0e9ed;         /* light background */
  border-top: 1px solid #ddd;  /* subtle divider */
  color: var(--text-primary);
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* spreads items across width */
  align-items: center;
  gap: 18px;
  width: 100%;                 /* force full width */
  min-height: 70px;            /* prevents collapse */
  box-sizing: border-box; 
  text-align: center; 
}

.footer-bottom .footer-logo {
  margin-bottom: 0;
}

.footer-bottom-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer-bottom span {
  display: inline;
}

.footer-visitors {
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 560px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-text {
    flex-direction: column;
    gap: 8px;
  }
}

.footer-logo {
  text-align: center;
  margin-bottom: 18px;
}

.footer-logo img {
  max-width: 80px;
  height: auto;
  display: inline-block;
}

@media (max-width: 860px) {
  .footer-summary {
    flex-direction: column;
  }
}
