/* Header */
.site-nav a {
  text-decoration: none;
  color: #333;
  padding: 7px 16px;
  border-radius: 6px;
  transition: color 0.2s ease;
}
.site-nav a:hover {
  color: var(--primary) 
}

/* Footer */

.site-footer {
  background: #fff;
  padding: 20px 0;
  border-top: 1px solid #ddd;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-branding a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--primary);
}
.footer-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav li {
  margin-left: 20px;
}
.footer-nav a {
  text-decoration: none;
  color: #333;
}
.footer-nav a:hover {
  color: var(--primary);
}
.footer-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 7px 16px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s ease;
  text-decoration: none;
}
.footer-cta:hover {
  background: var(--cta-hover) !important;
  color: #fff !important;
}
.footer-bottom {
  margin-top: 32px;
  padding-top: 14px;
  border-top: 1px solid #eee;
  font-size: 0.78rem;
  color: #aaa;
  text-align: left;
}
.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.footer-col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col-list li a {
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-col-list li a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-nav ul {
    flex-direction: column;
  }
  .footer-nav li {
    margin-left: 0;
    margin-top: 10px;
  }
}