:root{
  --page-bg:#efeff2;
  --panel-bg:#ffffff;
  --soft-bg:#ecebf1;
  --deep:#1F1548;
  --deep-2:#23115b;
  --text:#2e2b39;
  --muted:#6e6a7f;
  --line:#d8d7df;
}

.tax-advice-for-individuals-page {
  background:var(--page-bg);
}

.acc-hero{
  height:286px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.45) 48%, rgba(0,0,0,.24) 100%),
    url("../assets/tax-individuals-hero.jpg") center/cover no-repeat;
  position:relative;
}

.acc-hero .inner,
.acc-shell .inner,
.acc-banner .inner,
.acc-assessment .inner,
.acc-judgement .inner{
  max-width:1600px;
  margin:0 auto;
  padding:0 80px;
}

.acc-hero .inner{
  height:100%;
  display:flex;
  align-items:flex-end;
}

.acc-hero .copy{
  padding-bottom:44px;
  max-width:860px;
}

.acc-hero h1{
  margin:0 0 10px;
  color:#fff;
  font-size:38px;
  line-height:1.12;
  font-weight:700;
}

.acc-hero p{
  margin:0;
  color:rgba(255,255,255,.86);
  font-size:24px;
  line-height:1.45;
  max-width:760px;
}

.acc-shell{
  padding:62px 0 0;
}

.acc-topnav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  margin-bottom:28px;
}

.crumb{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#7d778f;
  font-size:24px;
  line-height:1.2;
  transition:color .24s ease, transform .24s ease;
}

.crumb:hover{
  color:var(--deep);
  transform:translateY(-1px);
}

.crumb-back::before{
  content:"‹";
  font-size:32px;
  line-height:1;
  color:var(--gold);
}

.crumb-next::after{
  content:"›";
  font-size:32px;
  line-height:1;
  color:var(--gold);
}

.acc-card{
  background:var(--panel-bg);
  border:1px solid rgba(31,21,72,.06);
  box-shadow:0 18px 44px rgba(31,21,72,.08);
  padding:54px 0 72px;
}

.acc-intro,
.acc-softbox,
.acc-expand{
  width:1120px;
  margin:0 auto;
}

.acc-intro h2{
  margin:0 0 26px;
  color:var(--deep);
  font-size:38px;
  line-height:1.15;
}

.acc-intro p{
  margin:0 0 18px;
  color:var(--text);
  font-size:24px;
  line-height:1.85;
}

.acc-softbox{
  margin-top:34px;
  background:var(--soft-bg);
  padding:34px 36px 40px;
}

.acc-softbox h3{
  margin:0;
  color:var(--deep);
  font-size:38px;
  line-height:1.18;
}

.acc-divider{
  height:1px;
  background:var(--line);
  margin:18px 0 22px;
}

.acc-linkgrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px 42px;
}

.acc-linkgrid a{
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:40px;
  color:#6c6782;
  font-size:24px;
  line-height:1.4;
  transition:color .24s ease, transform .24s ease;
}

.acc-linkgrid a::after{
  content:"›";
  font-size:24px;
  color:#9a96ad;
}

.acc-linkgrid a:hover,
.acc-linkgrid a.is-current{
  color:var(--deep);
  transform:translateX(2px);
}

.acc-expand{
  margin-top:26px;
  background:var(--deep-2);
  color:#fff;
  box-shadow:0 18px 36px rgba(26,16,69,.18);
  display:grid;
  grid-template-columns:minmax(0,1fr);
}

.acc-expand__summary{ display:contents; }

.acc-expand__summary > div{
  grid-row:1;
  padding:34px 36px 0;
}

.acc-expand__summary p{
  margin:18px 0 0;
  color:rgba(255,255,255,.88);
  font-size:24px;
  line-height:1.7;
}

.acc-expand__body{
  grid-row:2;
  overflow:hidden;
  max-height:0;
  opacity:0;
  padding:0 36px;
  transition:max-height .55s cubic-bezier(.2,.8,.2,1), opacity .35s ease, padding .35s ease;
}

