
/* CDStudio Generated Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair%20Display:wght@300;400;500;600;700;800;900&family=Open%20Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0073e1;
  --primary-fg: #ffffff;
  --secondary: #0a142f;
  --secondary-fg: #ffffff;
  --accent: #38bdf8;
  --bg: #ffffff;
  --text: #333333;
  --heading-font: 'Playfair Display', system-ui, sans-serif;
  --body-font: 'Open Sans', system-ui, sans-serif;
  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--body-font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--heading-font); line-height: 1.2; }
img { max-width: 100%; height: auto; display: block; }
a { transition: all 0.3s ease; }

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cd-animate { opacity: 0; }
.cd-animate.cd-visible { animation: fadeInUp 0.7s ease forwards; }
.cd-animate-delay-1 { animation-delay: 0.1s !important; }
.cd-animate-delay-2 { animation-delay: 0.2s !important; }
.cd-animate-delay-3 { animation-delay: 0.3s !important; }
.cd-animate-delay-4 { animation-delay: 0.4s !important; }

/* ─── Announcement Bar ─── */
.cd-announce-bar {
  padding: 10px 24px; text-align: center; font-size: 14px; font-weight: 600;
  border-bottom: 1px solid #fde68a; position: relative; z-index: 1001;
}
.cd-announce-bar a {
  font-weight: 700; text-decoration: underline; margin-left: 8px;
  transition: opacity 0.2s;
}
.cd-announce-bar a:hover { opacity: 0.8; }

/* ─── Top Bar ─── */
.cd-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 40px; font-size: 13px;
  background: var(--secondary); color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cd-topbar a { color: rgba(255,255,255,0.85); text-decoration: none; }
.cd-topbar a:hover { color: var(--primary); }
.cd-topbar-left, .cd-topbar-right { display: flex; align-items: center; gap: 20px; }
.cd-topbar-social { display: flex; gap: 10px; }
.cd-topbar-social a {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center; font-size: 12px;
  transition: all 0.3s;
}
.cd-topbar-social a:hover { background: var(--primary); color: var(--primary-fg); transform: translateY(-2px); }

/* ─── Navigation ─── */
.cd-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 40px; position: sticky; top: 0; z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.cd-nav.cd-nav-scrolled {
  padding: 12px 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.cd-nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.cd-nav-logo-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; font-family: var(--heading-font);
  background: var(--primary); color: var(--primary-fg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.cd-nav-logo-img {
  height: 38px; width: auto; max-width: 120px; object-fit: contain;
  border-radius: 6px;
}
.cd-nav-brand-text { display: flex; flex-direction: column; }
.cd-nav-brand-name {
  font-size: 18px; font-weight: 700; font-family: var(--heading-font);
  line-height: 1.2; letter-spacing: -0.02em;
}
.cd-nav-brand-tagline { font-size: 11px; opacity: 0.6; letter-spacing: 0.05em; text-transform: uppercase; }
.cd-nav-links { display: flex; align-items: center; gap: 4px; }
.cd-nav-link {
  padding: 8px 16px; font-size: 14px; font-weight: 500;
  text-decoration: none; border-radius: 6px;
  transition: all 0.2s; position: relative;
}
.cd-nav-link:hover { background: rgba(255,255,255,0.08); }
.cd-nav-cta {
  padding: 10px 24px; font-size: 14px; font-weight: 600;
  background: var(--primary); color: var(--primary-fg);
  border-radius: 50px; text-decoration: none;
  box-shadow: 0 2px 12px #0073e140;
  transition: all 0.3s;
}
.cd-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 20px #0073e160; opacity: 1; }
.cd-nav-auth {
  cursor: pointer; font-size: 14px; font-weight: 500;
  padding: 8px 14px; text-decoration: none; color: inherit;
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 6px; transition: all 0.2s; white-space: nowrap;
}
.cd-nav-auth:hover { background: rgba(255,255,255,0.08); }
.cd-nav-auth-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary, #1e40af); color: #fff;
  font-size: 12px; font-weight: 700;
}
.cd-nav-auth-name { font-size: 13px; font-weight: 600; }
.cd-nav-mobile-btn {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.cd-nav-mobile-btn span {
  display: block; width: 24px; height: 2px;
  background: currentColor; margin: 5px 0;
  transition: all 0.3s;
}
.cd-nav-dropdown { position: relative; }
.cd-nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: var(--secondary); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 8px;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: all 0.3s;
}
.cd-nav-dropdown:hover .cd-nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.cd-nav-dropdown-menu a {
  display: block; padding: 10px 16px; font-size: 14px;
  color: rgba(255,255,255,0.8); text-decoration: none;
  border-radius: 6px; transition: all 0.2s;
}
.cd-nav-dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: var(--primary); }

