@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-sans-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-cream: #f2eee4;
  --color-navy: #0a162e;
  --color-navy-light: #152040;
  --color-white: #ffffff;
  --color-text: #001a33;
  --color-muted: #5a6478;
  --color-gold: #c9a227;
  --font-sans: "Geist", sans-serif;
  --container-max: 1200px;
  --content-max: 920px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-cream);
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  text-decoration: underline;
}

.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;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-narrow {
  max-width: var(--content-max);
}

/* Header */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid rgba(10, 22, 46, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
  max-width: min(240px, 42vw);
}

.nav-logo-mark {
  height: 22px;
  width: 22px;
  flex-shrink: 0;
}

.main-nav > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav > ul > li.has-dropdown:hover,
.main-nav > ul > li.has-dropdown:focus-within {
  z-index: 160;
}

.main-nav > ul > li .nav-top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-navy);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.main-nav > ul > li:hover .nav-top-link,
.main-nav > ul > li .nav-top-link.is-active,
.main-nav > ul > li.is-active .nav-top-link {
  background: var(--color-navy);
  color: var(--color-white);
  text-decoration: none;
}

.main-nav > ul > li .nav-top-link.is-active .nav-logo-mark,
.main-nav > ul > li:hover .nav-top-link .nav-logo-mark {
  filter: brightness(0) invert(1);
}

.nav-item-row {
  display: inline-flex;
  align-items: center;
}

.nav-submenu-toggle {
  display: none;
}

@media (min-width: 901px) {
  .nav-item-row {
    display: contents;
  }
}

.main-nav .nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  max-width: 360px;
  background: var(--color-cream);
  border: 1px solid rgba(10, 22, 46, 0.12);
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 150;
  box-shadow: 0 6px 16px rgba(10, 22, 46, 0.12);
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0;
}

.main-nav > ul > li.has-dropdown:hover .nav-dropdown,
.main-nav > ul > li.has-dropdown:focus-within .nav-dropdown {
  display: block;
}

.nav-dropdown li {
  display: block;
  width: 100%;
}

.main-nav > ul > li.has-dropdown:nth-last-child(2) .nav-dropdown {
  left: auto;
  right: 0;
}

.nav-dropdown a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--color-navy);
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(10, 22, 46, 0.18);
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  transition: background 0.15s;
}

.nav-dropdown li:last-child a {
  border-bottom: none;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  background: rgba(10, 22, 46, 0.06);
  color: var(--color-navy);
  text-decoration: none;
}

.nav-icon {
  border-radius: 50%;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: var(--color-navy);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle:hover {
  background: rgba(10, 22, 46, 0.06);
}

.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 18px;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

/* Hero */
.hero {
  width: 100%;
}

.hero-image {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 30%;
}

/* Intro */
.intro {
  padding: 3.5rem 0 2.5rem;
}

.intro-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 8vw, 7rem);
}

.intro-text h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.35rem, 3.5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  color: var(--color-navy);
}

.intro-text h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 1.75vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 2.25rem;
  color: var(--color-navy);
}

.intro-text p {
  font-size: 1.08rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  text-align: left;
}

.intro-text p.intro-with-icon {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.intro-text p.intro-with-icon > .intro-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 0.15rem;
  display: block;
}

.intro-text p.intro-with-icon > span {
  flex: 1;
  min-width: 0;
}

.intro-icon-inline {
  display: inline-block;
  vertical-align: -0.25em;
  width: 22px;
  height: 22px;
  margin: 0 0.1rem 0 0.2rem;
}

.intro-closing {
  margin-top: 2.5rem;
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--color-navy);
}

.prose p {
  margin: 0 0 1rem;
}

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

/* Service Cards */
.service-cards {
  padding: 2rem 0 4rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: var(--color-navy);
}

