.site-footer {
  background: #f2f3f5; /* Matches your page background */
  padding: 60px 20px; /* Space around the card */
}

.footer-card {
  max-width: 1300px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 32px; /* Large rounded corners like Azimute */
  padding: 80px 60px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  margin-bottom: 80px;
}

/* Left Brand Section */
.footer-brand {
  flex: 1.2;
}

.footer-logo {
  height: 32px;
  margin-bottom: 24px;
}

.footer-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 32px;
  max-width: 320px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #475569;
}

.contact-row i {
  color: #94a3b8;
  width: 18px;
  font-size: 16px;
}

.contact-row a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.contact-row a:hover { color: #020617; }

/* Right Nav Section */
.footer-nav {
  display: flex;
  flex: 2;
  justify-content: space-between;
}

.nav-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 24px;
}

.nav-col a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 14px;
  transition: color 0.2s;
}

.nav-col a:hover { color: #020617; }

.cta-link {
  font-weight: 700 !important;
  color: #020617 !important;
}

/* Bottom Divider Section */
.footer-bottom {
  border-top: 1px solid #f1f5f9;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #94a3b8;
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  text-decoration: none;
  color: inherit;
}

.legal-links a:hover { color: #64748b; }

/* Mobile optimization */
@media (max-width: 900px) {
  .footer-content { flex-direction: column; gap: 60px; }
  .footer-nav { flex-wrap: wrap; gap: 40px; }
  .footer-card { padding: 40px 30px; }
}