/* ─── Hero ─── */
.cd-hero {
  position: relative; overflow: hidden;
  min-height: 92vh; display: flex; align-items: center;
}
.cd-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cd-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05); transition: transform 8s ease;
}
.cd-hero:hover .cd-hero-bg img { transform: scale(1); }
.cd-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
}
.cd-hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 40px; text-align: center;
}
.cd-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; margin-bottom: 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.9); letter-spacing: 0.03em;
}
.cd-hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); animation: pulse 2s infinite;
}
.cd-hero h1 {
  font-size: 60px; font-weight: 800; color: #ffffff;
  line-height: 1.1; margin-bottom: 20px; max-width: 700px;
  margin-left: auto; margin-right: auto;
  font-family: var(--heading-font);
}
.cd-hero h1 .cd-accent { color: var(--primary); }
.cd-hero-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.75);
  line-height: 1.7; max-width: 560px; margin: 0 auto 36px;
}
.cd-hero-actions {
  display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; justify-content: center;
}
.cd-hero-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; font-size: 15px; font-weight: 600;
  background: var(--primary); color: var(--primary-fg);
  border-radius: 50px; text-decoration: none;
  box-shadow: 0 4px 20px #0073e140;
  transition: all 0.3s;
}
.cd-hero-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 30px #0073e160; opacity: 1; }
.cd-hero-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; font-size: 15px; font-weight: 600;
  background: rgba(255,255,255,0.1); color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px; text-decoration: none;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.cd-hero-btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); opacity: 1; }