.card-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.card-image-advisory {
  background: linear-gradient(135deg, #3a4a6a, #1a2a4a);
}

.card-body {
  padding: 1.5rem;
  color: var(--color-white);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.card-body p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 1.25rem;
  flex: 1;
  opacity: 0.9;
}

.btn-ghost {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  align-self: flex-start;
}

.btn-ghost:hover {
  background: var(--color-white);
  color: var(--color-navy);
  text-decoration: none;
}

/* Page Content */
.page-content {
  padding: 3rem 0 2rem;
}

.page-content .prose p {
  font-size: 1.08rem;
  line-height: 1.55;
  text-align: justify;
}

.page-content .prose h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin: 2.5rem 0 1rem;
}

.page-content .prose h2:first-child {
  margin-top: 0;
}

.page-content .prose h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 1.75rem 0 0.75rem;
}

.page-content .prose ul,
.page-content .prose ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
}

.page-content .prose li {
  margin-bottom: 0.5rem;
  line-height: 1.55;
}

.page-content .prose ul ul {
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
}

.page-content h1 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-navy);
  margin: 0 0 1.5rem;
}

/* Contact Page */
.contact-page {
  min-height: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: auto;
}

.contact-portrait {
  position: relative;
  background: #2a3348;
  overflow: hidden;
  min-height: auto;
}

.contact-portrait-photo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
}

.contact-details {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 4.5rem);
  background: var(--color-cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-details h1 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: var(--color-navy);
}

.contact-subtitle {
  font-size: 1.2rem;
  margin: 0 0 1.25rem;
  color: var(--color-navy);
}

.contact-intro {
  font-size: 1.08rem;
  line-height: 1.55;
  margin: 0 0 2rem;
  max-width: 36rem;
  color: var(--color-text);
}

.contact-info {
  margin-top: 0;
  line-height: 1.75;
  font-size: 1.08rem;
}

.contact-info p {
  margin: 0 0 0.2rem;
}

.contact-company {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem !important;
}

.inline-lion {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-info a {
  color: var(--color-navy);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-social,
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-social .social-icon {
  background: var(--color-navy);
}

.footer-social .social-icon {
  background: rgba(255, 255, 255, 0.15);
}

.social-icon:hover {
  opacity: 0.8;
  text-decoration: none;
}

.social-phone::after { content: "☎"; }
.social-whatsapp::after { content: "W"; }
.social-email::after { content: "@"; }
.social-linkedin::after { content: "in"; }
.social-xing::after { content: "X"; }
.social-x::after { content: "𝕏"; font-size: 0.75rem; }
.social-vcard::after { content: "▣"; font-size: 0.85rem; }
.social-contact::after { content: "👤"; font-size: 0.85rem; }

/* Contact Form */
.contact-form-section {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(3rem, 5vw, 4rem);
  background: var(--color-white);
  border-top: 1px solid rgba(26, 35, 50, 0.08);
}

.contact-form-section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-navy);
}

.contact-form-intro {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--color-text);
}

.contact-form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .contact-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-field {
  margin-bottom: 1rem;
}

.contact-form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.contact-form-field label span {
  font-weight: 400;
  color: var(--color-muted);
}

.contact-form-field input[type="text"],
.contact-form-field input[type="email"],
.contact-form-field input[type="tel"],
.contact-form-field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #c5cad3;
  border-radius: 4px;
  font: inherit;
  background: var(--color-white);
}

.contact-form-field textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.contact-form-privacy {
  margin: 0;
  max-width: 28rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--color-muted);
}

.contact-form-privacy a {
  color: var(--color-navy);
}

