:root {
  --primary: #632635;
  --primary-dark: #431722;
  --primary-soft: #f8eef1;
  --black: #151515;
  --white: #ffffff;
  --cream: #fbf8f7;
  --soft: #f7f2f4;
  --grey: #5f5f66;
  --muted: #8a8185;
  --border: #eadde2;
  --green: #07c66b;
  --shadow: 0 18px 45px rgba(99, 38, 53, 0.09);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", sans-serif !important;
  color: var(--black);
  background: var(--white);
  font-weight: 400;
}
a { text-decoration: none; color: inherit; }
.container { width: min(1160px, 92%); margin: auto; }
section { overflow: hidden; }

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.8px; }
p { font-weight: 400; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-kicker.light {
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.16);
}

/* Header */
.header {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -1.2px;
  z-index: 101;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:hover { color: var(--primary); }
.nav-btn, .mobile-check-btn {
  background: var(--primary);
  color: var(--white) !important;
  padding: 14px 24px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s;
}
.nav-btn:hover, .mobile-check-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.menu-toggle { display: none; }
.hamburger {
  display: none;
  width: 31px;
  height: 23px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 101;
}
.hamburger span { height: 3px; width: 100%; background: var(--primary); border-radius: 99px; transition: 0.3s; }
.mobile-check-btn { display: none; }

/* Hero */
.hero {
    background:
        linear-gradient(120deg, rgba(99, 38, 53, 0.82), rgba(67, 23, 34, 0.72)),
        url("https://www.kensbridge.co/assets/img/landing-background.png");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 74px 0;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 42px; align-items: center; }
.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 760px;
}
.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 26px;
  max-width: 720px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.btn-primary, .btn-outline {
  padding: 15px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.25s;
}
.btn-primary { background: var(--white); color: var(--primary); }
.btn-primary:hover { transform: translateY(-2px); background: #f7edf0; }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.78); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.note { font-size: 13px; color: rgba(255,255,255,0.7); }
.hero-card {
  background: var(--white);
  color: var(--black);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}
.hero-card h3 { font-size: 25px; color: var(--primary); margin-bottom: 10px; }
.hero-card p { color: var(--grey); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.check-list { list-style: none; display: grid; gap: 13px; margin-bottom: 23px; }
.check-list li { display: flex; gap: 11px; font-size: 14px; font-weight: 600; line-height: 1.5; }
.check-list span { width: 24px; height: 24px; min-width: 24px; border-radius: 50%; background: var(--primary); color: var(--white); display: grid; place-items: center; font-size: 12px; }
.card-btn { display: block; text-align: center; background: var(--primary); color: var(--white); padding: 15px; border-radius: 10px; font-weight: 700; }
.card-btn:hover { background: var(--primary-dark); }

/* Trust strip */
.trust-strip { background: var(--cream); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; }
.trust-item { padding: 20px 16px; font-size: 15px; font-weight: 700; color: var(--primary); border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: 0; }

/* General */
.section, .hrp-info-section, .guides-section, .about-evanshaw, .criteria-section,
.owed-section, .case-study-section, .faq-section { padding: 64px 0; }
.section-title, .guides-heading, .criteria-heading, .case-heading, .faq-heading {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 38px;
}
.section-title h2, .guides-heading h2, .criteria-heading h2, .case-heading h2, .faq-heading h2,
.hrp-info-content h2, .owed-content h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-title p, .guides-heading p, .faq-heading p {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.7;
}

/* Info cards */
.cards, .guides-grid, .case-grid { display: grid; gap: 20px; }
.cards { grid-template-columns: repeat(3, 1fr); }
.info-card, .guide-card, .criteria-card, .case-card, .faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: 0.25s;
}
.info-card:hover, .guide-card:hover, .criteria-card:hover, .case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(99,38,53,0.13);
}
.info-card { padding: 26px; }
.icon, .guide-icon, .case-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 17px;
  font-weight: 700;
}
.info-card h3, .guide-card h3, .case-card h3 { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
.info-card p, .guide-card p, .case-card p { color: var(--grey); line-height: 1.65; font-size: 14.5px; }

/* HRP info */
.hrp-info-section { background: var(--soft); }
.hrp-info-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 44px; align-items: center; }
.hrp-info-content h3 { font-size: 24px; color: var(--primary); margin-bottom: 14px; }
.hrp-info-content p { font-size: 15.5px; line-height: 1.75; color: #333; margin-bottom: 13px; }
.hrp-info-content strong { font-weight: 700; }
.hrp-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 22px; }
.hrp-points div { background: var(--white); border: 1px solid var(--border); border-radius: 15px; padding: 17px; }
.hrp-points span { display: block; font-size: 23px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.hrp-points p { margin: 0; font-size: 13px; line-height: 1.45; color: var(--grey); }
.image-card { background: var(--white); border: 1px solid var(--border); border-radius: 23px; padding: 11px; box-shadow: var(--shadow); }
.image-card img { width: 100%; height: 405px; object-fit: cover; border-radius: 17px; display: block; }

/* Guides */
.guides-section { background: var(--white); }
.guides-grid { grid-template-columns: repeat(4, 1fr); }
.guide-card { padding: 25px 22px; min-height: 292px; display: flex; flex-direction: column; }
.guide-icon { border-radius: 50%; background: var(--primary); color: var(--white); }
.guide-card span { margin-top: auto; color: var(--primary); font-size: 14px; font-weight: 700; }

/* About */
.about-evanshaw { background: var(--soft); }
.about-box {
  background: radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 35%), var(--primary);
  color: var(--white);
  padding: 48px 56px;
  border-radius: 22px;
  text-align: center;
  max-width: 1040px;
  margin: auto;
  box-shadow: 0 24px 62px rgba(99,38,53,0.2);
}
.about-box h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
.about-box p { font-size: 16px; line-height: 1.75; max-width: 860px; margin: 0 auto 12px; color: rgba(255,255,255,0.9); }
.about-note { margin-top: 16px !important; color: rgba(255,255,255,0.76) !important; font-size: 14px !important; }

