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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #f7f3ea;
  color: #1d3328;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #d8ccb9;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 20px;
}

.brand img {
  height: 48px;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #405247;
}

.nav-links a:hover {
  color: #b45d33;
}

.menu-button {
  display: none;
  background: #1f5b3d;
  color: white;
  border: 0;
  border-radius: 14px;
  padding: 10px 13px;
  font-size: 1.3rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-dropdown {
  position: relative;
  z-index: 30;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d8ccb9;
  background: #fffdf8;
  color: #1f5b3d;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(31, 91, 61, 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.language-button:hover {
  transform: translateY(-1px);
  border-color: #b45d33;
  background: #ffffff;
}

.language-globe {
  font-size: 1rem;
  line-height: 1;
}

.language-current {
  line-height: 1;
}

.language-caret {
  font-size: 0.85rem;
  transition: transform 0.18s ease;
}

.language-dropdown.open .language-caret {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 190px;
  background: #fffdf8;
  border: 1px solid #d8ccb9;
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 18px 45px rgba(29, 51, 40, 0.16);
  display: none;
}

.language-dropdown.open .language-menu {
  display: grid;
  gap: 6px;
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 12px;
  border-radius: 14px;
  color: #405247;
  font-weight: 850;
}

.language-option small {
  color: #8a6b55;
  font-size: 0.72rem;
  font-weight: 800;
}

.language-option:hover {
  background: #f7f3ea;
  color: #1f5b3d;
}

.language-option.active {
  background: #1f5b3d;
  color: white;
}

.language-option.active small {
  color: #f7f3ea;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  border: 0;
  background: #1f5b3d;
  color: white;
  cursor: pointer;
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #17452e;
}

.button.secondary {
  background: transparent;
  color: #1f5b3d;
  border: 2px solid #1f5b3d;
}

.hero {
  padding: 86px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 50px;
}

.pill {
  display: inline-flex;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid #c7b99f;
  background: rgba(255,255,255,0.62);
  color: #b45d33;
  font-weight: 900;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  max-width: 760px;
}

.hero p {
  margin-top: 24px;
  max-width: 650px;
  font-size: 1.16rem;
  color: #4c5d52;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid #d8ccb9;
  border-radius: 34px;
  padding: 26px;
  box-shadow: 0 24px 70px rgba(29, 51, 40, 0.12);
}

.hero-card-inner {
  background: #1f5b3d;
  color: white;
  border-radius: 26px;
  padding: 28px;
}

.hero-card-inner small {
  color: #e9dfcf;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
}

.hero-card-inner h2 {
  font-size: 2.2rem;
  line-height: 1.05;
  margin-top: 12px;
}

.checklist-preview {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.check {
  background: #f7f3ea;
  color: #405247;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 750;
}

section {
  padding: 78px 0;
}

.dark {
  background: #1f5b3d;
  color: white;
}

.dark p {
  color: #e7eadf;
}

.section-label {
  color: #b45d33;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 950;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.dark .section-label {
  color: #e9dfcf;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

.section-intro {
  max-width: 780px;
  font-size: 1.1rem;
  color: #596a60;
}

.center {
  text-align: center;
}

.center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.card {
  background: rgba(255,255,255,0.82);
  border: 1px solid #d8ccb9;
  border-radius: 28px;
  padding: 24px;
  min-height: 220px;
  box-shadow: 0 12px 36px rgba(29, 51, 40, 0.06);
}

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #e9dfcf;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 1.18;
}

.card p {
  color: #596a60;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.checklist-section {
  background: white;
  border-top: 1px solid #d8ccb9;
  border-bottom: 1px solid #d8ccb9;
}

.progress-box {
  margin-top: 26px;
  background: #f7f3ea;
  border: 1px solid #d8ccb9;
  border-radius: 24px;
  padding: 20px;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.text-button {
  border: 0;
  background: transparent;
  color: #b45d33;
  font-weight: 900;
  cursor: pointer;
}

.progress-bar {
  height: 14px;
  background: #e9dfcf;
  border-radius: 999px;
  overflow: hidden;
}

#progressFill {
  height: 100%;
  width: 0%;
  background: #1f5b3d;
  border-radius: 999px;
  transition: width 0.25s ease;
}

.todo-card {
  background: #f7f3ea;
  border: 1px solid #d8ccb9;
  border-radius: 34px;
  padding: 22px;
  display: grid;
  gap: 12px;
}

.todo-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: white;
  border: 1px solid #d8ccb9;
  border-radius: 18px;
  padding: 16px;
  cursor: pointer;
}

.todo-item input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: #1f5b3d;
}