.acc-expand.is-open .acc-expand__body{
  opacity:1;
  padding:14px 36px 0;
}

.acc-expand__body p,
.acc-expand__body li,
.acc-expand__body h4{
  font-size:22px;
  line-height:1.75;
  color:rgba(255,255,255,.92);
}

.acc-expand__body h4{
  margin:0 0 4px;
  font-size:22px;
  font-weight:700;
}

.acc-expand__body p{ margin:0 0 16px; }
.acc-expand__body ul{ margin:0 0 18px; padding-left:22px; }

.acc-toggle{
  grid-row:3;
  justify-self:start;
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-width:auto;
  height:auto;
  margin:22px 36px 30px;
  padding:0;
  border:none;
  border-radius:0;
  background:transparent;
  color:#fff;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
  transition:color .24s ease, transform .24s ease, opacity .24s ease;
}

.acc-toggle::after{
  content:"";
  width:10px;
  height:10px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-2px);
  transform-origin:center;
  transition:transform .24s ease;
}

.acc-toggle:hover{
  color:var(--gold);
  transform:translateY(-1px);
}

.acc-expand.is-open .acc-toggle::after{
  transform:rotate(-135deg) translateY(-1px);
}

.acc-toggle .label-less{ display:none; }
.acc-expand.is-open .acc-toggle .label-more{ display:none; }
.acc-expand.is-open .acc-toggle .label-less{ display:inline; }

.acc-method__grid{
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr;
  gap:26px;
  align-items:center;
}

.acc-method__item h4{
  margin:0 0 10px;
  color:var(--deep);
  font-size:32px;
  line-height:1.2;
}

.acc-method__item p{
  margin:0;
  color:var(--text);
  font-size:24px;
  line-height:1.55;
}

.acc-method__arrow{
  color:var(--deep);
  font-size:46px;
  line-height:1;
}

.acc-other{ margin-bottom:16px; }

.acc-banner{
  margin-top:58px;
  padding:94px 0 88px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.38) 56%, rgba(0,0,0,.18) 100%),
    url("../assets/sebastian-pichler-bAQH53VquTc-unsplash.jpg") center/cover no-repeat;
}

.acc-banner__copy{ max-width:760px; }

.acc-banner h2{
  margin:0 0 22px;
  color:var(--gold);
  font-size:38px;
  line-height:1.2;
}

.acc-banner p{
  margin:0;
  color:rgba(255,255,255,.9);
  font-size:24px;
  line-height:1.75;
}

.acc-assessment{
  background:#fff;
  padding:74px 0 78px;
  text-align:center;
}

.acc-assessment p{
  width:1240px;
  margin:0 auto 28px;
  color:#29272f;
  font-size:24px;
  line-height:1.6;
  font-weight:600;
}

.acc-assessment__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:18px 34px;
  border-radius:999px;
  background:var(--deep);
  color:var(--gold);
  font-size:24px;
  font-weight:700;
}

.acc-assessment__btn .arrow{
  width:18px;
  height:18px;
  filter:invert(1);
}

.acc-assessment__btn.btn-cta::before{ background:rgba(228,206,142,.2); }

.acc-judgement{
  background:var(--deep);
  border-bottom:6px solid var(--gold);
  margin-bottom:0;
}

.acc-judgement .inner{
  min-height:220px;
  padding:24px 40px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:38px;
  font-style:italic;
  font-weight:400;
  letter-spacing:.3px;
  text-align:center;
}

.next-step{ margin-top:0; border-top:none; box-shadow:none; }
.next-step .inner{ padding-top:0; }
.next-step h3{ font-size:38px; }
.next-step p{ width:780px; font-size:24px; }
.subscribe input,
.subscribe button{ height:48px; font-size:22px; }
.subscribe input{ width:540px; }
.subscribe button{ padding:0 26px; }


@media (max-width: 1400px){
  .acc-intro,
  .acc-softbox,
  .acc-expand{
    width:100%;
    max-width:1120px;
  }

  .acc-assessment p{
    width:auto;
    max-width:1240px;
  }
}