/* Criteria */
.criteria-section { background: var(--white); }
.criteria-heading p, .case-heading p { font-size: 19px; font-weight: 600; color: var(--primary); }
.criteria-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.criteria-card { grid-column: span 2; background: var(--cream); padding: 26px 22px; min-height: 166px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; }
.criteria-card:nth-child(4) { grid-column: 2 / span 2; }
.criteria-card:nth-child(5) { grid-column: 4 / span 2; }
.criteria-card span { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: var(--white); display: grid; place-items: center; font-size: 17px; font-weight: 700; }
.criteria-card p { font-size: 15px; line-height: 1.55; font-weight: 600; }
.criteria-note { margin: 36px auto 0; max-width: 980px; background: var(--black); color: var(--white); border-radius: 18px; padding: 25px 32px; text-align: center; }
.criteria-note p { font-size: 15.5px; line-height: 1.7; color: rgba(255,255,255,0.88); }

/* Owed */
.owed-section { background: var(--primary); color: var(--white); }
.owed-box { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 40px; align-items: center; }
.owed-intro { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.84); margin-bottom: 23px; max-width: 720px; }
.owed-list { display: grid; gap: 13px; margin-bottom: 22px; }
.owed-item { background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.16); border-radius: 15px; padding: 17px 19px; }
.owed-item span { display: block; font-size: 20px; font-weight: 700; margin-bottom: 5px; }
.owed-item p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.82); }
.owed-note { font-size: 13px; color: rgba(255,255,255,0.66); margin-bottom: 22px; }
.owed-btn, .case-btn, .final-cta-btn { display: inline-flex; justify-content: center; align-items: center; background: var(--white); color: var(--primary); padding: 15px 24px; border-radius: 10px; font-weight: 700; transition: 0.25s; }
.owed-btn:hover, .case-btn:hover, .final-cta-btn:hover { transform: translateY(-2px); }
.owed-card { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); border-radius: 25px; padding: 16px; }
.owed-card-inner { background: var(--white); color: var(--black); border-radius: 19px; padding: 35px 28px; text-align: center; }
.owed-card-inner h3 { font-size: 26px; line-height: 1.25; color: var(--primary); margin-bottom: 13px; }
.owed-card-inner p { color: var(--grey); font-size: 15px; line-height: 1.6; margin-bottom: 21px; }
.owed-amount { font-size: clamp(40px, 5vw, 58px); font-weight: 700; color: var(--primary); letter-spacing: -1.4px; }
.owed-card-inner small { color: var(--grey); font-weight: 500; }