.todo-item span {
  font-weight: 750;
  color: #405247;
}

.todo-item:has(input:checked) {
  background: #edf5ef;
  border-color: #9bb9a4;
}

.todo-item:has(input:checked) span {
  text-decoration: line-through;
  color: #6f8177;
}

.panel {
  background: #e9dfcf;
  border-radius: 34px;
  padding: 36px;
}

.list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.list-item {
  background: rgba(255,255,255,0.76);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(216, 204, 185, 0.8);
}

.list-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.list-item span {
  color: #596a60;
}

.directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.directory-card {
  background: white;
  border: 1px solid #d8ccb9;
  border-radius: 24px;
  padding: 20px;
}

.directory-card h3 {
  margin-bottom: 8px;
}

.directory-card p {
  color: #596a60;
  font-size: 0.98rem;
}

.contact {
  background: #ffffff;
  padding-bottom: 78px;
}

.contact-box {
  background: #1d3328;
  color: white;
  border-radius: 34px;
  padding: 46px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(29, 51, 40, 0.2);
}

.contact-box p {
  color: #e7eadf;
  max-width: 760px;
  margin: 0 auto 28px;
}

.fake-form {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin: 26px auto 0;
}

input, textarea {
  width: 100%;
  border: 0;
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.disclaimer {
  font-size: 0.92rem;
  color: #d9ded4 !important;
  margin-top: 18px !important;
}

.founder {
  background: white;
  border-top: 1px solid #d8ccb9;
}

.founder-box {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 28px;
  align-items: center;
  background: #f7f3ea;
  border: 1px solid #d8ccb9;
  border-radius: 34px;
  padding: 34px;
}

.founder-logo {
  background: white;
  border-radius: 30px;
  padding: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #d8ccb9;
}

.founder-logo img {
  width: 100%;
  max-width: 260px;
}

.founder-extra {
  margin-top: 14px;
}

footer {
  padding: 28px 0;
  border-top: 1px solid #d8ccb9;
  text-align: center;
  color: #596a60;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    border: 1px solid #d8ccb9;
    border-radius: 22px;
    padding: 18px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-right {
    margin-left: auto;
  }

  .language-current {
    display: none;
  }

  .language-button {
    padding: 10px 12px;
  }

  .language-menu {
    right: 0;
  }

  .hero-grid,
  .split,
  .founder-box {
    grid-template-columns: 1fr;
  }

  .cards,
  .directory {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .contact-box {
    padding: 30px 20px;
  }
}

a.card {
  display: block;
}

.card-action {
  display: inline-flex;
  margin-top: 18px;
  color: #b45d33;
  font-weight: 900;
}

.guide-image {
  max-width: 100px;
  margin: 24px auto 0;
  background: #f7f3ea;
  border: 1px solid #d8ccb9;
  border-radius: 26px;
  padding: 16px;
}

.guide-image img {
  width: 100%;
  max-width: 650px;
  border-radius: 18px;
  display: block;
  margin: 0 auto;
}

.image-caption {
  margin-top: 12px;
  color: #596a60;
  font-size: 0.95rem;
  font-weight: 700;
}

.article-content {
  gap: 40px;
}

/* Arrival timeline preview on the homepage */
.timeline-home-section .hero-actions {
  margin-top: 24px;
}

.timeline-note-box {
  max-width: 880px;
}

.timeline-note-box p {
  color: #596a60;
  margin-top: 6px;
}

.timeline-home-container {
  display: block;
}

.timeline-home-container > div:first-child {
  max-width: 900px;
  margin-bottom: 44px;
}

/* Cleaner desktop timeline */
.timeline-preview-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  width: 100%;
  padding-top: 44px;
  margin-top: 10px;
}

.timeline-preview-card::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 7%;
  right: 7%;
  height: 4px;
  border-radius: 999px;
  background: #d8ccb9;
}

