body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  color: #4B5563;
  background: #F9FAFB;
}

/* Container & Flex Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.flex-space {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Header */
.site-header {
  background: #ffffff;
  padding: 16px 0;
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.branding {
  display: flex;
  align-items: center;
  gap: 15px;
}

.branding img {
  height: 40px;
}

.branding .title-primary {
  color: #6C5F47; /* Updated from #1E3A8A */
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.branding .subtitle-dark {
  margin: 0;
  font-size: 0.9rem;
  color: #857f6e; /* softer subtitle tone */
}

/* Footer */
.site-footer {
  background: #f3f4f6;
  color: #4B5563;
  padding: 40px 0 20px;
  font-size: 0.95rem;
  border-top: 1px solid #e5e7eb;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left p {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-right li {
  margin-bottom: 10px;
}

.footer-right a {
  color: #6C5F47; /* Updated from #1E3A8A */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #A68C6D; /* Muted highlight on hover */
}

.footer-bottom {
  text-align: center;
  background: #e5e7eb;
  padding: 16px;
  font-size: 0.85rem;
  margin-top: 30px;
  color: #6B7280;
}

.footer-bottom img {
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .flex-space {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-top {
    flex-direction: column;
    padding: 0 12px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }
}