/* Case study */
.case-study-section { background: var(--soft); }
.case-grid { grid-template-columns: repeat(3, 1fr); }
.case-card { padding: 30px 26px; min-height: 300px; text-align: center; }
.case-icon { margin: 0 auto 18px; border-radius: 50%; }
.case-card.featured { background: var(--primary); color: var(--white); border-color: var(--primary); }
.case-card.featured .case-icon { background: rgba(255,255,255,0.16); color: var(--white); }
.case-card.featured h3 { color: var(--white); }
.case-card.featured p { color: rgba(255,255,255,0.88); }
.case-disclaimer { max-width: 880px; margin: 28px auto 0; text-align: center; }
.case-disclaimer p { font-size: 13px; line-height: 1.6; color: var(--muted); }
.case-action { text-align: center; margin-top: 24px; }
.case-btn { background: var(--primary); color: var(--white); }
.case-btn:hover { background: var(--primary-dark); }

/* FAQ */
.faq-section { background: var(--cream); }
.faq-list { max-width: 960px; margin: auto; display: grid; gap: 13px; }
.faq-item { overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 25px; font-size: 16px; font-weight: 700; color: var(--primary); position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 600; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 25px 22px; font-size: 14.5px; line-height: 1.75; color: var(--grey); }

/* Final CTA + footer */
.final-cta { padding: 56px 0 36px; background: var(--white); }
.final-cta-box {
  background: linear-gradient(135deg, #311626, #632635);
  border-radius: 20px;
  padding: 42px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
}
.final-cta-text h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 11px; }
.final-cta-text p { font-size: 15.5px; line-height: 1.7; color: rgba(255,255,255,0.84); max-width: 720px; }
.final-cta-btn { background: var(--green); color: var(--white); white-space: nowrap; }
.final-cta-btn:hover { background: #05a95b; }
.footer { background: #f4f2f3; padding: 46px 0 18px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 38px; }
.footer-col h4 { font-size: 17px; margin-bottom: 15px; font-weight: 700; }
.footer-col p, .footer-col a { font-size: 14.5px; line-height: 1.75; color: var(--grey); }
.footer-col p { margin-bottom: 10px; }
.footer-col a { display: block; margin-bottom: 9px; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { margin-top: 28px; border-top: 1px solid var(--border); padding-top: 15px; text-align: center; }
.footer-bottom p { font-size: 12.5px; color: var(--muted); }

@media (max-width: 1100px) {
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 18px; }
}
@media (max-width: 950px) {
  .nav { height: 72px; }
  .desktop-check-btn { display: none; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 24px;
    transform: translateX(110%);
    transition: 0.3s ease;
    border-top: 1px solid var(--border);
  }
  .nav-links a { width: 100%; padding: 15px 0; font-size: 17px; border-bottom: 1px solid var(--border); }
  .mobile-check-btn { display: block; text-align: center; margin-top: 18px; padding: 15px !important; border-bottom: 0 !important; }
  .menu-toggle:checked ~ .nav-links { transform: translateX(0); }
  .menu-toggle:checked + .hamburger span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
  .menu-toggle:checked + .hamburger span:nth-child(2) { opacity: 0; }
  .menu-toggle:checked + .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
  .hero-grid, .hrp-info-grid, .cards, .trust-grid, .owed-box, .case-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 54px 0; }
  .section, .hrp-info-section, .guides-section, .about-evanshaw, .criteria-section, .owed-section, .case-study-section, .faq-section { padding: 52px 0; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--border); }
  .hrp-points, .criteria-grid { grid-template-columns: 1fr; }
  .criteria-card, .criteria-card:nth-child(4), .criteria-card:nth-child(5) { grid-column: auto; }
  .image-card img { height: 320px; }
  .final-cta-box { flex-direction: column; text-align: center; padding: 36px 24px; }
  .final-cta-btn { width: 100%; }
  .footer-grid { text-align: center; }
}
@media (max-width: 650px) {
  .container { width: min(100% - 30px, 1160px); }
  .logo { font-size: 26px; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 16px; }
  .btn-primary, .btn-outline, .owed-btn, .case-btn { width: 100%; }
  .hero-card, .info-card, .guide-card, .criteria-card, .case-card { padding: 23px; }
  .guides-grid { grid-template-columns: 1fr; }
  .about-box { padding: 34px 22px; }
  .criteria-note { padding: 22px; }
  .image-card img { height: 265px; }
  .faq-item summary { padding: 19px 46px 19px 19px; font-size: 15px; }
  .faq-item p { padding: 0 19px 19px; }
}
.logo {
      display: flex;
      align-items: center;
  }

  .logo img {
      height: 40px;      /* adjust as needed */
      width: auto;
      display: block;
  }

  html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 950px) {
  .nav-links {
    right: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav-links a {
    white-space: normal;
    word-break: break-word;
  }

  .hero,
  .hero-grid,
  .container {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -0.8px;
  }
}
.about-hero {
  background:
    linear-gradient(120deg, rgba(99,38,53,0.96), rgba(67,23,34,0.88)),
    url("https://images.unsplash.com/photo-1554224154-26032ffc0d07?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 76px 0;
}

.about-hero-grid,
.about-two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.about-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-hero p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 760px;
  margin-bottom: 14px;
}

.about-hero-btn {
  display: inline-flex;
  margin-top: 14px;
  background: var(--white);
  color: var(--primary);
  padding: 16px 26px;
  border-radius: 10px;
  font-weight: 700;
}

.about-hero-card {
  background: var(--white);
  color: var(--black);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 24px 65px rgba(0,0,0,0.22);
}

.about-hero-card h3 {
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 18px;
  font-weight: 700;
}

.about-hero-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.about-hero-card li {
  font-weight: 600;
  color: #333;
  padding-left: 30px;
  position: relative;
}

.about-hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.about-expertise,
.why-us-section,
.about-process {
  padding: 70px 0;
}

.about-expertise {
  background: var(--white);
}

.about-two-col h2,
.about-heading h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.about-two-col p,
.about-heading p {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.about-image-card {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 18px 50px rgba(99,38,53,0.1);
}

.about-image-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.why-us-section {
  background: var(--soft);
}

.about-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 14px 38px rgba(99,38,53,0.06);
}

.why-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 18px;
}