.timeline-preview-item {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid #d8ccb9;
  border-radius: 24px;
  padding: 28px 20px 22px;
  min-height: 145px;
  box-shadow: 0 12px 35px rgba(29, 51, 40, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.timeline-preview-item::before {
  content: "";
  position: absolute;
  top: -39px;
  left: 22px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #1f5b3d;
  border: 6px solid #f7f3ea;
  box-shadow: 0 0 0 1px #d8ccb9;
  z-index: 2;
}

.timeline-preview-item:hover {
  transform: translateY(-4px);
  border-color: #b45d33;
  box-shadow: 0 18px 45px rgba(29, 51, 40, 0.1);
}

.timeline-preview-item span {
  display: block;
  color: #b45d33;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  margin-bottom: 10px;
}

.timeline-preview-item strong {
  display: block;
  color: #1d3328;
  font-size: 0.98rem;
  line-height: 1.45;
}

/* Tablet/mobile timeline */
@media (max-width: 980px) {
  .timeline-preview-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 0;
    padding-left: 32px;

      .nav-right {
    margin-left: auto;
  }

  .language-current {
    display: none;
  }

  .language-button {
    padding: 10px 12px;
  }

  .language-menu {
    right: 0;
  }
    
  }

  .timeline-preview-card::before {
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: auto;
    width: 4px;
    height: auto;
  }

  .timeline-preview-item {
    min-height: auto;
    padding: 20px;
  }

  .timeline-preview-item::before {
    top: 22px;
    left: -34px;
  }
}

/* Guide search + show more */
.guide-search-row {
  position: relative;
  margin: 28px 0 34px;
  max-width: 760px;
}

.guide-search-row::before {
  content: "⌕";
  position: absolute;
  left: 21px;
  top: 50%;
  transform: translateY(-50%);
  color: #1f5b3d;
  font-weight: 900;
  font-size: 1.05rem;
  z-index: 1;
}

.guide-search-row input {
  width: 100%;
  border: 1px solid #d8ccb9;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 18px 22px 18px 50px;
  font: inherit;
  color: #1d3328;
  box-shadow: 0 14px 36px rgba(29, 51, 40, 0.06);
}

.guide-search-row input::placeholder {
  color: #7a8a80;
}

.guide-search-row input:focus {
  outline: none;
  border-color: #1f5b3d;
  box-shadow: 0 0 0 4px rgba(31, 91, 61, 0.12), 0 14px 36px rgba(29, 51, 40, 0.06);
}

/* This fixes the issue: a.card was overriding .guide-extra */
a.card.guide-extra {
  display: none;
}

a.card.guide-extra.show {
  display: block;
}

.cards.searching a.card.guide-extra {
  display: block;
}

.guide-more-row {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.guide-more-row .button {
  padding: 13px 22px;
}

.guide-no-results {
  display: none;
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #d8ccb9;
  border-radius: 24px;
  padding: 22px;
  color: #596a60;
  font-weight: 750;
  max-width: 720px;
}

.need-help-strip {
  margin: 18px 0 26px;
  padding: 18px 20px;
  border-radius: 24px;
  background: #fffaf0;
  border: 1px solid rgba(31, 91, 61, 0.16);
  box-shadow: 0 12px 30px rgba(31, 91, 61, 0.07);
  color: #173f2b;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.need-help-strip:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 91, 61, 0.3);
  box-shadow: 0 16px 36px rgba(31, 91, 61, 0.11);
}

.need-help-strip strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.need-help-strip span {
  color: #526657;
  line-height: 1.45;
}

.need-help-strip-action {
  flex: 0 0 auto;
  background: #1f5b3d;
  color: #fff !important;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
}

@media (max-width: 720px) {
  .need-help-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .need-help-strip-action {
    width: 100%;
    text-align: center;
  }
}

.directory-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.directory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(31, 63, 45, 0.1);
}

.directory-card span {
  display: inline-block;
  margin-top: 18px;
  color: #1f5b3d;
  font-weight: 800;
  font-size: 0.92rem;
}

/* Guide page layout */
.translation-disclaimer {
  background: #fff6ec;
  border-top: 1px solid #ead0b3;
  border-bottom: 1px solid #ead0b3;
  padding: 1.1rem 0;
}

.translation-disclaimer p {
  color: #5c4b3f;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.guide-nav {
  position: sticky;
  top: 82px;
  z-index: 8;
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid #d8ccb9;
  border-bottom: 1px solid #d8ccb9;
}

.guide-nav-inner {
  display: flex;
  gap: 14px;
  align-items: center;
  overflow-x: auto;
  padding: 14px 0;
}

.guide-nav a {
  white-space: nowrap;
  display: inline-flex;
  border: 1px solid #d8ccb9;
  background: white;
  color: #1f5b3d;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 850;
  font-size: 0.95rem;
}

.guide-nav a:hover {
  background: #1f5b3d;
  color: white;
}

.article-wrap {
  padding: 56px 0 84px;
}

.article-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
}

