.contact-page {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
 }

.contact-page .container {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px;
}

.contact-page h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.contact-page .subtitle {
  color: #666;
  margin-bottom: 24px;
}
/* Section spacing */
.contact-page .contact-section {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.contact-page .contact-section:last-child {
  border-bottom: none;
}

.contact-page .contact-section ul {
  margin-top: 6px;
  margin-bottom: 0;
  padding-left: 18px;
}

.contact-page .contact-section li {
  margin-bottom: 6px;
}

/* Headings inside page */
.contact-page h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-page p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 8px;
}
.contact-page .contact-box {
  background: #fafafa;
  border-radius: 12px;
  padding: 20px;
}

.contact-page .contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-page a {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #d6b778;
  margin-bottom: 0px;
  padding-bottom: 0;
}

.contact-page a:hover {
  color: #d6b778;
}

.contact-page .note {
  font-size: 0.85rem;
  color: #777;
}

.contact-page .brand {
  text-align: center;
  margin-top: 24px;
  padding-top: 16px;
  font-size: 0.9rem;
  color: #888;
}
/* Remove extra gap before footer caused by brand block */
.contact-page .brand {
  margin-bottom: 0;
  padding-bottom: 0;
}


/* ✅ Scoped mobile rules */
@media (max-width: 480px) {
  .contact-page h1 {
    font-size: 1.7rem;
  }

  .contact-page .container {
    padding: 8px 8px;
  }
}
/* Make Privacy Note spacing match other sections */
.contact-page .contact-section p {
  margin-bottom: 0;
}

.contact-page .contact-section h2 {
  margin-top: 0;        /* 👈 THIS is the key */
  margin-bottom: 6px;
}
/* 🔒 Override global section padding for Contact page */
.contact-page section {
  padding: 4px;
}
/* 🔒 FINAL FIX: Kill footer top spacing ONLY on Contact page */
.contact-page + footer,
.contact-page ~ footer,
body .contact-page ~ #premium-footer {
  margin-top: 0 !important;
  padding-top: 48px !important;
}