.why-card h3 {
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--grey);
  line-height: 1.65;
  font-size: 15px;
}

.about-process {
  background: var(--white);
}

.process-list {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 16px;
}

.process-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: flex-start;
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}

.process-step > span {
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.process-step h3 {
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.process-step p {
  color: var(--grey);
  line-height: 1.65;
  font-size: 15px;
}

@media (max-width: 950px) {
  .about-hero-grid,
  .about-two-col,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .about-expertise,
  .why-us-section,
  .about-process {
    padding: 55px 0;
  }

  .about-image-card img {
    height: 310px;
  }
}

@media (max-width: 650px) {
  .about-hero h1 {
    font-size: 36px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-hero-card,
  .why-card {
    padding: 24px;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .about-hero-btn {
    width: 100%;
    justify-content: center;
  }
}

.contact-hero {
  background:
    linear-gradient(120deg, rgba(99,38,53,0.96), rgba(67,23,34,0.88)),
    url("https://www.kensbridge.co/assets/img/landing-background.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 76px 0;
}

.contact-hero-grid,
.contact-form-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.contact-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.contact-hero p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 760px;
  margin-bottom: 12px;
}

.contact-hero-card {
  background: var(--white);
  color: var(--black);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 24px 65px rgba(0,0,0,0.22);
}

.contact-hero-card h3 {
  color: var(--primary);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-mini {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

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

.contact-mini span {
  width: 42px;
  height: 42px;
  background: var(--soft);
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.contact-mini strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-mini a,
.contact-mini p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.contact-info-section {
  padding: 70px 0;
  background: var(--white);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(99,38,53,0.06);
  transition: 0.25s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(99,38,53,0.12);
}

.contact-icon {
  width: 54px;
  height: 54px;
  background: var(--soft-2);
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 24px;
}

.contact-card h3 {
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.contact-card strong {
  color: var(--black);
  font-size: 15px;
  line-height: 1.55;
}

.contact-form-section {
  background: var(--soft);
  padding: 70px 0;
}

.contact-form-intro h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.contact-form-intro p {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.contact-note-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  margin-top: 24px;
}

.contact-note-box h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-note-box p {
  margin: 0;
  font-size: 15px;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 55px rgba(99,38,53,0.1);
}

.contact-new-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--soft);
  border-radius: 12px;
  padding: 15px 16px;
  font-family: "Poppins", sans-serif !important;
  font-size: 15px;
  outline: none;
  color: var(--black);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}

.contact-submit-btn {
  border: none;
  cursor: pointer;
  background: var(--primary);
  color: var(--white);
  padding: 17px 26px;
  border-radius: 12px;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  transition: 0.25s;
}

.contact-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

@media (max-width: 950px) {
  .contact-hero-grid,
  .contact-form-grid,
  .contact-cards,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-hero,
  .contact-info-section,
  .contact-form-section {
    padding: 55px 0;
  }
}

@media (max-width: 650px) {
  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-hero-card,
  .contact-form-card,
  .contact-card {
    padding: 24px;
  }

  .contact-submit-btn {
    width: 100%;
  }
}

.fees-hero {
  background:
    linear-gradient(120deg, rgba(99,38,53,0.96), rgba(67,23,34,0.88)),
    url("https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 76px 0;
}

.fees-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.fees-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.fees-hero p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 760px;
  margin-bottom: 12px;
}

.fees-summary-card {
  background: var(--white);
  color: var(--black);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 24px 65px rgba(0,0,0,0.22);
}

.fees-summary-card h3 {
  color: var(--primary);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
}

.fees-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.fees-summary-row:last-child {
  border-bottom: 0;
}

.fees-summary-row span {
  color: var(--grey);
  font-weight: 600;
}

.fees-summary-row strong {
  color: var(--primary);
  font-size: 20px;
}

.fees-content-section {
  background: var(--soft);
  padding: 70px 0;
}

.fees-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  align-items: start;
}

.fees-side-card {
  background: var(--primary);
  color: var(--white);
  border-radius: 22px;
  padding: 28px;
  position: sticky;
  top: 105px;
  box-shadow: 0 18px 55px rgba(99,38,53,0.16);
}

.fees-side-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.fees-side-card ul {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-bottom: 22px;
}

.fees-side-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,0.88);
  font-size: 14.5px;
  line-height: 1.55;
}

.fees-side-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
}

.fees-side-btn {
  display: inline-flex;
  background: var(--white);
  color: var(--primary);
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 700;
}

.fees-main-content {
  display: grid;
  gap: 20px;
}

.fees-block,
.fees-example-box,
.fees-table-card,
.fees-note {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 14px 40px rgba(99,38,53,0.06);
}

.fees-block h2,
.fees-example-box h2,
.fees-table-card h2 {
  color: var(--black);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.fees-block p,
.fees-example-box p,
.fees-note p {
  color: var(--grey);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.fees-block p:last-child,
.fees-note p:last-child {
  margin-bottom: 0;
}

.fees-block strong,
.fees-alert strong,
.fees-note strong {
  color: var(--primary);
}

.fees-block ul {
  padding-left: 20px;
  color: var(--grey);
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.fees-block li {
  line-height: 1.7;
  font-size: 15.5px;
}

.fees-block a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fees-alert {
  background: var(--soft);
  border-left: 4px solid var(--primary);
  padding: 18px;
  border-radius: 14px;
  color: var(--grey);
  line-height: 1.75;
  margin-top: 18px;
  font-size: 15.5px;
}

.fees-calculation-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.fees-calculation-grid div {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.fees-calculation-grid span {
  display: block;
  color: var(--grey);
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 8px;
  font-weight: 600;
}

.fees-calculation-grid strong {
  color: var(--primary);
  font-size: 24px;
}

.fees-calculation-grid .highlight {
  background: var(--primary);
}

.fees-calculation-grid .highlight span,
.fees-calculation-grid .highlight strong {
  color: var(--white);
}

.fees-table-card table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
}

.fees-table-card th {
  background: var(--primary);
  color: var(--white);
  text-align: left;
  padding: 16px;
  font-weight: 700;
}

.fees-table-card td {
  background: var(--soft);
  border-bottom: 1px solid var(--border);
  padding: 16px;
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
}

.fees-table-card tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 1050px) {
  .fees-layout,
  .fees-hero-grid {
    grid-template-columns: 1fr;
  }

  .fees-side-card {
    position: static;
  }

  .fees-calculation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .fees-hero,
  .fees-content-section {
    padding: 55px 0;
  }

  .fees-hero h1 {
    font-size: 36px;
  }

  .fees-summary-card,
  .fees-side-card,
  .fees-block,
  .fees-example-box,
  .fees-table-card,
  .fees-note {
    padding: 24px;
  }

  .fees-calculation-grid {
    grid-template-columns: 1fr;
  }

  .fees-table-card {
    overflow-x: auto;
  }

  .fees-table-card table {
    min-width: 620px;
  }
}

.faq-page-hero {
  background:
    linear-gradient(120deg, rgba(99,38,53,0.96), rgba(67,23,34,0.88)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 76px 0;
}

.faq-page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.faq-page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.faq-page-hero p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 760px;
}

.faq-hero-card {
  background: var(--white);
  color: var(--black);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 24px 65px rgba(0,0,0,0.22);
}

.faq-hero-card h3 {
  color: var(--primary);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
}

.faq-hero-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.faq-hero-card li {
  position: relative;
  padding-left: 30px;
  color: var(--grey);
  font-weight: 600;
}

.faq-hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.faq-intro-section {
  background: var(--white);
  padding: 60px 0 30px;
}

.faq-intro-box {
  max-width: 980px;
  margin: auto;
  text-align: center;
}

.faq-intro-box h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.faq-intro-box p {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.75;
  max-width: 850px;
  margin: 0 auto 22px;
}

.faq-link-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-link-row a {
  background: var(--soft);
  border: 1px solid var(--border);
  color: var(--primary);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 14px;
}

.faq-page-section {
  background: var(--soft);
  padding: 60px 0 70px;
}

.faq-page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.faq-sidebar {
  background: var(--primary);
  color: var(--white);
  border-radius: 22px;
  padding: 26px;
  position: sticky;
  top: 105px;
  box-shadow: 0 18px 55px rgba(99,38,53,0.16);
}

.faq-sidebar h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.faq-sidebar a {
  display: block;
  color: rgba(255,255,255,0.86);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  font-size: 14.5px;
  font-weight: 600;
}

.faq-sidebar a:last-child {
  border-bottom: 0;
}

.faq-page-list {
  display: grid;
  gap: 26px;
}

.faq-group h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--black);
}

.faq-answer ul,
.faq-item ul {
  padding-left: 20px;
  margin: 10px 0;
  color: var(--grey);
  display: grid;
  gap: 8px;
}

.faq-answer li,
.faq-item li {
  font-size: 15.5px;
  line-height: 1.65;
}

.faq-answer p {
  padding: 0 26px 12px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--grey);
  font-weight: 500;
}

.faq-answer ul {
  margin: 0 26px 16px;
}

.faq-summary-box {
  background: var(--primary);
  color: var(--white);
  border-radius: 22px;
  padding: 30px;
}

.faq-summary-box h2 {
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-summary-box p {
  color: rgba(255,255,255,0.86);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 950px) {
  .faq-page-hero-grid,
  .faq-page-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

  .faq-page-hero,
  .faq-intro-section,
  .faq-page-section {
    padding: 55px 0;
  }
}

@media (max-width: 650px) {
  .faq-page-hero h1 {
    font-size: 36px;
  }

  .faq-hero-card,
  .faq-sidebar,
  .faq-summary-box {
    padding: 24px;
  }

  .faq-link-row a {
    width: 100%;
    text-align: center;
  }
}
/* ===============================
   PRIVACY POLICY PAGE
=================================*/

/* HERO */
.policy-hero {
  background: linear-gradient(120deg, rgba(99,38,53,0.95), rgba(17,17,17,0.95));
  color: #fff;
  padding: 70px 0;
}

.policy-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.policy-hero h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 700; /* reduced bold */
  margin-bottom: 14px;
}

.policy-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.policy-hero-card {
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.policy-hero-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 600;
}

.policy-hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-hero-card li {
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.policy-hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00c16a;
}

/* MAIN LAYOUT */
.policy-section {
  padding: 70px 0;
  background: #faf6f7;
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* SIDEBAR */
.policy-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
  background: #fff;
  border: 1px solid #eadde2;
  border-radius: 16px;
  padding: 22px;
}

.policy-sidebar h3 {
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.policy-sidebar a {
  display: block;
  font-size: 14px;
  color: #666;
  padding: 8px 0;
  transition: 0.2s;
}

.policy-sidebar a:hover {
  color: #632635;
  padding-left: 4px;
}

/* CONTENT */
.policy-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.policy-block {
  background: #fff;
  border: 1px solid #eadde2;
  border-radius: 16px;
  padding: 30px;
}

/* HEADINGS (FIX OVER-BOLD ISSUE) */
.policy-block h2 {
  font-size: 24px;
  margin-bottom: 14px;
  font-weight: 600; /* reduced from heavy bold */
  color: #111;
}

/* TEXT */
.policy-block p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

/* LISTS */
.policy-block ul,
.policy-block ol {
  padding-left: 18px;
  margin-bottom: 12px;
}

.policy-block li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* LINKS */
.policy-block a {
  color: #632635;
  font-weight: 500;
}

.policy-block a:hover {
  text-decoration: underline;
}

/* TABLES (if used) */
.policy-block table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.policy-block table th,
.policy-block table td {
  border: 1px solid #eadde2;
  padding: 10px;
  font-size: 14px;
}

.policy-block table th {
  background: #faf6f7;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 950px) {
  .policy-hero-grid {
    grid-template-columns: 1fr;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 650px) {
  .policy-section {
    padding: 50px 0;
  }

  .policy-block {
    padding: 22px;
  }

  .policy-hero {
    padding: 50px 0;
  }

  .policy-hero h1 {
    font-size: 28px;
  }
}
.blog-list-hero {
  background:
    linear-gradient(120deg, rgba(99,38,53,0.96), rgba(67,23,34,0.88)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 76px 0;
}

.blog-list-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.blog-list-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.blog-list-hero p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 760px;
}

.blog-hero-card {
  background: var(--white);
  color: var(--black);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 24px 65px rgba(0,0,0,0.22);
}

.blog-hero-card h3 {
  color: var(--primary);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
}

.blog-hero-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.blog-hero-card li {
  position: relative;
  padding-left: 30px;
  color: var(--grey);
  font-weight: 600;
}

.blog-hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.hrp-start-hub {
  background: var(--white);
  padding: 60px 0;
}

.hrp-start-box {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
}

.hrp-start-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
}

.hrp-start-heading h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.hrp-start-heading p {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.7;
}

.hrp-start-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.hrp-start-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  transition: 0.25s;
}

.hrp-start-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(99,38,53,0.1);
}