.cd-hero-search {
  display: flex; align-items: center; gap: 0;
  max-width: 600px; margin-left: auto; margin-right: auto; background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 60px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: all 0.3s;
}
.cd-hero-search:focus-within {
  background: rgba(255,255,255,0.15);
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 2px #0073e130;
}
.cd-hero-search input {
  flex: 1; padding: 18px 28px; font-size: 15px;
  background: transparent; border: none; color: #fff;
  outline: none; font-family: var(--body-font);
}
.cd-hero-search input::placeholder { color: rgba(255,255,255,0.5); }
.cd-hero-search button {
  padding: 14px 32px; margin: 5px;
  background: var(--primary); color: var(--primary-fg);
  border: none; border-radius: 50px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all 0.3s;
}
.cd-hero-search button:hover { opacity: 0.9; transform: scale(1.02); }
.cd-hero-search-solid {
  background: #ffffff; border: none; border-radius: var(--radius, 6px);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  max-width: 540px;
}
.cd-hero-search-solid:focus-within { background: #ffffff; border: none; box-shadow: 0 4px 24px rgba(0,0,0,0.2), 0 0 0 2px var(--primary); }
.cd-hero-search-solid input { color: #2A2A33; padding: 16px 20px; }
.cd-hero-search-solid input::placeholder { color: #94a3b8; }
.cd-hero-search-solid button { border-radius: 0; margin: 0; padding: 16px 28px; font-size: 15px; }
.cd-hero-stats {
  display: flex; gap: 40px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 48px auto 0; max-width: 500px; justify-content: center;
}
.cd-hero-stat-value {
  font-size: 32px; font-weight: 800; color: #ffffff;
  font-family: var(--heading-font); line-height: 1;
}
.cd-hero-stat-label {
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-top: 4px; text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── Section Headings ─── */
.cd-section { padding: 100px 40px; position: relative; }
.cd-section-header { text-align: center; margin-bottom: 60px; }
.cd-section-badge {
  display: inline-block; padding: 6px 18px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 50px;
  background: #0073e115; color: var(--primary);
  margin-bottom: 16px;
}
.cd-section-title {
  font-size: 42px; font-weight: 700; color: var(--text);
  line-height: 1.2; margin-bottom: 16px;
  font-family: var(--heading-font);
}
.cd-section-subtitle {
  font-size: 17px; color: #64748b; max-width: 600px;
  margin: 0 auto; line-height: 1.7;
}

/* ─── Listing Cards ─── */
.cd-listing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.cd-listing-card {
  border-radius: var(--radius); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer; position: relative;
}
.cd-listing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.cd-listing-card-img {
  position: relative; height: 240px; overflow: hidden;
}
.cd-listing-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.cd-listing-card:hover .cd-listing-card-img img { transform: scale(1.08); }
.cd-listing-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 14px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: 6px; z-index: 2;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.cd-listing-badge-active { background: rgba(16,185,129,0.9); color: #fff; }
.cd-listing-badge-new { background: rgba(59,130,246,0.9); color: #fff; }
.cd-listing-badge-tour { background: rgba(139,92,246,0.9); color: #fff; }
.cd-listing-fav {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  border: none; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; transition: all 0.3s;
  font-size: 16px; color: #cbd5e1;
}
.cd-listing-fav:hover { background: #fff; color: #ef4444; transform: scale(1.1); }
.cd-listing-card-body { padding: 20px 22px; }
.cd-listing-price {
  font-size: 24px; font-weight: 800; color: var(--text);
  font-family: var(--heading-font); margin-bottom: 6px;
}
.cd-listing-address { font-size: 14px; color: #64748b; margin-bottom: 14px; }
.cd-listing-details {
  display: flex; gap: 16px; padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}
.cd-listing-detail {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; color: #64748b;
}
.cd-listing-detail strong { color: var(--text); font-weight: 600; }
.cd-listing-placeholder {
  text-align: center; padding: 60px 20px;
  color: #94a3b8; font-size: 15px;
}

/* ─── Area / Neighborhood Cards ─── */
.cd-areas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
.cd-area-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer; height: 240px;
}
.cd-area-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease; position: absolute; inset: 0;
}
.cd-area-card:hover img { transform: scale(1.08); }
.cd-area-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
  transition: all 0.3s; z-index: 1;
}
.cd-area-card:hover .cd-area-card-overlay { background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%); }
.cd-area-card-name {
  font-size: 20px; font-weight: 700; color: #fff;
  font-family: var(--heading-font); margin-bottom: 4px;
}
.cd-area-card-count { font-size: 13px; color: rgba(255,255,255,0.7); }
.cd-area-card-arrow {
  position: absolute; bottom: 24px; right: 24px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: var(--primary-fg);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(-10px);
  transition: all 0.3s; font-size: 16px; z-index: 2;
}
.cd-area-card:hover .cd-area-card-arrow { opacity: 1; transform: translateX(0); }

/* ─── Stats Section ─── */
.cd-stats-section {
  position: relative;
}
.cd-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; max-width: 1140px; margin: 0 auto;
  position: relative; z-index: 1;
  grid-column: 1 / -1;
}
.cd-stat-item {
  text-align: center; padding: 36px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
}
.cd-stat-value {
  font-size: 52px; font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1; margin-bottom: 8px;
  color: inherit;
}
.cd-stat-label {
  font-size: 14px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  opacity: 0.85;
}

/* ─── Steps ─── */
.cd-steps-section { position: relative; }
.cd-steps-grid {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; max-width: 1140px; margin: 0 auto;
}
.cd-step-item {
  flex: 1; text-align: center; padding: 0 16px;
}
.cd-step-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: #e0f2fe; color: #0369a1;
  font-size: 26px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid #bae6fd;
}
.cd-step-label {
  font-size: 16px; font-weight: 700;
  color: #111827; margin-bottom: 8px;
}
.cd-step-desc {
  font-size: 14px; color: #6b7280;
  line-height: 1.5;
}
.cd-step-arrow {
  display: flex; align-items: center;
  padding-top: 20px; color: #0369a1; opacity: 0.5;
  flex-shrink: 0;
}

/* ─── Testimonials ─── */
.cd-testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.cd-testimonial-card {
  padding: 28px 32px; border-radius: var(--radius);
  background: #1e293b; border: 1px solid rgba(148,203,236,0.25);
  transition: all 0.4s; position: relative;
}
.cd-testimonial-card:hover {
  transform: translateY(-2px);
  border-color: rgba(148,203,236,0.45);
}
.cd-testimonial-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.cd-testimonial-stars {
  display: flex; gap: 3px;
  color: #f59e0b; font-size: 16px;
}
.cd-testimonial-text {
  font-size: 15px; line-height: 1.7; color: #e2e8f0;
  margin: 0;
}
.cd-testimonial-author {
  display: flex; align-items: center; gap: 14px;
}
.cd-testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--primary-fg);
  overflow: hidden;
}
.cd-testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.cd-testimonial-name { font-size: 15px; font-weight: 600; color: #f1f5f9; }
.cd-testimonial-role { font-size: 13px; color: #94a3b8; margin-top: 2px; }

/* ─── About Section ─── */
.cd-about-grid {
  display: flex; gap: 60px; max-width: 1100px; margin: 0 auto;
  align-items: center;
}
.cd-about-image-wrap {
  flex: 1; position: relative;
}
.cd-about-image-accent {
  position: absolute; width: 100%; height: 100%;
  border: 3px solid var(--primary); border-radius: var(--radius);
  top: 16px; left: 16px; z-index: 0;
}
.cd-about-image-wrap img {
  position: relative; z-index: 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.cd-about-content { flex: 1; }
.cd-about-highlights {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 28px;
}
.cd-about-highlight {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; border-radius: 10px;
  background: #0073e108; border: 1px solid #0073e115;
}
.cd-about-highlight-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--primary); color: var(--primary-fg);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.cd-about-highlight-title { font-size: 14px; font-weight: 600; color: var(--text); }
.cd-about-highlight-desc { font-size: 12px; color: #64748b; margin-top: 2px; }

/* ─── Home Valuation Section ─── */
.cd-valuation-section {
  position: relative; overflow: hidden;
  padding: 100px 40px;
}
.cd-valuation-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #0073e130 100%);
  z-index: 0;
}
.cd-valuation-grid {
  display: flex; gap: 60px; max-width: 1100px;
  margin: 0 auto; align-items: center;
  position: relative; z-index: 1;
}
.cd-valuation-form {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius); padding: 40px;
  box-shadow: var(--shadow-xl);
  flex: 1; max-width: 460px;
}
.cd-valuation-content { flex: 1; color: #fff; }
.cd-valuation-trust {
  display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap;
}
.cd-valuation-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.8);
}
.cd-valuation-trust-icon {
  width: 20px; height: 20px; color: var(--primary);
}

/* ─── Quick Search Grid ─── */
.cd-quicksearch-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px 32px; max-width: 1000px; margin: 0 auto;
}
.cd-quicksearch-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--primary);
  text-decoration: none; padding: 6px 0;
  transition: all 0.2s;
}
.cd-quicksearch-link::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: #0073e140;
  transition: all 0.2s; flex-shrink: 0;
}
.cd-quicksearch-link:hover { color: var(--accent); padding-left: 4px; opacity: 1; }
.cd-quicksearch-link:hover::before { background: var(--primary); }

