/* =============================================
   HOLISTIC DIRECT PRIMARY CARE — Stylesheet
   Brand: Deep Forest Green + Antique Gold
   Fonts: Playfair Display + Inter
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --forest:   #1E3A1E;
  --forest-d: #142814;
  --forest-l: #2D5A2D;
  --gold:     #B8960C;
  --gold-l:   #D4AF37;
  --gold-pale:#F5ECC7;
  --cream:    #F9F6EF;
  --white:    #FFFFFF;
  --charcoal: #2C2C2C;
  --gray:     #6B7280;
  --light:    #F3F4F6;
  --border:   #D1D5DB;
  --shadow:   0 4px 24px rgba(30,58,30,0.10);
  --shadow-lg:0 12px 48px rgba(30,58,30,0.16);
  --radius:   10px;
  --radius-lg:18px;
  --transition: all 0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--forest);
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--charcoal); }
a { color: var(--forest); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-l); border-color: var(--gold-l); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--forest);
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--forest);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--forest); color: var(--white); transform: translateY(-2px); }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--forest);
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--white);
  transition: var(--transition);
}
.btn-white:hover { background: var(--gold-pale); border-color: var(--gold-pale); transform: translateY(-2px); }

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1.25rem; }
.section-intro { font-size: 1.05rem; color: var(--gray); max-width: 640px; }

/* ---- NAVIGATION ---- */
.hdpc-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(30,58,30,0.07);
}
.hdpc-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}
.hdpc-nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hdpc-nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.01em;
}
.hdpc-nav-brand-sub {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hdpc-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.hdpc-nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: 6px;
  transition: var(--transition);
}
.hdpc-nav-links a:hover { color: var(--forest); background: var(--light); }
.hdpc-nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 6px !important;
}
.hdpc-nav-cta:hover { background: var(--gold-l) !important; }
.hdpc-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hdpc-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hdpc-hero {
  background: linear-gradient(135deg, var(--forest-d) 0%, var(--forest) 60%, var(--forest-l) 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hdpc-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,150,12,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hdpc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hdpc-hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 1rem;
}
.hdpc-hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hdpc-hero h1 em { color: var(--gold-l); font-style: normal; }
.hdpc-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.hdpc-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hdpc-hero-phone {
  margin-top: 1.75rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-l);
  letter-spacing: 0.04em;
}
.hdpc-hero-phone span { color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 400; display: block; }

.hdpc-hero-photo-wrap { position: relative; }
.hdpc-hero-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(184,150,12,0.4);
  aspect-ratio: 3/4;
  background: var(--forest-l);
}
.hdpc-hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.hdpc-hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  line-height: 1.4;
}
.hdpc-hero-badge span { display: block; font-size: 0.72rem; font-weight: 400; opacity: 0.9; }

/* ---- GOLD BANNER ---- */
.hdpc-gold-banner {
  background: var(--gold);
  color: var(--white);
  padding: 1.5rem 0;
  text-align: center;
}
.hdpc-gold-banner blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}
.hdpc-gold-banner cite { display: block; font-size: 0.85rem; font-style: normal; margin-top: 0.5rem; opacity: 0.85; }

/* ---- PILLARS ---- */
.hdpc-pillars { background: var(--cream); }
.hdpc-pillars-header { text-align: center; margin-bottom: 3.5rem; }
.hdpc-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.hdpc-pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}
.hdpc-pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hdpc-pillar-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.hdpc-pillar-card h3 { color: var(--forest); margin-bottom: 0.75rem; }
.hdpc-pillar-card p { color: var(--gray); font-size: 0.95rem; margin: 0; }

/* ---- ABOUT STRIP ---- */
.hdpc-about-strip { background: var(--white); }
.hdpc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hdpc-about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold-pale);
}
.hdpc-about-img img { width: 100%; height: 100%; object-fit: cover; }
.hdpc-about-content .section-title { margin-bottom: 1.25rem; }
.hdpc-about-list { margin: 1.25rem 0 2rem; }
.hdpc-about-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
}
.hdpc-about-list li:last-child { border-bottom: none; }
.hdpc-about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---- SERVICES GRID ---- */
.hdpc-services { background: var(--forest); }
.hdpc-services-header { text-align: center; margin-bottom: 3.5rem; }
.hdpc-services-header .section-label { color: var(--gold-l); }
.hdpc-services-header .section-title { color: var(--white); }
.hdpc-services-header .section-intro { color: rgba(255,255,255,0.75); margin: 0 auto; }
.hdpc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hdpc-service-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,150,12,0.25);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
}
.hdpc-service-card:hover { background: rgba(255,255,255,0.12); border-color: var(--gold); transform: translateY(-3px); }
.hdpc-service-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.hdpc-service-card h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.15rem; }
.hdpc-service-card p { color: rgba(255,255,255,0.75); font-size: 0.92rem; margin: 0; }

/* ---- CARE STEPS ---- */
.hdpc-care-steps { background: var(--cream); }
.hdpc-care-steps-header { text-align: center; margin-bottom: 3.5rem; }
.hdpc-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.hdpc-step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}
.hdpc-step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hdpc-step-letter {
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}
.hdpc-step-card h3 { color: var(--forest); font-size: 1.1rem; margin-bottom: 0.6rem; }
.hdpc-step-card p { color: var(--gray); font-size: 0.9rem; margin: 0; }