.hrp-start-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 18px;
}

.hrp-start-card h3 {
  color: var(--black);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hrp-start-card p {
  color: var(--grey);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

.blog-list-section {
  background: var(--soft);
  padding: 70px 0;
}

.blog-list-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  align-items: start;
}

.blog-section-heading {
  margin-bottom: 26px;
}

.blog-section-heading h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.8px;
}

.blog-main-list {
  display: grid;
  gap: 24px;
}

.blog-list-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 310px 1fr;
  box-shadow: 0 14px 40px rgba(99,38,53,0.06);
  transition: 0.25s;
}

.blog-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(99,38,53,0.12);
}

.blog-list-image {
  min-height: 250px;
  display: block;
}

.blog-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-list-content {
  padding: 28px;
}

.blog-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--grey);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-list-content h3 {
  font-size: 25px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-list-content h3 a {
  color: var(--black);
}

.blog-list-content h3 a:hover {
  color: var(--primary);
}

.blog-list-content p {
  color: var(--grey);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.blog-read-btn {
  display: inline-flex;
  background: var(--primary);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 700;
}

.blog-read-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.blog-sidebar-new {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 105px;
}

.blog-sidebar-card,
.blog-sidebar-cta {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(99,38,53,0.06);
}

.blog-sidebar-card h3,
.blog-sidebar-cta h3 {
  color: var(--primary);
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 18px;
}

.recent-blog-list {
  display: grid;
  gap: 16px;
}

.recent-blog-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 13px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.recent-blog-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.recent-blog-item img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 14px;
}

.recent-blog-item h4 {
  font-size: 14.5px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.recent-blog-item h4:hover {
  color: var(--primary);
}

.recent-blog-item span {
  color: var(--grey);
  font-size: 12.5px;
  font-weight: 600;
}

.blog-sidebar-cta {
  background: var(--primary);
  color: var(--white);
}

.blog-sidebar-cta h3 {
  color: var(--white);
}

.blog-sidebar-cta p {
  color: rgba(255,255,255,0.84);
  line-height: 1.65;
  font-size: 15px;
  margin-bottom: 18px;
}

.blog-sidebar-cta a {
  display: inline-flex;
  background: var(--white);
  color: var(--primary);
  padding: 13px 18px;
  border-radius: 10px;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .blog-list-layout,
  .blog-list-hero-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar-new {
    position: static;
  }

  .hrp-start-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .blog-list-card {
    grid-template-columns: 1fr;
  }

  .blog-list-image {
    min-height: 220px;
  }
}

@media (max-width: 650px) {
  .blog-list-hero,
  .hrp-start-hub,
  .blog-list-section {
    padding: 55px 0;
  }

  .blog-list-hero h1 {
    font-size: 36px;
  }

  .blog-hero-card,
  .hrp-start-box,
  .blog-list-content,
  .blog-sidebar-card,
  .blog-sidebar-cta {
    padding: 24px;
  }

  .hrp-start-grid {
    grid-template-columns: 1fr;
  }
}
.blog-detail-hero {
  background:
    linear-gradient(120deg, rgba(99,38,53,0.96), rgba(67,23,34,0.9)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 76px 0;
}

.blog-detail-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.blog-detail-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.blog-detail-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
}

.blog-detail-hero-card {
  background: var(--white);
  color: var(--black);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 24px 65px rgba(0,0,0,0.22);
}

.blog-detail-hero-card h3 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.blog-detail-hero-card a {
  display: block;
  color: var(--black);
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.blog-detail-hero-card a:last-child {
  border-bottom: 0;
}

.blog-detail-hero-card a:hover {
  color: var(--primary);
}

.blog-detail-page {
  background: var(--soft);
  padding: 70px 0;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  align-items: start;
}

.blog-detail-article,
.blog-detail-sidebar-card,
.blog-detail-cta,
.blog-resource-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(99,38,53,0.06);
}

.blog-detail-article {
  overflow: hidden;
}

.blog-detail-content {
  padding: 34px;
  color: #333;
  font-size: 17px;
  line-height: 1.85;
}

.blog-detail-content > *:first-child {
  margin-top: 0 !important;
}

.blog-detail-content p {
  color: #333;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 400;
}

.blog-detail-content strong {
  color: var(--black);
  font-weight: 700;
}

.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4,
.blog-detail-content h5,
.blog-detail-content h6 {
  color: var(--black);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 36px 0 16px;
}

.blog-detail-content h2 {
  font-size: clamp(28px, 4vw, 38px);
}

.blog-detail-content h3 {
  font-size: clamp(24px, 3vw, 30px);
}

.blog-detail-content h4 {
  font-size: 22px;
}

.blog-detail-content ul,
.blog-detail-content ol {
  margin: 0 0 24px;
  padding-left: 0;
}

.blog-detail-content ul li,
.blog-detail-content ol li {
  position: relative;
  list-style: none;
  margin-bottom: 13px;
  padding-left: 34px;
  color: #333;
  font-size: 16.5px;
  line-height: 1.75;
}

.blog-detail-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: var(--soft-2);
  color: var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}

.blog-detail-content ol {
  counter-reset: item;
}

.blog-detail-content ol li {
  counter-increment: item;
}

.blog-detail-content ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}