/* ─── Forms ─── */
form[data-form-type] { max-width: 580px; margin: 0 auto; padding: 40px; }
.cd-form-group { margin-bottom: 16px; }
.cd-form-label {
  display: block; font-size: 13px; font-weight: 600;
  color: #475569; margin-bottom: 6px;
}
.cd-form-input {
  width: 100%; padding: 12px 16px; font-size: 15px;
  border: 2px solid #e2e8f0; border-radius: 10px;
  background: #fff; color: var(--text);
  font-family: var(--body-font);
  transition: all 0.3s; outline: none;
  box-sizing: border-box;
}
.cd-form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px #0073e120;
}
.cd-form-textarea {
  width: 100%; padding: 12px 16px; font-size: 15px;
  border: 2px solid #e2e8f0; border-radius: 10px;
  background: #fff; color: var(--text);
  font-family: var(--body-font); resize: vertical;
  transition: all 0.3s; outline: none;
  box-sizing: border-box; min-height: 120px;
}
.cd-form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px #0073e120;
}
.cd-form-btn {
  width: 100%; padding: 14px 24px; font-size: 15px;
  font-weight: 700; border: none; border-radius: 10px;
  background: var(--primary); color: var(--primary-fg);
  cursor: pointer; transition: all 0.3s;
  font-family: var(--body-font);
  box-shadow: 0 4px 14px #0073e130;
}
.cd-form-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px #0073e140; }