/* ---- MEMBERSHIP ---- */
.hdpc-membership { background: var(--white); }
.hdpc-membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.hdpc-membership-card {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.hdpc-membership-card h3 { color: var(--gold-l); margin-bottom: 1.5rem; }
.hdpc-membership-list li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hdpc-membership-list li:last-child { border-bottom: none; }
.hdpc-membership-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-l);
  font-weight: 700;
}
.hdpc-membership-note {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--charcoal);
}

/* ---- TESTIMONIALS ---- */
.hdpc-testimonials { background: var(--cream); }
.hdpc-testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.hdpc-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.hdpc-testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--gold);
}
.hdpc-testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.hdpc-testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.hdpc-testimonial-author { font-size: 0.85rem; font-weight: 600; color: var(--forest); }

/* ---- CTA ---- */
.hdpc-cta {
  background: linear-gradient(135deg, var(--forest-d) 0%, var(--forest) 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.hdpc-cta h2 { color: var(--white); margin-bottom: 1rem; }
.hdpc-cta p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }
.hdpc-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.hdpc-footer {
  background: var(--forest-d);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.hdpc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.hdpc-footer-brand-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.hdpc-footer-brand-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--gold-l);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hdpc-footer p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.hdpc-footer h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; letter-spacing: 0.06em; text-transform: uppercase; }
.hdpc-footer ul li { margin-bottom: 0.5rem; }
.hdpc-footer ul li a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: var(--transition); }
.hdpc-footer ul li a:hover { color: var(--gold-l); }
.hdpc-sms-quick { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 1rem; }
.hdpc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.hdpc-footer-bottom a { color: rgba(255,255,255,0.55); }
.hdpc-footer-bottom a:hover { color: var(--gold-l); }

/* ---- PAGE HERO (inner pages) ---- */
.hdpc-page-hero {
  background: linear-gradient(135deg, var(--forest-d) 0%, var(--forest) 100%);
  color: var(--white);
  padding: 4rem 0 3rem;
}
.hdpc-page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.hdpc-page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin: 0; }
.hdpc-breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 1rem; }
.hdpc-breadcrumb a { color: var(--gold-l); }

/* ---- CONTACT FORM ---- */
.hdpc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.hdpc-contact-info h3 { color: var(--forest); margin-bottom: 1.5rem; }
.hdpc-contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.hdpc-contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hdpc-contact-info-text strong { display: block; font-size: 0.85rem; color: var(--forest); margin-bottom: 0.2rem; }
.hdpc-contact-info-text span { font-size: 0.92rem; color: var(--charcoal); }

.hdpc-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hdpc-form-card h3 { color: var(--forest); margin-bottom: 0.5rem; }
.hdpc-form-card .form-sub { color: var(--gray); font-size: 0.9rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(30,58,30,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-checkbox-group { margin-bottom: 1.25rem; }
.form-checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
}
.form-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--forest);
  cursor: pointer;
}
.form-checkbox-label span { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }
.form-checkbox-label span a { color: var(--forest); text-decoration: underline; }

.hdpc-sms-info {
  background: var(--forest);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.hdpc-sms-info p { color: rgba(255,255,255,0.8); font-size: 0.82rem; margin: 0; line-height: 1.6; }

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  padding: 1rem;
  border: none;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.form-submit:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---- LEGAL PAGES ---- */
.hdpc-legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.hdpc-legal-content h2 { color: var(--forest); font-size: 1.4rem; margin: 2.5rem 0 0.75rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.hdpc-legal-content h2:first-of-type { border-top: none; margin-top: 0; }
.hdpc-legal-content p { color: var(--charcoal); font-size: 0.95rem; }
.hdpc-legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.hdpc-legal-content ul li { color: var(--charcoal); font-size: 0.95rem; margin-bottom: 0.4rem; }
.hdpc-sms-highlight {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.hdpc-sms-highlight p { margin: 0; font-size: 0.92rem; color: var(--charcoal); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hdpc-hero-grid,
  .hdpc-about-grid,
  .hdpc-contact-grid,
  .hdpc-membership-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hdpc-pillars-grid,
  .hdpc-services-grid,
  .hdpc-testimonials-grid { grid-template-columns: 1fr 1fr; }
  .hdpc-steps-grid { grid-template-columns: 1fr 1fr; }
  .hdpc-footer-grid { grid-template-columns: 1fr 1fr; }
  .hdpc-hero-photo-wrap { order: -1; }
  .hdpc-hero-photo-frame { aspect-ratio: 4/3; }
}
@media (max-width: 600px) {
  .hdpc-nav-links { display: none; }
  .hdpc-nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 1rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); z-index: 99; }
  .hdpc-nav-toggle { display: flex; }
  .hdpc-pillars-grid,
  .hdpc-services-grid,
  .hdpc-testimonials-grid,
  .hdpc-steps-grid { grid-template-columns: 1fr; }
  .hdpc-footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hdpc-footer-bottom { flex-direction: column; text-align: center; }
}