.blog-detail-content a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-detail-content a[href*="/carer/check-now"] {
  display: inline-flex;
  background: var(--primary);
  color: var(--white) !important;
  padding: 13px 20px;
  border-radius: 10px;
  text-decoration: none;
  margin: 6px 0;
}

.blog-detail-content a[href*="/carer/check-now"]:hover {
  background: var(--primary-dark);
}

.blog-detail-content a[href*="/carer/check-now"] strong {
  color: var(--white) !important;
}

.blog-detail-content blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--primary);
  background: var(--soft);
  border-radius: 14px;
  color: var(--black);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
}

.blog-detail-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.blog-detail-content table th,
.blog-detail-content table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  color: #333;
  font-size: 15.5px;
  line-height: 1.65;
}

.blog-detail-content table th,
.blog-detail-content table tr:first-child td {
  background: var(--soft);
  color: var(--black);
  font-weight: 700;
}

.blog-detail-content img,
.blog-detail-content iframe {
  max-width: 100%;
  border-radius: 16px;
}

.blog-resource-box {
  margin: 0 34px 34px;
  padding: 26px;
}

.blog-resource-box h3 {
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.blog-resource-links {
  display: grid;
  gap: 12px;
}

.blog-resource-links a {
  background: var(--soft);
  border: 1px solid var(--border);
  color: var(--primary);
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 700;
}

.blog-detail-sidebar {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 105px;
}

.blog-detail-sidebar-card,
.blog-detail-cta {
  padding: 24px;
}

.blog-detail-sidebar-card h3,
.blog-detail-cta h3 {
  color: var(--primary);
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 18px;
}

.blog-detail-cta {
  background: var(--primary);
  color: var(--white);
}

.blog-detail-cta h3 {
  color: var(--white);
}

.blog-detail-cta p {
  color: rgba(255,255,255,0.84);
  line-height: 1.65;
  font-size: 15px;
  margin-bottom: 18px;
}

.blog-detail-cta a {
  display: inline-flex;
  background: var(--white);
  color: var(--primary);
  padding: 13px 18px;
  border-radius: 10px;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .blog-detail-hero-grid,
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .blog-detail-sidebar {
    position: static;
  }
}

@media (max-width: 650px) {
  .blog-detail-hero,
  .blog-detail-page {
    padding: 55px 0;
  }

  .blog-detail-hero h1 {
    font-size: 34px;
  }

  .blog-detail-hero-card,
  .blog-detail-content,
  .blog-detail-sidebar-card,
  .blog-detail-cta {
    padding: 24px;
  }

  .blog-resource-box {
    margin: 0 24px 24px;
    padding: 22px;
  }

  .blog-detail-content p,
  .blog-detail-content ul li,
  .blog-detail-content ol li {
    font-size: 16px;
  }

  .blog-detail-content table {
    display: block;
    overflow-x: auto;
  }
}