/* ─── CTA Section ─── */
.cd-cta-section {
  text-align: center; position: relative;
}
.cd-cta-title {
  font-size: 36px; font-weight: 700; margin-bottom: 16px;
  font-family: var(--heading-font);
}
.cd-cta-text { font-size: 17px; opacity: 0.8; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cd-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px; font-size: 15px; font-weight: 700;
  border-radius: 8px; text-decoration: none;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}
.cd-cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cd-cta-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); opacity: 1; }
.cd-cta-btn-secondary { background: #0f172a !important; color: #fff !important; }

/* ─── Features Grid ─── */
.cd-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1100px; margin: 0 auto;
}
.cd-feature-card {
  padding: 32px 28px; border-radius: var(--radius);
  background: #fff; border: 1px solid #f1f5f9;
  text-align: center; transition: all 0.4s;
}
.cd-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #0073e125;
}
.cd-feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: #0073e110; display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 24px;
  color: var(--primary); transition: all 0.3s;
}
.cd-feature-card:hover .cd-feature-icon { background: var(--primary); color: var(--primary-fg); transform: scale(1.1); }
.cd-feature-title { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.cd-feature-desc { font-size: 14px; color: #64748b; line-height: 1.6; }

/* ─── Features List Layout ─── */
.cd-features-list { display: flex; flex-direction: column; gap: 20px; max-width: 600px; }
.cd-feature-list-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; border-radius: var(--radius);
  background: #fff; border: 1px solid #f1f5f9;
  transition: all 0.3s;
}
.cd-feature-list-item:hover { border-color: #0073e125; box-shadow: var(--shadow-md); }
.cd-feature-list-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
  background: #0073e110; display: flex;
  align-items: center; justify-content: center;
  font-size: 20px; color: var(--primary);
}
.cd-feature-list-content { flex: 1; }

/* ─── Footer ─── */
.cd-footer { position: relative; }
.cd-footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; max-width: 1200px; margin: 0 auto;
  padding: 0 40px;
}
.cd-footer-brand { }
.cd-footer-brand-name {
  font-size: 22px; font-weight: 800; color: #fff;
  font-family: var(--heading-font); margin-bottom: 12px;
}
.cd-footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.cd-footer-logo-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--primary); color: var(--primary-fg);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; font-family: var(--heading-font);
}
.cd-footer-logo-img {
  height: 36px; width: auto; max-width: 120px; object-fit: contain;
  border-radius: 6px;
}
.cd-footer-logo-text {
  font-size: 18px; font-weight: 700;
  font-family: var(--heading-font);
}
.cd-footer-desc { font-size: 14px; line-height: 1.7; opacity: 0.7; margin-bottom: 20px; }
.cd-footer-social { display: flex; gap: 10px; }
.cd-footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 14px; transition: all 0.3s;
}
.cd-footer-social a:hover {
  background: var(--primary); color: var(--primary-fg);
  transform: translateY(-3px); opacity: 1;
}
.cd-footer-col h4 {
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 20px;
  font-family: var(--heading-font);
}
.cd-footer-col a {
  display: block; padding: 5px 0; font-size: 14px;
  opacity: 0.7; text-decoration: none; color: inherit;
  transition: all 0.2s;
}
.cd-footer-col a:hover { opacity: 1; color: var(--primary); padding-left: 4px; }
.cd-footer-contact { display: flex; flex-direction: column; gap: 12px; }
.cd-footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; opacity: 0.7;
}
.cd-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 40px auto 0;
  padding: 24px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; opacity: 0.5;
}
.cd-footer-bottom a { color: inherit; text-decoration: none; }