.quick-card {
  position: sticky;
  top: 158px;
  background: white;
  border: 1px solid #d8ccb9;
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 16px 48px rgba(29, 51, 40, 0.08);
}

.quick-card h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.quick-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.quick-list div {
  background: #f7f3ea;
  border: 1px solid #e0d4c1;
  border-radius: 18px;
  padding: 14px;
  color: #405247;
  font-weight: 750;
}

.article-content {
  display: grid;
  gap: 56px;
}

.article-card {
  background: white;
  border: 1px solid #d8ccb9;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 16px 48px rgba(29, 51, 40, 0.07);
  scroll-margin-top: 160px;
}

.article-card h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 18px;
}

.article-card p,
.article-card li {
  color: #405247;
  font-size: 1.06rem;
  margin-top: 14px;
  line-height: 1.65;
}

.article-card ul {
  margin-top: 16px;
  padding-left: 1.25rem;
}

.resource-links {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.resource-links a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  background: #f7f3ea;
  border: 1px solid #d8ccb9;
  border-radius: 18px;
  padding: 16px 18px;
  color: #1f5b3d;
  font-weight: 900;
}

.resource-links a:hover {
  background: #1f5b3d;
  color: white;
}

.local-finder,
#support-finder.article-card {
  margin-top: 24px;
  background: #f7f3ea;
  border: 1px solid #d8ccb9;
  border-radius: 26px;
  padding: 24px;
}

.local-finder h3,
#support-finder h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.local-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.local-form input,
.local-form select {
  border: 1px solid #d8ccb9;
  border-radius: 999px;
  padding: 15px 18px;
  font: inherit;
  width: 100%;
  background: white;
}

.local-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.local-note {
  margin-top: 14px;
  color: #596a60;
  font-size: 0.95rem;
  font-weight: 700;
}

.back-box {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 20px;
  color: #1f5b3d;
  font-weight: 900;
}

@media (max-width: 900px) {
  .article-grid {
    grid-template-columns: 1fr;
  }

  .quick-card {
    position: static;
  }

  .guide-nav {
    top: 0;
  }
}

#whats-new {
  background: #ffffff;
  padding: 80px 0;
  border-bottom: 1px solid rgba(30, 65, 50, 0.12);
}

/* === Cost of Living Estimator === */

.cost-section {
  background: #f7f3ea;
  border-top: 1px solid #d8ccb9;
  border-bottom: 1px solid #d8ccb9;
}

.cost-section .split {
  align-items: start;
}

.col-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.col-form label:not(.checkbox-label) {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  color: #1d3328;
}

.col-form input[type="number"],
.col-form select {
  width: 100%;
  border: 1px solid #cfc5b5;
  background: #fffdf8;
  color: #1d3328;
  border-radius: 8px;
  padding: 12px;
  font: inherit;
}

