:root {
  --fca-purple: #7b174f;
  --fca-blue: #004b82;
  --fca-blue-dark: #003f70;
  --link-blue: #005b92;
  --text: #111;
  --muted: #555;
  --light-grey: #e7e7e8;
  --mid-grey: #d3d3d5;
  --footer-grey: #ededee;
  --page-width: 1146px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.42;
}

a {
  color: var(--link-blue);
  text-decoration: underline;
}

a:hover,
a:focus {
  color: var(--fca-purple);
}

button,
input {
  font: inherit;
}

.page-width {
  width: var(--page-width);
  max-width: calc(100vw - 38px);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 35px;
}

.fca-logo {
  display: block;
  width: 224px;
  height: 72px;
  text-decoration: none;
}

.fca-logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-letter {
  font-size: 56px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -3px;
  font-family: Arial, Helvetica, sans-serif;
}

.logo-f,
.logo-a {
  fill: var(--fca-purple);
}

.logo-c {
  fill: #fff;
}

.logo-small {
  fill: var(--fca-purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
}

.search-form {
  width: 461px;
  margin-top: -8px;
}

.search-form label {
  display: block;
  margin-bottom: 6px;
  color: #111;
  font-size: 14px;
}

.search-box {
  display: flex;
  height: 36px;
  border: 1px solid #a04b76;
}

.search-box input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 4px 8px;
  outline: 0;
}

.search-box button {
  width: 38px;
  border: 0;
  background: #fff;
  color: var(--fca-purple);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.search-box svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
}

.main-nav {
  margin-top: 9px;
}

.main-nav ul {
  display: flex;
  gap: 19px;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-nav a {
  display: block;
  width: 139px;
  height: 34px;
  padding-top: 9px;
  color: var(--fca-purple);
  background: #d4d4d6;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
}

.main-nav a.active {
  color: #fff;
  background: var(--fca-blue);
  box-shadow: inset 0 -5px 0 #0072a7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 28px;
  font-size: 14px;
}

.breadcrumb span {
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--fca-purple);
  border-right: 2px solid var(--fca-purple);
  transform: rotate(45deg);
}

.breadcrumb a {
  color: var(--fca-purple);
}

.portal-strip {
  display: grid;
  grid-template-columns: 385px 1fr;
  min-height: 75px;
  margin-top: 14px;
  border: 1px solid #2f72a3;
}

.portal-title {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: #fff;
  background: var(--fca-blue-dark);
  font-size: 20px;
  font-weight: 700;
}

.portal-link {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 17px;
  line-height: 1.35;
}

.portal-link a {
  color: #111;
}

.content-layout {
  display: grid;
  grid-template-columns: 815px 263px;
  column-gap: 67px;
  align-items: start;
  margin-top: 31px;
}

.main-content h1 {
  margin: 0 0 17px;
  font-size: 33px;
  font-weight: 400;
  line-height: 1.05;
}

.meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  color: #555;
  font-size: 15px;
}

.meta span {
  padding-right: 18px;
  margin-right: 16px;
  border-right: 1px solid #8f7f87;
}

.meta strong {
  font-weight: 400;
  color: #333;
  margin-left: 4px;
}

.meta a {
  color: var(--fca-purple);
}

.blue-rule {
  height: 9px;
  margin: 18px 0 19px;
  background: var(--fca-blue);
}

.lead {
  max-width: 800px;
  margin: 0 0 24px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.52;
}

.regulatory-notice {
  margin: 0 0 24px;
  padding: 18px 20px 16px;
  border-left: 8px solid var(--fca-blue);
  background: #f1f4f6;
}

.regulatory-notice h2 {
  margin-bottom: 10px;
  color: var(--fca-blue-dark);
  font-size: 24px;
  font-weight: 700;
}

.regulatory-notice p {
  margin-bottom: 11px;
}

.regulatory-notice p:last-child {
  margin-bottom: 0;
}

.main-content hr {
  border: 0;
  border-top: 1px solid #d8d8d8;
  margin: 0 0 22px;
}

.main-content p {
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 1.48;
}

.button-link {
  display: inline-block;
  min-width: 179px;
  min-height: 32px;
  padding: 6px 15px 5px;
  color: #fff;
  background: var(--fca-blue);
  font-weight: 700;
  line-height: 1.25;
}

.button-link:visited,
.button-link:hover,
.button-link:focus {
  color: #fff;
}

.main-content section {
  margin-top: 28px;
}

.main-content h2 {
  margin: 0 0 11px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.18;
}

.page-updates {
  margin-top: 37px;
}

.updates-toggle {
  width: 100%;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 0 10px 0 12px;
  background: #d1d1d3;
  color: #111;
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
  text-align: left;
}

.circle-plus,
.circle-minus {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #777;
  font-weight: 700;
  line-height: 1;
}

.updates-content {
  padding: 14px 16px;
  background: #eee;
}

.useful-box {
  min-height: 132px;
  margin-top: 20px;
  padding: 24px 21px 20px;
  background: #eeeef0;
  border-bottom: 5px solid var(--fca-blue);
}

.useful-box h2 {
  margin-bottom: 23px;
  font-size: 20px;
  font-weight: 700;
}

.useful-box fieldset {
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 0;
  border: 0;
}

.useful-box label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: 14px;
}

.useful-box input {
  appearance: none;
  width: 28px;
  height: 28px;
  margin: 0;
  border: 1px solid #777;
  border-radius: 50%;
  background: #fff;
}

.useful-box input:checked {
  border: 8px solid var(--fca-blue);
}