/* ─── FAQ ─── */
.cd-faq-item {
  border-bottom: 1px solid #e2e8f0; overflow: hidden;
}
.cd-faq-item summary {
  padding: 20px 0; font-size: 17px; font-weight: 600;
  color: var(--text); cursor: pointer;
  list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  transition: color 0.3s;
}
.cd-faq-item summary:hover { color: var(--primary); }
.cd-faq-item summary::after {
  content: '+'; font-size: 24px; font-weight: 300;
  color: var(--primary); transition: transform 0.3s;
}
.cd-faq-item[open] summary::after { content: '−'; }
.cd-faq-answer {
  padding: 0 0 20px; font-size: 15px;
  color: #64748b; line-height: 1.7;
}

/* ─── Lead Capture Modal ─── */
.cd-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.cd-modal-overlay.cd-modal-active { opacity: 1; visibility: visible; }
.cd-modal {
  background: #fff; border-radius: 16px;
  padding: 40px; max-width: 480px; width: 90%;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cd-modal-active .cd-modal { transform: translateY(0) scale(1); }
.cd-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: #f1f5f9; border: none; cursor: pointer;
  font-size: 18px; display: flex; align-items: center;
  justify-content: center; transition: all 0.2s;
}
.cd-modal-close:hover { background: #e2e8f0; }

/* ─── Search Form ─── */
.cd-search-form {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: flex-end; padding: 28px;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.cd-search-form label {
  display: block; font-size: 12px; font-weight: 600;
  color: #475569; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.cd-search-form input, .cd-search-form select {
  width: 100%; padding: 12px 14px; font-size: 14px;
  border: 2px solid #e2e8f0; border-radius: 8px;
  background: #f8fafc; transition: all 0.3s;
  font-family: var(--body-font); outline: none;
}
.cd-search-form input:focus, .cd-search-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px #0073e115;
  background: #fff;
}
.cd-search-btn {
  padding: 12px 32px; background: var(--primary);
  color: var(--primary-fg); border: none;
  border-radius: 8px; font-size: 14px;
  font-weight: 600; cursor: pointer;
  transition: all 0.3s; height: fit-content;
  box-shadow: 0 2px 10px #0073e130;
}
.cd-search-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px #0073e140; }

/* ─── Agent Card ─── */
.cd-agent-card {
  text-align: center; padding: 32px;
  background: #fff; border-radius: var(--radius);
  border: 1px solid #f1f5f9;
  box-shadow: var(--shadow-sm);
}
.cd-agent-photo {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 20px;
  border: 4px solid #0073e120;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.cd-agent-placeholder {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  margin: 0 auto 20px;
}
.cd-agent-name { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cd-agent-title-text { font-size: 14px; color: #64748b; margin-bottom: 16px; }
.cd-agent-contact a {
  display: block; padding: 4px 0;
  font-size: 14px; color: var(--primary);
  text-decoration: none;
}

/* ─── Gallery ─── */
.cd-gallery {
  display: grid; gap: 8px;
}
.cd-gallery img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 8px; cursor: pointer;
  transition: all 0.4s;
}
.cd-gallery img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

/* ─── Blog Grid ─── */
.cd-blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1140px; margin: 0 auto;
}
.cd-blog-card {
  border-radius: var(--radius); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm);
  transition: all 0.4s;
}
.cd-blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cd-blog-card img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform 0.4s;
}
.cd-blog-card:hover img { transform: scale(1.05); }
.cd-blog-card-body { padding: 24px; }

/* ─── Mobile Hamburger ─── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  width: 24px; height: 2px; background: var(--text, #111827);
  transition: 0.3s; display: block;
}
.nav-mobile-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); z-index: 9999;
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay a {
  font-size: 20px; font-weight: 600; color: var(--text, #111827);
  text-decoration: none; padding: 12px 24px;
}
.nav-mobile-overlay a:hover { color: var(--accent, #0369a1); }
.nav-mobile-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 32px; cursor: pointer; background: none; border: none;
  color: var(--text, #111827); font-weight: 300;
}
/* Hide brand name text when logo image is present */
.nav-logo:has(img) .nav-logo-name { display: none !important; }

