:root {
      --brand: #0B3D91;
      --template-theme: {主题色};
      --brand-dark: #06265f;
      --brand-soft: #eaf1fb;
      --accent: #d81b60;
      --accent-soft: #fff0f6;
      --ink: #122033;
      --muted: #617087;
      --line: #dce3ec;
      --surface: #ffffff;
      --background: #f5f7fa;
      --success: #16835f;
      --shadow: 0 18px 48px rgba(20, 40, 75, 0.1);
      --radius: 18px;
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--background);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
      line-height: 1.7;
      overflow-x: hidden;
    }

    body.drawer-lock {
      overflow: hidden;
    }

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

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

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      color: inherit;
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .topbar {
      color: #e9f1ff;
      background: var(--brand-dark);
      font-size: 13px;
    }

    .topbar-inner {
      min-height: 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .topbar-contact {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .topbar a {
      transition: color 0.2s ease;
    }

    .topbar a:hover {
      color: #ffffff;
    }

    .header {
      position: relative;
      z-index: 50;
      background: rgba(255, 255, 255, 0.98);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 8px 26px rgba(21, 45, 83, 0.05);
    }

    .header-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      gap: 26px;
    }

    .logo {
      min-width: 0;
      display: inline-flex;
      align-items: center;
      gap: 11px;
      color: var(--brand-dark);
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .logo img {
      width: 42px;
      height: 42px;
      flex: 0 0 42px;
      object-fit: contain;
      border-radius: 11px;
    }

    .logo span {
      max-width: 190px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .main-nav {
      align-self: stretch;
      display: flex;
      align-items: stretch;
      margin-left: auto;
    }

    .nav-list {
      display: flex;
      align-items: stretch;
      gap: 2px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .nav-item {
      position: relative;
      display: flex;
      align-items: stretch;
    }

    .nav-link {
      display: flex;
      align-items: center;
      padding: 0 13px;
      color: #26364a;
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
      cursor: pointer;
      transition: color 0.2s ease, background 0.2s ease;
    }

    .has-panel > .nav-link::after {
      width: 6px;
      height: 6px;
      margin: -3px 0 0 8px;
      content: "";
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg);
    }

    .nav-link:hover,
    .nav-item:focus-within > .nav-link,
    .nav-item:hover > .nav-link {
      color: var(--brand);
      background: var(--brand-soft);
    }

    .dropdown-panel,
    .mega-menu {
      position: absolute;
      top: 100%;
      z-index: 70;
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      background: #ffffff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      transform: translateY(10px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .dropdown-panel::before,
    .mega-menu::before {
      position: absolute;
      right: 0;
      bottom: 100%;
      left: 0;
      height: 10px;
      content: "";
    }

    .nav-item:hover > .dropdown-panel,
    .nav-item:focus-within > .dropdown-panel,
    .nav-item:hover > .mega-menu,
    .nav-item:focus-within > .mega-menu {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .dropdown-panel {
      left: 0;
      width: 320px;
      overflow: hidden;
      border-radius: 0 0 16px 16px;
    }

    .dropdown-list {
      display: grid;
      padding: 12px;
    }

    .dropdown-list a {
      padding: 11px 12px;
      overflow: hidden;
      color: #314258;
      font-size: 14px;
      text-overflow: ellipsis;
      white-space: nowrap;
      border-radius: 9px;
    }

    .dropdown-list a:hover {
      color: var(--brand);
      background: var(--brand-soft);
    }

    .panel-entry {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 24px;
      color: #ffffff;
      background: var(--brand);
      font-size: 14px;
      font-weight: 800;
    }

    .mega-menu {
      left: 50%;
      width: min(880px, calc(100vw - 48px));
      padding: 22px;
      border-radius: 0 0 20px 20px;
      transform: translate(-50%, 10px);
    }

    .nav-item:hover > .mega-menu,
    .nav-item:focus-within > .mega-menu {
      transform: translate(-50%, 0);
    }

    .nav-item:nth-last-child(-n+3) .mega-menu {
      right: -80px;
      left: auto;
      transform: translateY(10px);
    }

    .nav-item:nth-last-child(-n+3):hover > .mega-menu,
    .nav-item:nth-last-child(-n+3):focus-within > .mega-menu {
      transform: translateY(0);
    }

    .mega-heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid var(--line);
    }

    .mega-heading strong {
      color: var(--brand-dark);
      font-size: 17px;
    }

    .mega-heading a,
    .mega-heading span {
      color: var(--muted);
      font-size: 13px;
    }

    .mega-heading a:hover {
      color: var(--brand);
    }

    .mega-categories {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding: 14px 0 2px;
    }

    .mega-categories a {
      padding: 6px 11px;
      color: var(--brand);
      background: var(--brand-soft);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
    }

    .mega-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 14px;
    }

    .mega-card {
      min-width: 0;
      display: flex;
      align-items: flex-start;
      gap: 11px;
      padding: 12px;
      border: 1px solid #e7ebf1;
      border-radius: 12px;
      transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .mega-card:hover {
      border-color: #a8bde2;
      box-shadow: 0 10px 22px rgba(11, 61, 145, 0.09);
      transform: translateY(-2px);
    }

    .mega-card img {
      width: 48px;
      height: 48px;
      flex: 0 0 48px;
      object-fit: cover;
      background: #f0f3f8;
      border-radius: 9px;
    }

    .mega-card span {
      min-width: 0;
      display: block;
    }

    .mega-card strong,
    .mega-card p,
    .mega-card small {
      display: block;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .mega-card strong {
      color: #1c2d43;
      font-size: 13px;
      white-space: nowrap;
    }

    .mega-card p {
      display: -webkit-box;
      margin: 4px 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.45;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    .mega-card small {
      color: #758399;
      font-size: 11px;
      line-height: 1.5;
      white-space: nowrap;
    }

    .header-btns {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .header-btns > span,
    .header-btns > a {
      display: inline-flex;
      min-height: 38px;
      align-items: center;
      justify-content: center;
      padding: 7px 13px;
      border-radius: 9px;
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .header-btns > span {
      color: var(--brand);
      background: var(--brand-soft);
    }

    .header-btns > a {
      color: #ffffff;
      background: var(--brand);
      box-shadow: 0 7px 18px rgba(11, 61, 145, 0.2);
    }

    .header-btns > a:hover {
      background: var(--brand-dark);
    }

    .hamburger {
      width: 42px;
      height: 42px;
      display: none;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      padding: 0;
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 10px;
      cursor: pointer;
    }

    .hamburger span {
      width: 20px;
      height: 2px;
      background: var(--brand-dark);
      border-radius: 2px;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .drawer-overlay {
      position: fixed;
      inset: 0;
      z-index: 90;
      visibility: hidden;
      opacity: 0;
      background: rgba(8, 20, 40, 0.62);
      backdrop-filter: blur(3px);
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .drawer-overlay.open {
      visibility: visible;
      opacity: 1;
    }

    .mobile-drawer {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 100;
      width: min(420px, 92vw);
      height: 100dvh;
      overflow-y: auto;
      background: #ffffff;
      box-shadow: -18px 0 48px rgba(8, 25, 54, 0.22);
      transform: translateX(105%);
      transition: transform 0.28s ease;
    }

    .mobile-drawer.open {
      transform: translateX(0);
    }

    .drawer-head {
      position: sticky;
      top: 0;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 8px;
      min-height: 72px;
      padding: 14px 18px;
      background: #ffffff;
      border-bottom: 1px solid var(--line);
    }

    .drawer-head > span,
    .drawer-head > a {
      padding: 8px 11px;
      color: var(--brand);
      background: var(--brand-soft);
      border-radius: 8px;
      font-size: 13px;
      font-weight: 800;
    }

    .drawer-head > a {
      color: #ffffff;
      background: var(--brand);
    }

    .drawer-close {
      width: 40px;
      height: 40px;
      margin-left: auto;
      padding: 0;
      color: #42516a;
      background: #f2f4f7;
      border: 0;
      border-radius: 10px;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
    }

    .drawer-menu {
      padding: 14px 18px 30px;
    }

    .drawer-link,
    .drawer-toggle {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 12px;
      color: #203249;
      background: transparent;
      border: 0;
      border-bottom: 1px solid #edf0f4;
      text-align: left;
      font-weight: 750;
      cursor: pointer;
    }

    .drawer-toggle::after {
      width: 8px;
      height: 8px;
      content: "";
      border-right: 2px solid var(--brand);
      border-bottom: 2px solid var(--brand);
      transform: rotate(45deg);
      transition: transform 0.2s ease;
    }

    .drawer-toggle.active::after {
      transform: rotate(225deg);
    }

    .drawer-submenu {
      display: none;
      padding: 7px 0 10px 14px;
      border-bottom: 1px solid #edf0f4;
    }

    .drawer-submenu.open {
      display: grid;
    }

    .drawer-submenu a {
      padding: 10px 12px;
      color: var(--muted);
      border-radius: 8px;
      font-size: 14px;
    }

    .drawer-submenu a:hover {
      color: var(--brand);
      background: var(--brand-soft);
    }

    .about-page {
      min-width: 0;
    }

    .about-page .about-intro {
      position: relative;
      overflow: hidden;
      padding: 92px 0 84px;
      color: #ffffff;
      background:
        radial-gradient(circle at 16% 20%, rgba(216, 27, 96, 0.28), transparent 28%),
        radial-gradient(circle at 86% 78%, rgba(90, 150, 255, 0.24), transparent 30%),
        linear-gradient(145deg, #061d4a 0%, #0B3D91 54%, #082d6f 100%);
    }

    .about-page .about-intro::before,
    .about-page .about-intro::after {
      position: absolute;
      content: "";
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 50%;
    }

    .about-page .about-intro::before {
      width: 360px;
      height: 360px;
      top: -210px;
      right: 8%;
    }

    .about-page .about-intro::after {
      width: 220px;
      height: 220px;
      bottom: -150px;
      left: 12%;
    }

    .about-page .intro-inner {
      position: relative;
      z-index: 1;
      max-width: 850px;
      margin-inline: auto;
      text-align: center;
    }

    .about-page .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      color: #ffd8e7;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.14em;
    }

    .about-page .eyebrow::before,
    .about-page .eyebrow::after {
      width: 26px;
      height: 1px;
      content: "";
      background: currentColor;
    }

    .about-page .about-intro h1 {
      margin: 0;
      font-size: clamp(34px, 5vw, 62px);
      line-height: 1.18;
      letter-spacing: -0.04em;
    }

    .about-page .about-intro p {
      max-width: 760px;
      margin: 24px auto 0;
      color: #dce9ff;
      font-size: clamp(15px, 2vw, 18px);
    }

    .about-page .intro-points {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 30px;
    }

    .about-page .intro-points span {
      padding: 8px 14px;
      color: #ffffff;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      backdrop-filter: blur(8px);
    }

    .about-page .section {
      padding: 86px 0;
    }

    .about-page .section-white {
      background: #ffffff;
    }

    .about-page .section-soft {
      background: linear-gradient(180deg, #f5f7fa 0%, #edf2f8 100%);
    }

    .about-page .section-heading {
      max-width: 760px;
      margin: 0 auto 42px;
      text-align: center;
    }

    .about-page .section-heading .label {
      display: inline-block;
      margin-bottom: 10px;
      color: var(--accent);
      font-size: 13px;
      font-weight: 850;
      letter-spacing: 0.12em;
    }

    .about-page .section-heading h2 {
      margin: 0;
      color: var(--brand-dark);
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.3;
      letter-spacing: -0.035em;
    }

    .about-page .section-heading p {
      margin: 16px 0 0;
      color: var(--muted);
    }

    .about-page .mission-panel {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
      gap: 28px;
      align-items: stretch;
    }

    .about-page .mission-copy,
    .about-page .mission-note {
      padding: clamp(28px, 5vw, 50px);
      border-radius: 24px;
    }

    .about-page .mission-copy {
      background: #ffffff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .about-page .mission-copy h2 {
      margin: 0 0 18px;
      color: var(--brand-dark);
      font-size: clamp(27px, 3.5vw, 40px);
      line-height: 1.35;
    }

    .about-page .mission-copy p {
      margin: 0;
      color: var(--muted);
    }

    .about-page .mission-copy p + p {
      margin-top: 15px;
    }

    .about-page .mission-note {
      display: flex;
      justify-content: center;
      flex-direction: column;
      color: #ffffff;
      background:
        linear-gradient(145deg, rgba(216, 27, 96, 0.92), rgba(137, 15, 81, 0.96)),
        var(--accent);
      box-shadow: 0 20px 45px rgba(216, 27, 96, 0.2);
    }

    .about-page .mission-note strong {
      font-size: 20px;
    }

    .about-page .mission-note p {
      margin: 14px 0 0;
      color: #ffeaf2;
    }

    .about-page .service-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .about-page .service-card {
      min-width: 0;
      padding: 28px;
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 12px 30px rgba(25, 48, 82, 0.06);
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .about-page .service-card:hover {
      border-color: #aabde0;
      box-shadow: 0 18px 38px rgba(11, 61, 145, 0.1);
      transform: translateY(-4px);
    }

    .about-page .service-number {
      width: 48px;
      height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--brand);
      background: var(--brand-soft);
      border-radius: 14px;
      font-size: 14px;
      font-weight: 900;
    }

    .about-page .service-card:nth-child(2n) .service-number {
      color: var(--accent);
      background: var(--accent-soft);
    }

    .about-page .service-card h3 {
      margin: 0 0 10px;
      color: #1d3049;
      font-size: 19px;
    }

    .about-page .service-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .about-page .principle-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .about-page .principle-card {
      padding: 26px 22px;
      background: #ffffff;
      border-top: 4px solid var(--brand);
      border-radius: 14px;
      box-shadow: 0 12px 30px rgba(20, 40, 75, 0.07);
    }

    .about-page .principle-card:nth-child(2),
    .about-page .principle-card:nth-child(4) {
      border-top-color: var(--accent);
    }

    .about-page .principle-card h3 {
      margin: 0 0 9px;
      color: var(--brand-dark);
      font-size: 17px;
    }

    .about-page .principle-card p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
    }

    .about-page .process {
      position: relative;
      max-width: 900px;
      margin-inline: auto;
    }

    .about-page .process::before {
      position: absolute;
      top: 32px;
      bottom: 32px;
      left: 31px;
      width: 2px;
      content: "";
      background: linear-gradient(var(--brand), var(--accent));
    }

    .about-page .process-step {
      position: relative;
      display: grid;
      grid-template-columns: 64px minmax(0, 1fr);
      gap: 22px;
      align-items: start;
    }

    .about-page .process-step + .process-step {
      margin-top: 22px;
    }

    .about-page .step-marker {
      position: relative;
      z-index: 1;
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      background: var(--brand);
      border: 7px solid #eef3f9;
      border-radius: 50%;
      font-weight: 900;
      box-shadow: 0 8px 18px rgba(11, 61, 145, 0.18);
    }

    .about-page .process-step:nth-child(even) .step-marker {
      background: var(--accent);
    }

    .about-page .step-content {
      padding: 22px 26px;
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 16px;
    }

    .about-page .step-content h3 {
      margin: 0 0 7px;
      color: var(--brand-dark);
      font-size: 18px;
    }

    .about-page .step-content p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .about-page .disclosure-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
      gap: 24px;
      align-items: stretch;
    }

    .about-page .disclosure-copy,
    .about-page .contact-card {
      padding: clamp(28px, 4vw, 42px);
      border-radius: 22px;
    }

    .about-page .disclosure-copy {
      background: #ffffff;
      border: 1px solid var(--line);
    }

    .about-page .disclosure-copy h2,
    .about-page .contact-card h2 {
      margin: 0 0 15px;
      font-size: 25px;
      line-height: 1.4;
    }

    .about-page .disclosure-copy h2 {
      color: var(--brand-dark);
    }

    .about-page .disclosure-list {
      display: grid;
      gap: 13px;
      padding: 0;
      margin: 20px 0 0;
      list-style: none;
    }

    .about-page .disclosure-list li {
      position: relative;
      padding-left: 26px;
      color: var(--muted);
      font-size: 14px;
    }

    .about-page .disclosure-list li::before {
      position: absolute;
      top: 0.55em;
      left: 0;
      width: 10px;
      height: 10px;
      content: "";
      background: var(--success);
      border-radius: 50%;
      box-shadow: 0 0 0 5px rgba(22, 131, 95, 0.1);
    }

    .about-page .contact-card {
      color: #ffffff;
      background: var(--brand);
      box-shadow: 0 18px 40px rgba(11, 61, 145, 0.2);
    }

    .about-page .contact-card p {
      margin: 0 0 22px;
      color: #dce9ff;
      font-size: 14px;
    }

    .about-page .contact-card a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 13px 15px;
      color: var(--brand-dark);
      background: #ffffff;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 800;
    }

    .about-page .contact-card a + a {
      margin-top: 10px;
    }

    .about-page .about-cta {
      padding: 72px 0;
      background: #ffffff;
    }

    .about-page .cta-panel {
      position: relative;
      overflow: hidden;
      padding: clamp(34px, 6vw, 64px);
      color: #ffffff;
      background: linear-gradient(130deg, var(--brand-dark), var(--brand));
      border-radius: 26px;
      text-align: center;
      box-shadow: var(--shadow);
    }

    .about-page .cta-panel::after {
      position: absolute;
      width: 250px;
      height: 250px;
      right: -100px;
      bottom: -150px;
      content: "";
      background: rgba(216, 27, 96, 0.45);
      border-radius: 50%;
      filter: blur(4px);
    }

    .about-page .cta-panel h2,
    .about-page .cta-panel p,
    .about-page .cta-actions {
      position: relative;
      z-index: 1;
    }

    .about-page .cta-panel h2 {
      margin: 0;
      font-size: clamp(26px, 4vw, 40px);
    }

    .about-page .cta-panel p {
      max-width: 700px;
      margin: 14px auto 25px;
      color: #dce9ff;
    }

    .about-page .cta-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .about-page .cta-actions a {
      display: inline-flex;
      min-height: 46px;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      border-radius: 10px;
      font-weight: 850;
    }

    .about-page .cta-primary {
      color: var(--brand-dark);
      background: #ffffff;
    }

    .about-page .cta-secondary {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .footer {
      padding: 64px 0 0;
      color: #c9d5e8;
      background: #07182f;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.45fr 1fr 1fr 1fr;
      gap: 42px;
    }

    .footer .logo {
      color: #ffffff;
    }

    .footer-brand p {
      max-width: 430px;
      margin: 20px 0 0;
      color: #9fb0c8;
      font-size: 13px;
    }

    .footer h2 {
      margin: 5px 0 18px;
      color: #ffffff;
      font-size: 15px;
    }

    .footer-links,
    .footer-contact {
      display: grid;
      gap: 10px;
    }

    .footer-links a,
    .footer-contact a {
      color: #aebdd2;
      font-size: 13px;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .footer-links a:hover,
    .footer-contact a:hover {
      color: #ffffff;
      transform: translateX(2px);
    }

    .footer-social {
      margin-top: 5px;
      color: #ffffff;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-top: 48px;
      padding: 20px 0;
      color: #8091aa;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 12px;
    }

    @media (max-width: 1080px) {
      .main-nav {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .header-btns {
        margin-left: auto;
      }

      .about-page .principle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .topbar-inner {
        min-height: 42px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 1px;
        padding: 5px 0;
      }

      .topbar-contact {
        flex-wrap: wrap;
        gap: 3px 14px;
      }

      .header-inner {
        min-height: 68px;
        gap: 12px;
      }

      .logo img {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
      }

      .logo span {
        max-width: 128px;
        font-size: 14px;
      }

      .header-btns > span,
      .header-btns > a {
        display: none;
      }

      .about-page .about-intro {
        padding: 66px 0 62px;
      }

      .about-page .section {
        padding: 64px 0;
      }

      .about-page .mission-panel,
      .about-page .disclosure-panel {
        grid-template-columns: 1fr;
      }

      .about-page .service-grid {
        grid-template-columns: 1fr;
      }

      .about-page .principle-grid {
        grid-template-columns: 1fr;
      }

      .about-page .process::before {
        left: 23px;
      }

      .about-page .process-step {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 13px;
      }

      .about-page .step-marker {
        width: 48px;
        height: 48px;
        border-width: 5px;
        font-size: 13px;
      }

      .about-page .step-content {
        padding: 18px;
      }

      .footer {
        padding-top: 48px;
      }

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

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

    @media (max-width: 420px) {
      .topbar {
        font-size: 11px;
      }

      .about-page .mission-copy,
      .about-page .mission-note,
      .about-page .disclosure-copy,
      .about-page .contact-card {
        padding: 24px 20px;
      }

      .about-page .cta-actions {
        align-items: stretch;
        flex-direction: column;
      }
    }