.sidebar {
  padding-top: 29px;
}

.share-tools {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 18px;
  color: #333;
}

.print-tool,
.share-block {
  color: #333;
  text-align: center;
  font-size: 14px;
}

.print-tool {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: underline;
}

.print-tool svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #808080;
  stroke-width: 2.4;
}

.share-block span:last-child {
  display: block;
  margin-top: 6px;
}

.share-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 23px;
  color: #777;
  font-weight: 700;
  font-size: 24px;
}

.icon-mail {
  font-size: 19px;
}

.on-this-page {
  border: 1px solid #2e6b9f;
  padding: 16px 19px 22px;
}

.side-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.side-heading h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.side-heading svg {
  width: 36px;
  height: 43px;
  fill: none;
  stroke: var(--fca-blue);
  stroke-width: 2;
}

.side-rule {
  height: 9px;
  margin: 14px 0 20px;
  background: var(--fca-blue);
}

.on-this-page nav {
  display: flex;
  flex-direction: column;
}

.on-this-page a {
  margin-bottom: 16px;
  color: #555;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.2;
}

.on-this-page a:hover,
.on-this-page a:focus {
  text-decoration: underline;
}

.side-panel {
  margin-top: 24px;
  border-bottom: 4px solid var(--fca-blue);
}

.side-panel h2,
.side-panel button {
  width: 100%;
  min-height: 39px;
  margin: 0;
  padding: 9px 13px;
  border: 0;
  color: #fff;
  background: var(--fca-blue);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.side-panel > a,
.panel-body a {
  display: block;
  min-height: 44px;
  padding: 10px 14px;
  color: #555;
  background: #eee;
  border-bottom: 2px solid #fff;
  font-size: 15px;
  line-height: 1.35;
}

.side-panel button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.side-panel .circle-minus {
  width: 18px;
  height: 18px;
  background: #c8e3f5;
  color: var(--fca-blue);
  font-size: 18px;
}

.site-footer {
  margin-top: 34px;
}

.footer-main {
  min-height: 445px;
  padding-top: 35px;
  background: var(--footer-grey);
}

.footer-grid {
  display: grid;
  grid-template-columns: 176px 141px 212px 170px 177px;
  justify-content: space-between;
  align-items: start;
}

.footer-grid section {
  text-align: left;
}

.footer-grid section:not(:first-child) {
  text-align: center;
}

.footer-grid h2 {
  margin: 0 0 14px;
  padding-top: 1px;
  border-top: 4px solid var(--fca-purple);
  font-size: 14px;
  font-weight: 700;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 12px;
  color: #111;
  font-size: 13px;
  line-height: 1.28;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 5px;
}

.footer-social a {
  margin: 0;
  color: #858585;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.contact-button {
  width: 142px;
  margin: 16px auto 0 !important;
  padding: 8px 0;
  color: #fff !important;
  background: var(--fca-purple);
  font-size: 16px !important;
  font-weight: 700;
}

.plain-numbers {
  width: 132px;
  margin: 162px auto 0;
  text-align: left;
}

.plain-numbers span {
  display: block;
  width: 18px;
  height: 8px;
  margin-bottom: 3px;
  border-top: 4px solid #ff6b00;
  border-bottom: 4px solid #ff6b00;
}

.plain-numbers strong {
  display: block;
  font-size: 15px;
}

.plain-numbers em {
  display: block;
  margin-top: 4px;
  color: #f56b18;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom {
  min-height: 112px;
  color: #fff;
  background: #000;
}

.footer-bottom-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  min-height: 112px;
  padding-top: 35px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom p:last-child {
  text-align: right;
}

.back-to-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -14px;
  border: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.back-to-top span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
  border-radius: 50%;
  color: var(--fca-purple);
  background: #fff;
  font-size: 25px;
  line-height: 1;
}

@media (max-width: 1184px) {
  .content-layout {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .sidebar {
    padding-top: 0;
  }
}

@media (max-width: 1023px) {
  .topbar {
    gap: 28px;
  }

  .search-form {
    width: min(461px, 45vw);
  }

  .main-nav ul {
    gap: 10px;
  }

  .main-nav a {
    width: 120px;
  }

  .portal-strip {
    grid-template-columns: 1fr;
  }

  .portal-title {
    min-height: 58px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .plain-numbers {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .page-width {
    max-width: calc(100vw - 26px);
  }

  .topbar {
    flex-direction: column;
    padding-top: 22px;
  }

  .search-form {
    width: 100%;
    margin-top: 0;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
  }

  .main-nav a {
    width: calc(50vw - 24px);
  }

  .breadcrumb {
    flex-wrap: wrap;
  }

  .portal-strip {
    min-height: 0;
  }

  .portal-title,
  .portal-link {
    padding: 13px;
    font-size: 16px;
  }

  .main-content h1 {
    font-size: 29px;
  }

  .main-content h2 {
    font-size: 22px;
  }

  .lead {
    font-size: 16px;
  }

  .meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .meta span {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
  }

  .share-tools {
    justify-content: flex-start;
    gap: 38px;
  }

  .footer-main {
    min-height: 0;
    padding-bottom: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid section,
  .footer-grid section:not(:first-child) {
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .contact-button {
    margin-left: 0 !important;
  }

  .plain-numbers {
    margin-left: 0;
  }

  .footer-bottom-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 24px;
    text-align: center;
  }

  .footer-bottom p:last-child {
    text-align: center;
  }

  .back-to-top {
    order: -1;
  }
}