/* ─── Responsive (cd-* classes) ─── */
@media (max-width: 1024px) {
  .cd-hero h1 { font-size: 44px; }
  .cd-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cd-listing-grid { grid-template-columns: repeat(2, 1fr); }
  .cd-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .cd-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .cd-features-grid { grid-template-columns: repeat(2, 1fr); }
  .cd-footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cd-about-grid { gap: 40px; }
  .cd-valuation-grid { gap: 40px; }
  .cd-quicksearch-grid { grid-template-columns: repeat(3, 1fr); }
  .cd-section { padding: 80px 30px; }
  .cd-steps-grid { flex-wrap: wrap; }
  .cd-step-item { flex: 0 0 calc(50% - 40px); }
  .cd-step-arrow { display: none; }
}

@media (max-width: 768px) {
  .cd-topbar { display: none; }
  .cd-announce-bar { font-size: 12px; padding: 8px 16px; }
  .cd-nav { padding: 12px 20px; }
  .cd-nav-links { display: none; }
  .cd-nav-cta { display: none; }
  .cd-nav-mobile-btn { display: block; }
  .cd-hero { min-height: 80vh; }
  .cd-hero h1 { font-size: 34px; }
  .cd-hero-subtitle { font-size: 16px; }
  .cd-hero-actions { flex-direction: column; }
  .cd-hero-btn-primary, .cd-hero-btn-secondary { text-align: center; justify-content: center; }
  .cd-hero-search { flex-direction: column; border-radius: 16px; }
  .cd-hero-search input { padding: 16px 20px; }
  .cd-hero-search button { margin: 0 8px 8px; border-radius: 10px; }
  .cd-hero-stats { gap: 24px; flex-wrap: wrap; }
  .cd-hero-stat-value { font-size: 24px; }
  .cd-section { padding: 60px 20px; }
  .cd-section-title { font-size: 32px; }
  .cd-stat-value { font-size: 36px; }
  .cd-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cd-listing-grid { grid-template-columns: 1fr; }
  .cd-testimonials-grid { grid-template-columns: 1fr; }
  .cd-about-grid { flex-direction: column; }
  .cd-valuation-grid { flex-direction: column; }
  .cd-footer-main { grid-template-columns: 1fr; gap: 28px; }
  .cd-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cd-features-grid { grid-template-columns: 1fr; }
  .cd-areas-grid { grid-template-columns: 1fr; }
  .cd-quicksearch-grid { grid-template-columns: repeat(2, 1fr); }
  .cd-search-form { flex-direction: column; }
  .cd-about-highlights { grid-template-columns: 1fr; }
  .cd-blog-grid { grid-template-columns: 1fr; }
  .cd-steps-grid { flex-direction: column; align-items: center; gap: 24px; }
  .cd-step-item { flex: 0 0 auto; width: 100%; }
  .cd-step-arrow { display: none; }
}

@media (max-width: 480px) {
  .cd-hero h1 { font-size: 28px; }
  .cd-section-title { font-size: 26px; }
  .cd-stat-value { font-size: 28px; }
  .cd-quicksearch-grid { grid-template-columns: 1fr; }
  .cd-hero-stats { flex-direction: column; gap: 16px; }
}