.contact-form-btn {
  padding: 0.65rem 1.25rem;
  background: var(--color-navy);
  color: var(--color-white);
  border: 1px solid var(--color-navy);
  border-radius: 6px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-form-btn:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

@media (max-width: 640px) {
  .contact-form-footer {
    flex-direction: column;
  }

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

/* Footer */
.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-column h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Accessibility Button */
.accessibility-btn {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #0066cc;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  z-index: 200;
}

.accessibility-btn:hover {
  background: #0052a3;
}

/* Responsive */
@media (max-width: 1100px) {
  .main-nav > ul > li .nav-top-link {
    font-size: 0.82rem;
    padding: 0.45rem 0.65rem;
  }

  .logo-img {
    height: 46px;
  }
}

@media (max-width: 1024px) {
  .contact-page {
    min-height: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-portrait {
    min-height: auto;
    aspect-ratio: 1920 / 1000;
    max-height: min(52vh, 420px);
  }

  .contact-portrait-photo {
    object-fit: contain;
    object-position: center center;
  }

  .contact-details {
    padding: 2rem 1.5rem 3rem;
  }

  .contact-intro {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-basis: 100%;
    border-top: 1px solid rgba(10, 22, 46, 0.08);
    padding: 0.5rem 0 0.75rem;
  }

  .site-header.is-nav-open .main-nav {
    display: block;
  }

  .main-nav > ul {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
  }

  .nav-item-row {
    display: flex;
    width: 100%;
    align-items: stretch;
  }

  .main-nav > ul > li .nav-top-link {
    display: flex;
    flex: 1;
    width: auto;
    font-size: 0.95rem;
    padding: 0.75rem 0.5rem;
    border-radius: 0;
    white-space: normal;
  }

  .nav-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--color-navy);
    cursor: pointer;
    border-left: 1px solid rgba(10, 22, 46, 0.08);
  }

  .main-nav > ul > li.is-active > .nav-item-row .nav-submenu-toggle,
  .main-nav > ul > li.is-submenu-open > .nav-item-row .nav-submenu-toggle {
    color: var(--color-white);
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .main-nav > ul > li.is-active > .nav-item-row,
  .main-nav > ul > li.is-submenu-open > .nav-item-row {
    background: var(--color-navy);
  }

  .main-nav > ul > li.is-active > .nav-item-row .nav-top-link,
  .main-nav > ul > li.is-submenu-open > .nav-item-row .nav-top-link {
    background: transparent;
    color: var(--color-white);
  }

  .nav-submenu-icon {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-top: -3px;
  }

  .main-nav > ul > li.is-submenu-open .nav-submenu-icon {
    transform: rotate(-135deg);
    margin-top: 3px;
  }

  .main-nav > ul > li.has-dropdown:hover .nav-dropdown,
  .main-nav > ul > li.has-dropdown:focus-within .nav-dropdown {
    display: none;
  }

  .main-nav > ul > li.has-dropdown.is-submenu-open .nav-dropdown {
    display: block;
  }

  .main-nav .nav-dropdown {
    position: static;
    min-width: 100%;
    max-width: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(10, 22, 46, 0.12);
    margin: 0 0 0.5rem 0.75rem;
    padding-left: 0.25rem;
  }

  .nav-dropdown a {
    padding: 0.65rem 0.75rem;
    font-size: 0.88rem;
  }

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

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

  .hero-image {
    height: 280px;
  }
}

@media (max-width: 600px) {
  .contact-portrait {
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .contact-details {
    padding: 1.75rem 1.25rem 2.5rem;
  }

  .contact-details h1 {
    font-size: 1.85rem;
  }

  .contact-subtitle {
    font-size: 1.05rem;
  }

  .contact-intro,
  .contact-info {
    font-size: 1rem;
  }

  .contact-social {
    margin-top: 1.5rem;
  }
}

/* Kontakt-CTA (Über-uns-Seiten) */
.kontakt-cta {
  padding: 1rem 0 4rem;
}

.kontakt-cta-card {
  display: grid;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .kontakt-cta-card {
    grid-template-columns: minmax(240px, 34%) 1fr;
  }
}

.kontakt-cta-media {
  background: #1e2a42;
  min-height: 220px;
}

.kontakt-cta-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center top;
}

.kontakt-cta-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.25rem;
}

.kontakt-cta-body h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0 0 0.75rem;
}

.kontakt-cta-body p {
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.25rem;
}

.kontakt-cta-btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-gold);
  text-decoration: none;
}

.kontakt-cta-btn:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .kontakt-cta-body {
    padding: 1.75rem 1.5rem;
  }
}

.content-next-link {
  margin-top: 2rem;
  text-align: right;
}

.btn-text-link {
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
}

.btn-text-link:hover {
  text-decoration: underline;
}