.col-form input[type="number"]:focus,
.col-form select:focus {
  outline: 2px solid rgba(31, 91, 61, 0.25);
  border-color: #1f5b3d;
}

.col-options {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
}

.col-form .checkbox-label {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 9px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #d8ccb9;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.75);
  color: #405247;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.col-form .checkbox-label input {
  width: 16px;
  height: 16px;
  margin: 0 !important;
  flex: 0 0 auto;
  accent-color: #1f5b3d;
}

.col-form .checkbox-label span {
  display: inline-block;
}

.col-form .button {
  min-height: 48px;
  align-self: end;
}

.col-result {
  margin-top: 28px;
}

.col-result-card {
  background: #fffdf8;
  border: 1px solid #d8ccb9;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 36px rgba(29, 51, 40, 0.06);
}

.col-result-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid #e2d8c8;
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.col-result-total h3 {
  font-size: 1.35rem;
  margin: 0;
}

.col-result-total strong {
  font-size: 2rem;
  color: #1f5b3d;
}

.col-breakdown {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.col-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(216, 204, 185, 0.65);
  padding-bottom: 8px;
}

.col-breakdown li:last-child {
  border-bottom: 0;
}

.col-result .small-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: #596a60;
}

@media (max-width: 900px) {
  .col-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .col-options,
  .col-form .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .col-form {
    grid-template-columns: 1fr;
  }

  .col-options {
    flex-direction: column;
    align-items: stretch;
  }

  .col-form .checkbox-label {
    width: 100%;
    border-radius: 16px;
  }

  .col-result-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .col-breakdown li {
    flex-direction: column;
    gap: 2px;
  }
}

/* === Cost of Living Savings Tips === */

.col-savings {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(216, 204, 185, 0.9);
}

.col-savings h4 {
  margin: 0 0 14px;
  color: #1d3328;
  font-size: 1.05rem;
}

.col-savings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.col-saving-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border: 1px solid #d8ccb9;
  border-radius: 16px;
  background: #fffdf8;
  text-decoration: none;
  color: #1d3328;
}

.col-saving-card strong {
  font-size: 0.95rem;
}

.col-saving-card span {
  color: #596a60;
  font-size: 0.88rem;
  line-height: 1.45;
}

.col-saving-card em {
  margin-top: auto;
  color: #1f5b3d;
  font-style: normal;
  font-weight: 800;
  font-size: 0.86rem;
}

.col-saving-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(29, 51, 40, 0.08);
}

@media (max-width: 700px) {
  .col-savings-grid {
    grid-template-columns: 1fr;
  }
}


/* Related Guides */
.related-guides {
  margin-top: 34px;
  margin-bottom: 26px;
  padding: 28px;
  background: #fffdf8;
  border: 1px solid rgba(31, 91, 61, 0.14);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(29, 51, 40, 0.08);
}

.related-guides-header {
  max-width: 720px;
  margin-bottom: 20px;
}

.related-guides-header h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  color: #1f5b3d;
  margin-bottom: 8px;
}

.related-guides-header p:not(.section-label) {
  color: #526257;
  font-weight: 650;
}

.related-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-guide-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  border-radius: 22px;
  background: #f7f3ea;
  border: 1px solid rgba(31, 91, 61, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.related-guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 93, 51, 0.5);
  box-shadow: 0 16px 32px rgba(29, 51, 40, 0.11);
}

.related-guide-card span {
  color: #1f5b3d;
  font-size: 1.08rem;
  font-weight: 900;
}

.related-guide-card p {
  color: #526257;
  font-size: 0.95rem;
  font-weight: 600;
  flex: 1;
}

.related-guide-card strong {
  color: #b45d33;
  font-size: 0.92rem;
}

@media (max-width: 820px) {
  .related-guides {
    padding: 22px;
    border-radius: 24px;
  }

  .related-guides-grid {
    grid-template-columns: 1fr;
  }

  .related-guide-card {
    min-height: auto;
  }
}