/* ─── Responsive (template classes) ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .hero h1 { font-size: 34px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card:nth-child(2)::after { display: none; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .vp-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .split-cta { grid-template-columns: 1fr; }
  .section { padding: 56px 20px; }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
}

@media (max-width: 768px) {
  .announce-bar { font-size: 12px; padding: 8px 16px; }
  .navbar { padding: 0 16px; }
  .nav-inner { height: 56px; }
  .nav-left { gap: 16px; }
  .nav-links { display: none !important; }
  .nav-right .nav-phone { display: none; }
  .nav-right .nav-cta { display: none; }
  .nav-hamburger { display: flex !important; }
  .hero { padding: 36px 16px 40px; }
  .hero-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 15px; }
  .hero-checklist li { font-size: 13px; padding: 6px 0; }
  .form-card { margin-top: 8px; }
  .section { padding: 40px 16px; }
  .section-title { font-size: 24px; }
  .section-subtitle { font-size: 14px; }
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .step-card::after { display: none !important; }
  .step-card { padding: 20px 16px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .result-num { font-size: 28px; }
  .result-label { font-size: 11px; }
  .vp-grid { grid-template-columns: 1fr; gap: 16px; }
  .vp-card { padding: 20px; }
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .split-cta { grid-template-columns: 1fr; }
  .split-cta-left, .split-cta-right { padding: 28px 20px; }
  .split-cta h3 { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .bottom-cta { padding: 40px 16px; }
  .bottom-cta h2 { font-size: 24px; }
  .bottom-cta-actions { flex-direction: column; }
  .bottom-cta-actions a { text-align: center; }
  .faq-q { font-size: 14px; }
  .comparison-table { display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .section-title { font-size: 22px; }
  .results-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .result-num { font-size: 24px; }
  .result-box { padding: 20px 8px; }
  .hero-social-proof { flex-direction: column; text-align: center; gap: 8px; }
}

/* ─── Inline-style overrides for mobile (CDStudio blocks use inline styles) ─── */
@media (max-width: 768px) {
  /* Force flex rows to stack vertically */
  section > div[style*="display: flex"],
  section > div[style*="display:flex"],
  .cd-section > div[style*="display: flex"],
  .cd-section > div[style*="display:flex"] {
    flex-direction: column !important;
    gap: 24px !important;
  }

  /* Prevent fixed-width flex children from overflowing */
  [style*="flex: 0 0"],
  [style*="flex:0 0"] {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  /* Force inline grids to single column */
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr !important;
  }

  /* Sections: mobile-friendly padding */
  section[style],
  .cd-section[style] {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Inner max-width containers */
  section > div[style*="max-width"],
  .cd-section > div[style*="max-width"] {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Images inside inline-styled containers */
  section img,
  .cd-section img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Font size caps for inline-styled headings */
  section h1[style], .cd-section h1[style] { font-size: 28px !important; }
  section h2[style], .cd-section h2[style] { font-size: 22px !important; }

  /* Split CTA cards — stack vertically */
  div[style*="display: flex"][style*="border-radius"][style*="overflow: hidden"] {
    flex-direction: column !important;
  }
}

@media (max-width: 480px) {
  section h1[style], .cd-section h1[style] { font-size: 24px !important; }
  section h2[style], .cd-section h2[style] { font-size: 20px !important; }
}



/* ─── Compliance Footer ─── */
.cd-compliance-footer { background: #f8f9fa; padding: 32px 20px; text-align: center; font-size: 13px; color: #6c757d; border-top: 1px solid #e9ecef; line-height: 1.6; }
.cd-compliance-footer p { margin: 0 0 10px; max-width: 800px; margin-left: auto; margin-right: auto; }
.cd-compliance-footer a { color: #495057; text-decoration: none; }
.cd-compliance-footer a:hover { text-decoration: underline; }
.cd-compliance-logos { display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 16px; flex-wrap: wrap; }
.cd-compliance-logos img, .cd-compliance-logos svg { height: 32px; width: auto; opacity: 0.7; }
.cd-compliance-legal-links { margin-bottom: 12px; }
.cd-compliance-legal-links a { margin: 0 8px; }
.cd-compliance-telephony { font-size: 11px; color: #8c939a; max-width: 700px; margin: 10px auto; padding-top: 10px; border-top: 1px solid #e9ecef; }
.cd-compliance-eho { font-size: 11px; color: #8c939a; }

/* ─── Legal Pages ─── */
.cd-legal-page { max-width: 800px; margin: 40px auto; padding: 20px 30px; color: #333; line-height: 1.8; }
.cd-legal-page h1 { font-size: 28px; margin-bottom: 5px; }
.cd-legal-page h2 { font-size: 20px; margin-top: 30px; }
.cd-legal-page h3 { font-size: 16px; margin-top: 20px; }
.cd-legal-page ul { margin: 10px 0 10px 20px; }
.cd-legal-page a { color: #2563eb; }
