﻿:root {
      --brand: #a80532;
      --ink: #192039;
      --muted: #5d6578;
      --line: #e5e9f1;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: #fff;
      font-family: Inter, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    .page-container {
      width: calc(100% - 48px);
      margin-inline: auto;
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 74px;
      color: #1e253d;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
    }

    .logo-subtitle {
      color: #a80532;
    }

    .nav-link.active,
    .nav-link:hover { color: var(--brand); }

    .nav-link.active::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      height: 3px;
      border-radius: 3px 3px 0 0;
      background: var(--brand);
    }

    .nav-item {
      position: relative;
      display: flex;
      align-items: center;
    }

    .nav-caret {
      transition: transform .18s ease;
    }

    .nav-item:hover .nav-caret,
    .nav-item:focus-within .nav-caret {
      transform: rotate(180deg);
    }

    .nav-dropdown {
      position: absolute;
      top: calc(100% - 6px);
      left: 0;
      z-index: 30;
      min-width: 246px;
      border: 1px solid #e3e8f1;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 14px 30px rgba(28, 38, 63, .12);
      padding: 7px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      pointer-events: none;
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }

    .nav-item:hover .nav-dropdown,
    .nav-item:focus-within .nav-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .nav-dropdown a {
      display: block;
      padding: 10px 14px;
      color: #242b43;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
    }

    .nav-dropdown a:hover {
      background: #f9edf1;
      color: var(--brand);
    }

    .hero {
      position: relative;
      min-height: 372px;
      overflow: hidden;
      background: linear-gradient(102deg, #fbfaf8 0%, #fbfaf8 46%, #f4eee9 46%, #fff 100%);
    }

    .hero::after {
      content: "";
      position: absolute;
      z-index: 3;
      right: 0;
      bottom: -1px;
      left: 0;
      height: 80px;
      background: #fff;
      clip-path: polygon(0 44%, 24% 72%, 50% 75%, 76% 71%, 100% 42%, 100% 100%, 0 100%);
    }

    .hero-photo {
      position: absolute;
      z-index: 1;
      inset: 0;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      pointer-events: none;
    }

    .hero-photo::before {
      content: "";
      position: absolute;
      z-index: 2;
      inset: 0;
      background: linear-gradient(90deg, #fbfaf8 0%, rgba(251,250,248,.98) 20%, rgba(251,250,248,.88) 37%, rgba(251,250,248,.46) 55%, rgba(251,250,248,.12) 72%, rgba(251,250,248,0) 88%);
    }

    .hero-photo img,
    .media-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-photo img {
      width: 85%;
      height: 100%;
      object-fit: cover;
      object-position: 74% 30%;
    }

    .btn-primary,
    .btn-outline {
      display: inline-flex;
      height: 44px;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      padding-inline: 24px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: .18s ease;
    }

    .btn-primary {
      border: 1px solid var(--brand);
      background: var(--brand);
      color: #fff;
    }

    .btn-primary:hover { background: #7f0325; border-color: #7f0325; color: #fff; }

    .btn-outline {
      border: 1px solid var(--brand);
      background: rgba(255,255,255,.84);
      color: var(--brand);
    }

    .btn-outline:hover { background: #f8edf1; }

    .field {
      width: 100%;
      height: 43px;
      border: 1px solid #dce2ec;
      border-radius: 5px;
      background: #fff;
      padding: 0 14px;
      color: #2b324a;
      font-size: 14px;
      font-weight: 600;
      outline: none;
    }

    .field:focus {
      border-color: var(--brand);
    }

    .section-title {
      color: var(--ink);
      font-size: 23px;
      line-height: 1.18;
      font-weight: 600;
      letter-spacing: -.02em;
    }

    .link-red {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--brand);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
    }

    .link-red:hover { color: var(--brandDark); }

    .course-card {
      position: relative;
      min-height: 252px;
      overflow: hidden;
      border: 1px solid #dfe5ef;
      border-radius: 7px;
      background: #fff;
    }

    .course-slider {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    .course-slider::-webkit-scrollbar { display: none; }

    .course-slider .course-card {
      flex: 0 0 100%;
      scroll-snap-align: start;
    }

    .course-image {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background: #f4f1ef;
    }

    .course-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.18) 42%, rgba(255,255,255,.88) 76%, #fff 100%),
        linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 34%, rgba(255,255,255,.44) 66%, rgba(255,255,255,0) 100%);
    }

    .course-card > .p-4 {
      position: relative;
      z-index: 2;
      display: flex;
      min-height: 252px;
      flex-direction: column;
      padding: 18px 16px 16px;
    }

    .course-card h3 {
      max-width: 74%;
      margin-top: 34px;
      min-height: 46px;
    }

    .course-card .meta-row:first-child {
      margin-top: 2px;
    }

    .tag {
      position: absolute;
      z-index: 3;
      top: 13px;
      left: 13px;
      border-radius: 3px;
      padding: 6px 8px;
      color: #fff;
      font-size: 10px;
      font-weight: 600;
      line-height: 1;
      text-transform: uppercase;
    }

    .tag.bg-brand {
      background: var(--brand);
    }

    .course-card .mt-5 {
      margin-top: auto;
      padding-top: 16px;
    }

    .course-seats {
      font-size: 12px;
      line-height: 1.2;
    }

    .meta-row {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #4d5669;
      font-size: 13px;
      line-height: 1.28;
    }

    .meta-row i {
      width: 13px;
      color: #697184;
      font-size: 13px;
    }

    .category-card {
      display: flex;
      min-height: 144px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 14px;
      border: 1px solid #e6eaf1;
      border-radius: 8px;
      color: #232a42;
      background: #fff;
      box-shadow: 0 1px 2px rgba(26, 33, 52, .03);
      text-align: center;
      text-decoration: none;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.25;
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .category-card:hover {
      border-color: rgba(168, 5, 50, .34);
      box-shadow: 0 10px 22px rgba(26, 33, 52, .08);
      transform: translateY(-2px);
    }

    .icon-outline {
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      color: var(--brand);
      font-size: 38px;
      line-height: 1;
    }

    .step-card {
      position: relative;
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 18px;
      align-items: center;
    }

    .step-bubble {
      position: relative;
      display: grid;
      width: 70px;
      height: 70px;
      place-items: center;
      border-radius: 999px;
      background: #f8edf1;
      color: var(--brand);
      font-size: 28px;
    }

    .step-number {
      position: absolute;
      top: -6px;
      left: -7px;
      display: grid;
      width: 24px;
      height: 24px;
      place-items: center;
      border-radius: 999px;
      background: var(--brand);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
    }

    .audience-grid {
      display: grid;
      gap: 20px;
    }

    .audience-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      border: 1px solid #e0e6ef;
      border-radius: 8px;
      background: #fff;
      padding: 22px;
      box-shadow: 0 8px 20px rgba(26, 33, 52, .05);
    }

    .audience-icon {
      display: grid;
      width: 54px;
      height: 54px;
      place-items: center;
      border-radius: 999px;
      background: #f8edf1;
      color: var(--brand);
      font-size: 23px;
    }

    .audience-card h3 {
      margin-top: 16px;
      color: var(--ink);
      font-size: 18px;
      line-height: 1.3;
      font-weight: 700;
    }

    .audience-card p,
    .audience-card li {
      color: #272b34;
      font-size: 14px;
      line-height: 1.5;
    }

    .audience-card p {
      margin-top: 8px;
      font-weight: 400;
    }

    .audience-card ul {
      margin-top: 12px;
      padding-left: 18px;
    }

    .audience-card li + li {
      margin-top: 7px;
    }

    .benefit-icon {
      display: grid;
      width: 56px;
      height: 56px;
      flex: 0 0 auto;
      place-items: center;
      border-radius: 999px;
      background: #f4f5f8;
      color: #737b8f;
      font-size: 22px;
    }

    .lecturer-card {
      display: grid;
      grid-template-columns: 148px 1fr;
      min-height: 112px;
      overflow: hidden;
      border: 1px solid #e0e6ef;
      border-radius: 8px;
      background: #fff;
    }

    .lecturer-card .media-img {
      object-position: center top;
    }

    .lecturer-card > .p-4 {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 16px 18px;
    }

    .lecturer-card h3 {
      color: var(--ink);
      font-size: 18px;
      line-height: 1.25;
    }

    .contact-cta {
      display: grid;
      grid-template-columns: 1.25fr .9fr auto;
      gap: 40px;
      align-items: center;
      border-radius: 8px;
      background: #fbedf0;
      padding: 24px 44px 24px 28px;
    }

    .contact-cta-icon {
      color: var(--brand);
      font-size: 50px;
      line-height: 1;
    }

    .contact-cta-methods {
      display: grid;
      gap: 13px;
      color: var(--ink);
      font-size: 18px;
      font-weight: 700;
    }

    .contact-cta-methods a {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      color: inherit;
      text-decoration: none;
    }

    .contact-cta-methods i {
      width: 34px;
      color: var(--brand);
      font-size: 23px;
      text-align: center;
    }

    .faq-row {
      transition: color .18s ease;
    }

    .faq-row:hover {
      color: var(--brand);
    }

    .faq-row i {
      transition: transform .18s ease;
    }

    .faq-row[aria-expanded="true"] {
      color: var(--brand);
    }

    .faq-row[aria-expanded="true"] i {
      transform: rotate(180deg);
    }

    .faq-panel {
      padding: 0 0 14px;
      color: #272b34;
      font-size: 14px;
      line-height: 1.55;
    }

    .faq-panel[hidden] {
      display: none;
    }

    .faq-item + .faq-item { border-top: 1px solid #e3e8f0; }

    .footer-link {
      display: inline-flex;
      transition: color .18s ease;
    }

    .footer-link:hover {
      color: var(--brand);
    }

    .social-link {
      display: inline-grid;
      width: 34px;
      height: 34px;
      place-items: center;
      border-radius: 999px;
      color: #5e6678;
      font-size: 22px;
      transition: color .18s ease, background-color .18s ease, transform .18s ease;
    }

    .social-link:hover {
      background: #f9edf1;
      color: var(--brand);
      transform: translateY(-2px);
    }

    @media (max-width: 1180px) {
      .nav-link { display: none; }
    }

    @media (max-width: 900px) {
      .contact-cta { grid-template-columns: 1fr; }
      .hero { min-height: auto; }
      .hero-photo { opacity: .22; }
      .hero-photo::before { background: rgba(255,255,255,.78); }
      .hero::after { height: 52px; }
    }

    @media (max-width: 640px) {
      .page-container { width: calc(100% - 32px); }
      .section-title { font-size: 20px; }
      .step-card { grid-template-columns: 58px 1fr; }
      .step-bubble { width: 56px; height: 56px; font-size: 22px; }
      .audience-card { padding: 18px; }
      .lecturer-card { grid-template-columns: 112px 1fr; }
    }

    @media (min-width: 640px) {
      .course-slider .course-card { flex-basis: calc((100% - 24px) / 2); }
    }

    @media (min-width: 1024px) {
      .course-slider .course-card { flex-basis: calc((100% - 48px) / 3); }
    }

:root {
      --brand: #a80532;
      --ink: #192039;
      --muted: #5d6578;
      --line: #e5e9f1;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: #fff;
      font-family: Inter, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    .page-container {
      width: calc(100% - 48px);
      margin-inline: auto;
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 74px;
      color: #1e253d;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
    }

    .logo-subtitle {
      color: #a80532;
    }

    .nav-link.active,
    .nav-link:hover { color: var(--brand); }

    .nav-link.active::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      height: 3px;
      border-radius: 3px 3px 0 0;
      background: var(--brand);
    }

    .nav-item {
      position: relative;
      display: flex;
      align-items: center;
    }

    .nav-caret {
      transition: transform .18s ease;
    }

    .nav-item:hover .nav-caret,
    .nav-item:focus-within .nav-caret {
      transform: rotate(180deg);
    }

    .nav-dropdown {
      position: absolute;
      top: calc(100% - 6px);
      left: 0;
      z-index: 30;
      min-width: 246px;
      border: 1px solid #e3e8f1;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 14px 30px rgba(28, 38, 63, .12);
      padding: 7px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      pointer-events: none;
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }

    .nav-item:hover .nav-dropdown,
    .nav-item:focus-within .nav-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .nav-dropdown a {
      display: block;
      padding: 10px 14px;
      color: #242b43;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
    }

    .nav-dropdown a:hover {
      background: #f9edf1;
      color: var(--brand);
    }

    .hero {
      position: relative;
      min-height: 372px;
      overflow: hidden;
      background: linear-gradient(102deg, #fbfaf8 0%, #fbfaf8 46%, #f4eee9 46%, #fff 100%);
    }

    .hero::after {
      content: "";
      position: absolute;
      z-index: 3;
      right: 0;
      bottom: -1px;
      left: 0;
      height: 80px;
      background: #fff;
      clip-path: polygon(0 44%, 24% 72%, 50% 75%, 76% 71%, 100% 42%, 100% 100%, 0 100%);
    }

    .hero-photo {
      position: absolute;
      z-index: 1;
      inset: 0;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      pointer-events: none;
    }

    .hero-photo::before {
      content: "";
      position: absolute;
      z-index: 2;
      inset: 0;
      background: linear-gradient(90deg, #fbfaf8 0%, rgba(251,250,248,.98) 20%, rgba(251,250,248,.88) 37%, rgba(251,250,248,.46) 55%, rgba(251,250,248,.12) 72%, rgba(251,250,248,0) 88%);
    }

    .hero-photo img,
    .media-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-photo img {
      width: 85%;
      height: 100%;
      object-fit: cover;
      object-position: 74% 30%;
    }

    .btn-primary,
    .btn-outline {
      display: inline-flex;
      height: 44px;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      padding-inline: 24px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: .18s ease;
    }

    .btn-primary {
      border: 1px solid var(--brand);
      background: var(--brand);
      color: #fff;
    }

    .btn-primary:hover { background: #7f0325; border-color: #7f0325; color: #fff; }

    .btn-outline {
      border: 1px solid var(--brand);
      background: rgba(255,255,255,.84);
      color: var(--brand);
    }

    .btn-outline:hover { background: #f8edf1; }

    .field {
      width: 100%;
      height: 43px;
      border: 1px solid #dce2ec;
      border-radius: 5px;
      background: #fff;
      padding: 0 14px;
      color: #2b324a;
      font-size: 14px;
      font-weight: 600;
      outline: none;
    }

    .field:focus {
      border-color: var(--brand);
    }

    .section-title {
      color: var(--ink);
      font-size: 23px;
      line-height: 1.18;
      font-weight: 600;
      letter-spacing: -.02em;
    }

    .link-red {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--brand);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
    }

    .link-red:hover { color: var(--brandDark); }

    .course-card {
      position: relative;
      min-height: 252px;
      overflow: hidden;
      border: 1px solid #dfe5ef;
      border-radius: 7px;
      background: #fff;
    }

    .course-slider {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    .course-slider::-webkit-scrollbar { display: none; }

    .course-slider .course-card {
      flex: 0 0 100%;
      scroll-snap-align: start;
    }

    .course-image {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background: #f4f1ef;
    }

    .course-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.18) 42%, rgba(255,255,255,.88) 76%, #fff 100%),
        linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 34%, rgba(255,255,255,.44) 66%, rgba(255,255,255,0) 100%);
    }

    .course-card > .p-4 {
      position: relative;
      z-index: 2;
      display: flex;
      min-height: 252px;
      flex-direction: column;
      padding: 18px 16px 16px;
    }

    .course-card h3 {
      max-width: 74%;
      margin-top: 34px;
      min-height: 46px;
    }

    .course-card .meta-row:first-child {
      margin-top: 2px;
    }

    .tag {
      position: absolute;
      z-index: 3;
      top: 13px;
      left: 13px;
      border-radius: 3px;
      padding: 6px 8px;
      color: #fff;
      font-size: 10px;
      font-weight: 600;
      line-height: 1;
      text-transform: uppercase;
    }

    .tag.bg-brand {
      background: var(--brand);
    }

    .course-card .mt-5 {
      margin-top: auto;
      padding-top: 16px;
    }

    .course-seats {
      font-size: 12px;
      line-height: 1.2;
    }

    .meta-row {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #4d5669;
      font-size: 13px;
      line-height: 1.28;
    }

    .meta-row i {
      width: 13px;
      color: #697184;
      font-size: 13px;
    }

    .category-card {
      display: flex;
      min-height: 144px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 14px;
      border: 1px solid #e6eaf1;
      border-radius: 8px;
      color: #232a42;
      background: #fff;
      box-shadow: 0 1px 2px rgba(26, 33, 52, .03);
      text-align: center;
      text-decoration: none;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.25;
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .category-card:hover {
      border-color: rgba(168, 5, 50, .34);
      box-shadow: 0 10px 22px rgba(26, 33, 52, .08);
      transform: translateY(-2px);
    }

    .icon-outline {
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      color: var(--brand);
      font-size: 38px;
      line-height: 1;
    }

    .step-card {
      position: relative;
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 18px;
      align-items: center;
    }

    .step-bubble {
      position: relative;
      display: grid;
      width: 70px;
      height: 70px;
      place-items: center;
      border-radius: 999px;
      background: #f8edf1;
      color: var(--brand);
      font-size: 28px;
    }

    .step-number {
      position: absolute;
      top: -6px;
      left: -7px;
      display: grid;
      width: 24px;
      height: 24px;
      place-items: center;
      border-radius: 999px;
      background: var(--brand);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
    }

    .audience-grid {
      display: grid;
      gap: 20px;
    }

    .audience-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      border: 1px solid #e0e6ef;
      border-radius: 8px;
      background: #fff;
      padding: 22px;
      box-shadow: 0 8px 20px rgba(26, 33, 52, .05);
    }

    .audience-icon {
      display: grid;
      width: 54px;
      height: 54px;
      place-items: center;
      border-radius: 999px;
      background: #f8edf1;
      color: var(--brand);
      font-size: 23px;
    }

    .audience-card h3 {
      margin-top: 16px;
      color: var(--ink);
      font-size: 18px;
      line-height: 1.3;
      font-weight: 700;
    }

    .audience-card p,
    .audience-card li {
      color: #272b34;
      font-size: 14px;
      line-height: 1.5;
    }

    .audience-card p {
      margin-top: 8px;
      font-weight: 400;
    }

    .audience-card ul {
      margin-top: 12px;
      padding-left: 18px;
    }

    .audience-card li + li {
      margin-top: 7px;
    }

    .benefit-icon {
      display: grid;
      width: 56px;
      height: 56px;
      flex: 0 0 auto;
      place-items: center;
      border-radius: 999px;
      background: #f4f5f8;
      color: #737b8f;
      font-size: 22px;
    }

    .lecturer-card {
      display: grid;
      grid-template-columns: 148px 1fr;
      min-height: 112px;
      overflow: hidden;
      border: 1px solid #e0e6ef;
      border-radius: 8px;
      background: #fff;
    }

    .lecturer-card .media-img {
      object-position: center top;
    }

    .lecturer-card > .p-4 {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 16px 18px;
    }

    .lecturer-card h3 {
      color: var(--ink);
      font-size: 18px;
      line-height: 1.25;
    }

    .contact-cta {
      display: grid;
      grid-template-columns: 1.25fr .9fr auto;
      gap: 40px;
      align-items: center;
      border-radius: 8px;
      background: #fbedf0;
      padding: 24px 44px 24px 28px;
    }

    .contact-cta-icon {
      color: var(--brand);
      font-size: 50px;
      line-height: 1;
    }

    .contact-cta-methods {
      display: grid;
      gap: 13px;
      color: var(--ink);
      font-size: 18px;
      font-weight: 700;
    }

    .contact-cta-methods a {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      color: inherit;
      text-decoration: none;
    }

    .contact-cta-methods i {
      width: 34px;
      color: var(--brand);
      font-size: 23px;
      text-align: center;
    }

    .faq-row {
      transition: color .18s ease;
    }

    .faq-row:hover {
      color: var(--brand);
    }

    .faq-row i {
      transition: transform .18s ease;
    }

    .faq-row[aria-expanded="true"] {
      color: var(--brand);
    }

    .faq-row[aria-expanded="true"] i {
      transform: rotate(180deg);
    }

    .faq-panel {
      padding: 0 0 14px;
      color: #272b34;
      font-size: 14px;
      line-height: 1.55;
    }

    .faq-panel[hidden] {
      display: none;
    }

    .faq-item + .faq-item { border-top: 1px solid #e3e8f0; }

    .footer-link {
      display: inline-flex;
      transition: color .18s ease;
    }

    .footer-link:hover {
      color: var(--brand);
    }

    .social-link {
      display: inline-grid;
      width: 34px;
      height: 34px;
      place-items: center;
      border-radius: 999px;
      color: #5e6678;
      font-size: 22px;
      transition: color .18s ease, background-color .18s ease, transform .18s ease;
    }

    .social-link:hover {
      background: #f9edf1;
      color: var(--brand);
      transform: translateY(-2px);
    }

    @media (max-width: 1180px) {
      .nav-link { display: none; }
    }

    @media (max-width: 900px) {
      .contact-cta { grid-template-columns: 1fr; }
      .hero { min-height: auto; }
      .hero-photo { opacity: .22; }
      .hero-photo::before { background: rgba(255,255,255,.78); }
      .hero::after { height: 52px; }
    }

    @media (max-width: 640px) {
      .page-container { width: calc(100% - 32px); }
      .section-title { font-size: 20px; }
      .step-card { grid-template-columns: 58px 1fr; }
      .step-bubble { width: 56px; height: 56px; font-size: 22px; }
      .audience-card { padding: 18px; }
      .lecturer-card { grid-template-columns: 112px 1fr; }
    }

    @media (min-width: 640px) {
      .course-slider .course-card { flex-basis: calc((100% - 24px) / 2); }
    }

    @media (min-width: 1024px) {
      .course-slider .course-card { flex-basis: calc((100% - 48px) / 3); }
    }

    .text-page {
      padding-block: 34px 0;
    }

    .text-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.32fr) minmax(320px, .82fr);
      gap: 34px;
      align-items: start;
    }

    .breadcrumbs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      margin-bottom: 26px;
      color: #5e6678;
      font-size: 14px;
      font-weight: 600;
    }

    .breadcrumbs a {
      color: #5e6678;
      text-decoration: none;
      transition: color .18s ease;
    }

    .breadcrumbs a:hover {
      color: var(--brand);
    }

    .breadcrumbs i {
      color: #b6bdca;
      font-size: 11px;
    }

    .page-intro {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .page-intro h1 {
      color: var(--ink);
      font-size: 38px;
      line-height: 1.12;
      font-weight: 700;
      letter-spacing: -.02em;
    }

    .page-intro p {
      margin-top: 14px;
      color: #272b34;
      font-size: 17px;
      line-height: 1.65;
      font-weight: 400;
    }

    .text-section + .text-section {
      margin-top: 36px;
    }

    .text-heading {
      position: relative;
      margin-bottom: 26px;
      color: var(--ink);
      font-size: 24px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: -.01em;
    }

    .text-heading::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -12px;
      width: 52px;
      height: 3px;
      border-radius: 999px;
      background: var(--brand);
    }

    .text-copy {
      max-width: 660px;
      color: #272b34;
      font-size: 15px;
      line-height: 1.8;
      font-weight: 500;
    }

    .value-list {
      display: grid;
      gap: 23px;
      margin-top: 36px;
    }

    .value-item {
      display: grid;
      grid-template-columns: 62px 1fr;
      gap: 18px;
      align-items: center;
    }

    .value-icon,
    .direction-icon {
      display: grid;
      place-items: center;
      border-radius: 999px;
      color: var(--brand);
      background: #fbecef;
    }

    .value-icon {
      width: 54px;
      height: 54px;
      font-size: 24px;
    }

    .value-item h3,
    .side-card h3 {
      color: var(--ink);
      font-size: 17px;
      line-height: 1.3;
      font-weight: 700;
    }

    .value-item p,
    .side-card p,
    .direction-list li,
    .approach-list li {
      color: #272b34;
      font-size: 14px;
      line-height: 1.55;
      font-weight: 400;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 24px;
    }

    .stat-card {
      min-height: 108px;
      border: 1px solid #e3e8f1;
      border-radius: 8px;
      background: #fff;
      padding: 18px 12px;
      text-align: center;
    }

    .stat-card i {
      color: var(--brand);
      font-size: 26px;
    }

    .stat-card strong {
      display: block;
      margin-top: 10px;
      color: var(--brand);
      font-size: 22px;
      line-height: 1;
      font-weight: 900;
    }

    .stat-card span {
      display: block;
      margin-top: 7px;
      color: #272b34;
      font-size: 12px;
      line-height: 1.25;
      font-weight: 700;
    }

    .side-column {
      display: grid;
      gap: 26px;
    }

    .side-card {
      overflow: hidden;
      border: 1px solid #e3e8f1;
      border-radius: 10px;
      background: #fff;
      padding: 26px;
    }

    .side-card-soft {
      border-color: #f7dce3;
      background: linear-gradient(135deg, #fff3f5 0%, #fff 100%);
    }

    .direction-list,
    .approach-list {
      display: grid;
      gap: 16px;
      margin-top: 22px;
    }

    .direction-list li,
    .approach-list li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      align-items: start;
    }

    .direction-icon {
      width: 18px;
      height: 18px;
      margin-top: 1px;
      background: #fff;
      border: 1px solid #f0a8b8;
      font-size: 9px;
    }

    .approach-list i {
      margin-top: 3px;
      color: var(--brand);
      font-size: 13px;
    }

    .side-image {
      height: 190px;
      margin: -26px -26px 22px;
      overflow: hidden;
      background: #f5f2ef;
    }

    .side-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .text-cta {
      display: grid;
      grid-template-columns: 74px 1fr auto;
      gap: 22px;
      align-items: center;
      margin-top: 36px;
      border-radius: 10px;
      background: #fbedf0;
      padding: 24px 34px;
    }

    .text-cta-icon {
      color: var(--brand);
      font-size: 48px;
      line-height: 1;
      text-align: center;
    }

    .text-cta h2 {
      color: var(--ink);
      font-size: 20px;
      line-height: 1.25;
      font-weight: 700;
    }

    .text-cta p {
      margin-top: 6px;
      max-width: 560px;
      color: #272b34;
      font-size: 14px;
      line-height: 1.55;
      font-weight: 600;
    }

    @media (max-width: 980px) {
      .text-layout { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .text-cta { grid-template-columns: 56px 1fr; }
      .text-cta .btn-primary { grid-column: 2; justify-self: start; }
    }

    @media (max-width: 640px) {
      .text-page { padding-top: 24px; }
      .page-intro h1 { font-size: 30px; }
      .value-item { grid-template-columns: 52px 1fr; gap: 14px; }
      .value-icon { width: 48px; height: 48px; font-size: 21px; }
      .side-card { padding: 20px; }
      .side-image { margin: -20px -20px 18px; }
      .text-cta { grid-template-columns: 1fr; padding: 22px; }
      .text-cta .btn-primary { grid-column: auto; }
      .text-cta-icon { text-align: left; }
    }

:root {
      --brand: #a80532;
      --ink: #192039;
      --muted: #5d6578;
      --line: #e5e9f1;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: #fff;
      font-family: Inter, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    .page-container {
      width: calc(100% - 48px);
      margin-inline: auto;
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 74px;
      color: #1e253d;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
    }

    .logo-subtitle {
      color: #a80532;
    }

    .nav-link.active,
    .nav-link:hover { color: var(--brand); }

    .nav-link.active::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      height: 3px;
      border-radius: 3px 3px 0 0;
      background: var(--brand);
    }

    .nav-item {
      position: relative;
      display: flex;
      align-items: center;
    }

    .nav-caret {
      transition: transform .18s ease;
    }

    .nav-item:hover .nav-caret,
    .nav-item:focus-within .nav-caret {
      transform: rotate(180deg);
    }

    .nav-dropdown {
      position: absolute;
      top: calc(100% - 6px);
      left: 0;
      z-index: 30;
      min-width: 246px;
      border: 1px solid #e3e8f1;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 14px 30px rgba(28, 38, 63, .12);
      padding: 7px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      pointer-events: none;
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }

    .nav-item:hover .nav-dropdown,
    .nav-item:focus-within .nav-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .nav-dropdown a {
      display: block;
      padding: 10px 14px;
      color: #242b43;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
    }

    .nav-dropdown a:hover {
      background: #f9edf1;
      color: var(--brand);
    }

    .hero {
      position: relative;
      min-height: 372px;
      overflow: hidden;
      background: linear-gradient(102deg, #fbfaf8 0%, #fbfaf8 46%, #f4eee9 46%, #fff 100%);
    }

    .hero::after {
      content: "";
      position: absolute;
      z-index: 3;
      right: 0;
      bottom: -1px;
      left: 0;
      height: 80px;
      background: #fff;
      clip-path: polygon(0 44%, 24% 72%, 50% 75%, 76% 71%, 100% 42%, 100% 100%, 0 100%);
    }

    .hero-photo {
      position: absolute;
      z-index: 1;
      inset: 0;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      pointer-events: none;
    }

    .hero-photo::before {
      content: "";
      position: absolute;
      z-index: 2;
      inset: 0;
      background: linear-gradient(90deg, #fbfaf8 0%, rgba(251,250,248,.98) 20%, rgba(251,250,248,.88) 37%, rgba(251,250,248,.46) 55%, rgba(251,250,248,.12) 72%, rgba(251,250,248,0) 88%);
    }

    .hero-photo img,
    .media-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-photo img {
      width: 85%;
      height: 100%;
      object-fit: cover;
      object-position: 74% 30%;
    }

    .btn-primary,
    .btn-outline {
      display: inline-flex;
      height: 44px;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      padding-inline: 24px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: .18s ease;
    }

    .btn-primary {
      border: 1px solid var(--brand);
      background: var(--brand);
      color: #fff;
    }

    .btn-primary:hover { background: #7f0325; border-color: #7f0325; color: #fff; }

    .btn-outline {
      border: 1px solid var(--brand);
      background: rgba(255,255,255,.84);
      color: var(--brand);
    }

    .btn-outline:hover { background: #f8edf1; }

    .field {
      width: 100%;
      height: 43px;
      border: 1px solid #dce2ec;
      border-radius: 5px;
      background: #fff;
      padding: 0 14px;
      color: #2b324a;
      font-size: 14px;
      font-weight: 600;
      outline: none;
    }

    .field:focus {
      border-color: var(--brand);
    }

    .section-title {
      color: var(--ink);
      font-size: 23px;
      line-height: 1.18;
      font-weight: 600;
      letter-spacing: -.02em;
    }

    .link-red {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--brand);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
    }

    .link-red:hover { color: var(--brandDark); }

    .course-card {
      position: relative;
      min-height: 252px;
      overflow: hidden;
      border: 1px solid #dfe5ef;
      border-radius: 7px;
      background: #fff;
    }

    .course-slider {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    .course-slider::-webkit-scrollbar { display: none; }

    .course-slider .course-card {
      flex: 0 0 100%;
      scroll-snap-align: start;
    }

    .course-image {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background: #f4f1ef;
    }

    .course-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.18) 42%, rgba(255,255,255,.88) 76%, #fff 100%),
        linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 34%, rgba(255,255,255,.44) 66%, rgba(255,255,255,0) 100%);
    }

    .course-card > .p-4 {
      position: relative;
      z-index: 2;
      display: flex;
      min-height: 252px;
      flex-direction: column;
      padding: 18px 16px 16px;
    }

    .course-card h3 {
      max-width: 74%;
      margin-top: 34px;
      min-height: 46px;
    }

    .course-card .meta-row:first-child {
      margin-top: 2px;
    }

    .tag {
      position: absolute;
      z-index: 3;
      top: 13px;
      left: 13px;
      border-radius: 3px;
      padding: 6px 8px;
      color: #fff;
      font-size: 10px;
      font-weight: 600;
      line-height: 1;
      text-transform: uppercase;
    }

    .tag.bg-brand {
      background: var(--brand);
    }

    .course-card .mt-5 {
      margin-top: auto;
      padding-top: 16px;
    }

    .course-seats {
      font-size: 12px;
      line-height: 1.2;
    }

    .meta-row {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #4d5669;
      font-size: 13px;
      line-height: 1.28;
    }

    .meta-row i {
      width: 13px;
      color: #697184;
      font-size: 13px;
    }

    .category-card {
      display: flex;
      min-height: 144px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 14px;
      border: 1px solid #e6eaf1;
      border-radius: 8px;
      color: #232a42;
      background: #fff;
      box-shadow: 0 1px 2px rgba(26, 33, 52, .03);
      text-align: center;
      text-decoration: none;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.25;
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .category-card:hover {
      border-color: rgba(168, 5, 50, .34);
      box-shadow: 0 10px 22px rgba(26, 33, 52, .08);
      transform: translateY(-2px);
    }

    .icon-outline {
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      color: var(--brand);
      font-size: 38px;
      line-height: 1;
    }

    .step-card {
      position: relative;
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 18px;
      align-items: center;
    }

    .step-bubble {
      position: relative;
      display: grid;
      width: 70px;
      height: 70px;
      place-items: center;
      border-radius: 999px;
      background: #f8edf1;
      color: var(--brand);
      font-size: 28px;
    }

    .step-number {
      position: absolute;
      top: -6px;
      left: -7px;
      display: grid;
      width: 24px;
      height: 24px;
      place-items: center;
      border-radius: 999px;
      background: var(--brand);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
    }

    .audience-grid {
      display: grid;
      gap: 20px;
    }

    .audience-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      border: 1px solid #e0e6ef;
      border-radius: 8px;
      background: #fff;
      padding: 22px;
      box-shadow: 0 8px 20px rgba(26, 33, 52, .05);
    }

    .audience-icon {
      display: grid;
      width: 54px;
      height: 54px;
      place-items: center;
      border-radius: 999px;
      background: #f8edf1;
      color: var(--brand);
      font-size: 23px;
    }

    .audience-card h3 {
      margin-top: 16px;
      color: var(--ink);
      font-size: 18px;
      line-height: 1.3;
      font-weight: 700;
    }

    .audience-card p,
    .audience-card li {
      color: #272b34;
      font-size: 14px;
      line-height: 1.5;
    }

    .audience-card p {
      margin-top: 8px;
      font-weight: 400;
    }

    .audience-card ul {
      margin-top: 12px;
      padding-left: 18px;
    }

    .audience-card li + li {
      margin-top: 7px;
    }

    .benefit-icon {
      display: grid;
      width: 56px;
      height: 56px;
      flex: 0 0 auto;
      place-items: center;
      border-radius: 999px;
      background: #f4f5f8;
      color: #737b8f;
      font-size: 22px;
    }

    .lecturer-card {
      display: grid;
      grid-template-columns: 148px 1fr;
      min-height: 112px;
      overflow: hidden;
      border: 1px solid #e0e6ef;
      border-radius: 8px;
      background: #fff;
    }

    .lecturer-card .media-img {
      object-position: center top;
    }

    .lecturer-card > .p-4 {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 16px 18px;
    }

    .lecturer-card h3 {
      color: var(--ink);
      font-size: 18px;
      line-height: 1.25;
    }

    .contact-cta {
      display: grid;
      grid-template-columns: 1.25fr .9fr auto;
      gap: 40px;
      align-items: center;
      border-radius: 8px;
      background: #fbedf0;
      padding: 24px 44px 24px 28px;
    }

    .contact-cta-icon {
      color: var(--brand);
      font-size: 50px;
      line-height: 1;
    }

    .contact-cta-methods {
      display: grid;
      gap: 13px;
      color: var(--ink);
      font-size: 18px;
      font-weight: 700;
    }

    .contact-cta-methods a {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      color: inherit;
      text-decoration: none;
    }

    .contact-cta-methods i {
      width: 34px;
      color: var(--brand);
      font-size: 23px;
      text-align: center;
    }

    .faq-row {
      transition: color .18s ease;
    }

    .faq-row:hover {
      color: var(--brand);
    }

    .faq-row i {
      transition: transform .18s ease;
    }

    .faq-row[aria-expanded="true"] {
      color: var(--brand);
    }

    .faq-row[aria-expanded="true"] i {
      transform: rotate(180deg);
    }

    .faq-panel {
      padding: 0 0 14px;
      color: #272b34;
      font-size: 14px;
      line-height: 1.55;
    }

    .faq-panel[hidden] {
      display: none;
    }

    .faq-item + .faq-item { border-top: 1px solid #e3e8f0; }

    .footer-link {
      display: inline-flex;
      transition: color .18s ease;
    }

    .footer-link:hover {
      color: var(--brand);
    }

    .social-link {
      display: inline-grid;
      width: 34px;
      height: 34px;
      place-items: center;
      border-radius: 999px;
      color: #5e6678;
      font-size: 22px;
      transition: color .18s ease, background-color .18s ease, transform .18s ease;
    }

    .social-link:hover {
      background: #f9edf1;
      color: var(--brand);
      transform: translateY(-2px);
    }

    @media (max-width: 1180px) {
      .nav-link { display: none; }
    }

    @media (max-width: 900px) {
      .contact-cta { grid-template-columns: 1fr; }
      .hero { min-height: auto; }
      .hero-photo { opacity: .22; }
      .hero-photo::before { background: rgba(255,255,255,.78); }
      .hero::after { height: 52px; }
    }

    @media (max-width: 640px) {
      .page-container { width: calc(100% - 32px); }
      .section-title { font-size: 20px; }
      .step-card { grid-template-columns: 58px 1fr; }
      .step-bubble { width: 56px; height: 56px; font-size: 22px; }
      .audience-card { padding: 18px; }
      .lecturer-card { grid-template-columns: 112px 1fr; }
    }

    @media (min-width: 640px) {
      .course-slider .course-card { flex-basis: calc((100% - 24px) / 2); }
    }

    @media (min-width: 1024px) {
      .course-slider .course-card { flex-basis: calc((100% - 48px) / 3); }
    }

    .text-page {
      padding-block: 34px 0;
    }

    .text-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.32fr) minmax(320px, .82fr);
      gap: 34px;
      align-items: start;
    }

    .breadcrumbs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      margin-bottom: 26px;
      color: #5e6678;
      font-size: 14px;
      font-weight: 600;
    }

    .breadcrumbs a {
      color: #5e6678;
      text-decoration: none;
      transition: color .18s ease;
    }

    .breadcrumbs a:hover {
      color: var(--brand);
    }

    .breadcrumbs i {
      color: #b6bdca;
      font-size: 11px;
    }

    .page-intro {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .page-intro h1 {
      color: var(--ink);
      font-size: 38px;
      line-height: 1.12;
      font-weight: 700;
      letter-spacing: -.02em;
    }

    .page-intro p {
      margin-top: 14px;
      color: #272b34;
      font-size: 17px;
      line-height: 1.65;
      font-weight: 400;
    }

    .text-section + .text-section {
      margin-top: 36px;
    }

    .text-heading {
      position: relative;
      margin-bottom: 26px;
      color: var(--ink);
      font-size: 24px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: -.01em;
    }

    .text-heading::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -12px;
      width: 52px;
      height: 3px;
      border-radius: 999px;
      background: var(--brand);
    }

    .text-copy {
      max-width: 660px;
      color: #272b34;
      font-size: 15px;
      line-height: 1.8;
      font-weight: 500;
    }

    .value-list {
      display: grid;
      gap: 23px;
      margin-top: 36px;
    }

    .value-item {
      display: grid;
      grid-template-columns: 62px 1fr;
      gap: 18px;
      align-items: center;
    }

    .value-icon,
    .direction-icon {
      display: grid;
      place-items: center;
      border-radius: 999px;
      color: var(--brand);
      background: #fbecef;
    }

    .value-icon {
      width: 54px;
      height: 54px;
      font-size: 24px;
    }

    .value-item h3,
    .side-card h3 {
      color: var(--ink);
      font-size: 17px;
      line-height: 1.3;
      font-weight: 700;
    }

    .value-item p,
    .side-card p,
    .direction-list li,
    .approach-list li {
      color: #272b34;
      font-size: 14px;
      line-height: 1.55;
      font-weight: 400;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 24px;
    }

    .stat-card {
      min-height: 108px;
      border: 1px solid #e3e8f1;
      border-radius: 8px;
      background: #fff;
      padding: 18px 12px;
      text-align: center;
    }

    .stat-card i {
      color: var(--brand);
      font-size: 26px;
    }

    .stat-card strong {
      display: block;
      margin-top: 10px;
      color: var(--brand);
      font-size: 22px;
      line-height: 1;
      font-weight: 900;
    }

    .stat-card span {
      display: block;
      margin-top: 7px;
      color: #272b34;
      font-size: 12px;
      line-height: 1.25;
      font-weight: 700;
    }

    .side-column {
      display: grid;
      gap: 26px;
    }

    .side-card {
      overflow: hidden;
      border: 1px solid #e3e8f1;
      border-radius: 10px;
      background: #fff;
      padding: 26px;
    }

    .side-card-soft {
      border-color: #f7dce3;
      background: linear-gradient(135deg, #fff3f5 0%, #fff 100%);
    }

    .direction-list,
    .approach-list {
      display: grid;
      gap: 16px;
      margin-top: 22px;
    }

    .direction-list li,
    .approach-list li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      align-items: start;
    }

    .direction-icon {
      width: 18px;
      height: 18px;
      margin-top: 1px;
      background: #fff;
      border: 1px solid #f0a8b8;
      font-size: 9px;
    }

    .approach-list i {
      margin-top: 3px;
      color: var(--brand);
      font-size: 13px;
    }

    .side-image {
      height: 190px;
      margin: -26px -26px 22px;
      overflow: hidden;
      background: #f5f2ef;
    }

    .side-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .text-cta {
      display: grid;
      grid-template-columns: 74px 1fr auto;
      gap: 22px;
      align-items: center;
      margin-top: 36px;
      border-radius: 10px;
      background: #fbedf0;
      padding: 24px 34px;
    }

    .text-cta-icon {
      color: var(--brand);
      font-size: 48px;
      line-height: 1;
      text-align: center;
    }

    .text-cta h2 {
      color: var(--ink);
      font-size: 20px;
      line-height: 1.25;
      font-weight: 700;
    }

    .text-cta p {
      margin-top: 6px;
      max-width: 560px;
      color: #272b34;
      font-size: 14px;
      line-height: 1.55;
      font-weight: 600;
    }

    @media (max-width: 980px) {
      .text-layout { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .text-cta { grid-template-columns: 56px 1fr; }
      .text-cta .btn-primary { grid-column: 2; justify-self: start; }
    }

    @media (max-width: 640px) {
      .text-page { padding-top: 24px; }
      .page-intro h1 { font-size: 30px; }
      .value-item { grid-template-columns: 52px 1fr; gap: 14px; }
      .value-icon { width: 48px; height: 48px; font-size: 21px; }
      .side-card { padding: 20px; }
      .side-image { margin: -20px -20px 18px; }
      .text-cta { grid-template-columns: 1fr; padding: 22px; }
      .text-cta .btn-primary { grid-column: auto; }
      .text-cta-icon { text-align: left; }
    }

    .login-page {
      background: #fff;
    }

    .login-hero {
      position: relative;
      overflow: hidden;
      min-height: 280px;
      background: #fbfaf8;
    }

    .login-hero-content {
      position: relative;
      z-index: 3;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 32px;
      align-items: end;
      padding-block: 58px 86px;
    }

    .login-breadcrumbs {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 42px;
      color: #5e6678;
      font-size: 14px;
      font-weight: 700;
    }

    .login-breadcrumbs a {
      color: var(--brand);
      text-decoration: none;
    }

    .login-breadcrumbs i {
      color: #b8bfcc;
      font-size: 11px;
    }

    .login-hero h1 {
      color: var(--ink);
      font-size: 44px;
      line-height: 1.12;
      font-weight: 700;
      letter-spacing: -.025em;
    }

    .login-hero p {
      margin-top: 22px;
      max-width: 520px;
      color: #272b34;
      font-size: 16px;
      line-height: 1.75;
      font-weight: 400;
    }

    .login-wrap {
      margin-top: -54px;
      position: relative;
      z-index: 4;
      padding-block: 0 34px;
    }

    .login-hero-action {
      margin-bottom: 8px;
      white-space: nowrap;
    }

    .login-grid {
      max-width: 690px;
      margin-inline: auto;
    }

    .login-card {
      border: 1px solid #e0e6ef;
      border-radius: 10px;
      background: #fff;
      padding: 54px 38px 48px;
    }

    .login-card-inner {
      max-width: none;
    }

    .login-card h2 {
      color: var(--ink);
      font-size: 28px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: -.015em;
    }

    .login-form {
      margin-top: 46px;
    }

    .login-field + .login-field {
      margin-top: 30px;
    }

    .login-field label {
      display: block;
      margin-bottom: 12px;
      color: #2b3048;
      font-size: 15px;
      font-weight: 700;
    }

    .login-input-wrap {
      position: relative;
    }

    .login-input {
      width: 100%;
      height: 58px;
      border: 1px solid #d6dde8;
      border-radius: 6px;
      background: #fff;
      padding: 0 50px 0 18px;
      color: #2b3048;
      font-size: 16px;
      font-weight: 600;
      outline: none;
      transition: border-color .14s ease;
    }

    .login-input:focus {
      border-color: var(--brand);
    }

    .login-input:focus-visible,
    .login-options input:focus-visible,
    .login-submit:focus-visible {
      outline: none;
    }

    .login-input-wrap i {
      position: absolute;
      right: 18px;
      top: 50%;
      color: #5e6678;
      font-size: 20px;
      transform: translateY(-50%);
    }

    .login-options {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 30px;
      color: #2b3048;
      font-size: 15px;
      font-weight: 600;
    }

    .login-options label {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .login-options input {
      width: 18px;
      height: 18px;
      accent-color: var(--brand);
    }

    .login-options a,
    .register-link a {
      color: var(--brand);
      font-weight: 700;
      text-decoration: none;
    }

    .login-submit {
      width: 100%;
      height: 58px;
      margin-top: 34px;
      border: 1px solid var(--brand);
      border-radius: 6px;
      background: var(--brand);
      color: #fff;
      font-size: 17px;
      font-weight: 700;
      cursor: pointer;
    }

    .login-submit:hover {
      background: #7f0325;
      border-color: #7f0325;
    }

    .login-separator {
      height: 1px;
      margin: 44px 0 30px;
      background: #e6ebf2;
    }

    .register-link {
      color: #2f374f;
      text-align: center;
      font-size: 16px;
      font-weight: 600;
    }

    @media (max-width: 640px) {
      .login-hero { min-height: 320px; }
      .login-hero-content { grid-template-columns: 1fr; padding-block: 34px 74px; }
      .login-hero-action { margin-bottom: 0; justify-self: start; }
      .login-hero h1 { font-size: 34px; }
      .login-wrap { padding-bottom: 20px; }
      .login-card { padding: 28px 20px; }
      .login-options { align-items: flex-start; flex-direction: column; }
    }

:root {
      --brand: #a80532;
      --ink: #192039;
      --muted: #5d6578;
      --line: #e5e9f1;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: #fff;
      font-family: Inter, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    .page-container {
      width: calc(100% - 48px);
      margin-inline: auto;
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 74px;
      color: #1e253d;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
    }

    .logo-subtitle {
      color: #a80532;
    }

    .nav-link.active,
    .nav-link:hover { color: var(--brand); }

    .nav-link.active::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      height: 3px;
      border-radius: 3px 3px 0 0;
      background: var(--brand);
    }

    .nav-item {
      position: relative;
      display: flex;
      align-items: center;
    }

    .nav-caret {
      transition: transform .18s ease;
    }

    .nav-item:hover .nav-caret,
    .nav-item:focus-within .nav-caret {
      transform: rotate(180deg);
    }

    .nav-dropdown {
      position: absolute;
      top: calc(100% - 6px);
      left: 0;
      z-index: 30;
      min-width: 246px;
      border: 1px solid #e3e8f1;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 14px 30px rgba(28, 38, 63, .12);
      padding: 7px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      pointer-events: none;
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }

    .nav-item:hover .nav-dropdown,
    .nav-item:focus-within .nav-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .nav-dropdown a {
      display: block;
      padding: 10px 14px;
      color: #242b43;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
    }

    .nav-dropdown a:hover {
      background: #f9edf1;
      color: var(--brand);
    }

    .hero {
      position: relative;
      min-height: 372px;
      overflow: hidden;
      background: linear-gradient(102deg, #fbfaf8 0%, #fbfaf8 46%, #f4eee9 46%, #fff 100%);
    }

    .hero::after {
      content: "";
      position: absolute;
      z-index: 3;
      right: 0;
      bottom: -1px;
      left: 0;
      height: 80px;
      background: #fff;
      clip-path: polygon(0 44%, 24% 72%, 50% 75%, 76% 71%, 100% 42%, 100% 100%, 0 100%);
    }

    .hero-photo {
      position: absolute;
      z-index: 1;
      inset: 0;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      pointer-events: none;
    }

    .hero-photo::before {
      content: "";
      position: absolute;
      z-index: 2;
      inset: 0;
      background: linear-gradient(90deg, #fbfaf8 0%, rgba(251,250,248,.98) 20%, rgba(251,250,248,.88) 37%, rgba(251,250,248,.46) 55%, rgba(251,250,248,.12) 72%, rgba(251,250,248,0) 88%);
    }

    .hero-photo img,
    .media-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-photo img {
      width: 85%;
      height: 100%;
      object-fit: cover;
      object-position: 74% 30%;
    }

    .btn-primary,
    .btn-outline {
      display: inline-flex;
      height: 44px;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      padding-inline: 24px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: .18s ease;
    }

    .btn-primary {
      border: 1px solid var(--brand);
      background: var(--brand);
      color: #fff;
    }

    .btn-primary:hover { background: #7f0325; border-color: #7f0325; color: #fff; }

    .btn-outline {
      border: 1px solid var(--brand);
      background: rgba(255,255,255,.84);
      color: var(--brand);
    }

    .btn-outline:hover { background: #f8edf1; }

    .field {
      width: 100%;
      height: 43px;
      border: 1px solid #dce2ec;
      border-radius: 5px;
      background: #fff;
      padding: 0 14px;
      color: #2b324a;
      font-size: 14px;
      font-weight: 600;
      outline: none;
    }

    .field:focus {
      border-color: var(--brand);
    }

    .section-title {
      color: var(--ink);
      font-size: 23px;
      line-height: 1.18;
      font-weight: 600;
      letter-spacing: -.02em;
    }

    .link-red {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--brand);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
    }

    .link-red:hover { color: var(--brandDark); }

    .course-card {
      position: relative;
      min-height: 252px;
      overflow: hidden;
      border: 1px solid #dfe5ef;
      border-radius: 7px;
      background: #fff;
    }

    .course-slider {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    .course-slider::-webkit-scrollbar { display: none; }

    .course-slider .course-card {
      flex: 0 0 100%;
      scroll-snap-align: start;
    }

    .course-image {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background: #f4f1ef;
    }

    .course-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.18) 42%, rgba(255,255,255,.88) 76%, #fff 100%),
        linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 34%, rgba(255,255,255,.44) 66%, rgba(255,255,255,0) 100%);
    }

    .course-card > .p-4 {
      position: relative;
      z-index: 2;
      display: flex;
      min-height: 252px;
      flex-direction: column;
      padding: 18px 16px 16px;
    }

    .course-card h3 {
      max-width: 74%;
      margin-top: 34px;
      min-height: 46px;
    }

    .course-card .meta-row:first-child {
      margin-top: 2px;
    }

    .tag {
      position: absolute;
      z-index: 3;
      top: 13px;
      left: 13px;
      border-radius: 3px;
      padding: 6px 8px;
      color: #fff;
      font-size: 10px;
      font-weight: 600;
      line-height: 1;
      text-transform: uppercase;
    }

    .tag.bg-brand {
      background: var(--brand);
    }

    .course-card .mt-5 {
      margin-top: auto;
      padding-top: 16px;
    }

    .course-seats {
      font-size: 12px;
      line-height: 1.2;
    }

    .meta-row {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #4d5669;
      font-size: 13px;
      line-height: 1.28;
    }

    .meta-row i {
      width: 13px;
      color: #697184;
      font-size: 13px;
    }

    .category-card {
      display: flex;
      min-height: 144px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 14px;
      border: 1px solid #e6eaf1;
      border-radius: 8px;
      color: #232a42;
      background: #fff;
      box-shadow: 0 1px 2px rgba(26, 33, 52, .03);
      text-align: center;
      text-decoration: none;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.25;
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .category-card:hover {
      border-color: rgba(168, 5, 50, .34);
      box-shadow: 0 10px 22px rgba(26, 33, 52, .08);
      transform: translateY(-2px);
    }

    .icon-outline {
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      color: var(--brand);
      font-size: 38px;
      line-height: 1;
    }

    .step-card {
      position: relative;
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 18px;
      align-items: center;
    }

    .step-bubble {
      position: relative;
      display: grid;
      width: 70px;
      height: 70px;
      place-items: center;
      border-radius: 999px;
      background: #f8edf1;
      color: var(--brand);
      font-size: 28px;
    }

    .step-number {
      position: absolute;
      top: -6px;
      left: -7px;
      display: grid;
      width: 24px;
      height: 24px;
      place-items: center;
      border-radius: 999px;
      background: var(--brand);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
    }

    .audience-grid {
      display: grid;
      gap: 20px;
    }

    .audience-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      border: 1px solid #e0e6ef;
      border-radius: 8px;
      background: #fff;
      padding: 22px;
      box-shadow: 0 8px 20px rgba(26, 33, 52, .05);
    }

    .audience-icon {
      display: grid;
      width: 54px;
      height: 54px;
      place-items: center;
      border-radius: 999px;
      background: #f8edf1;
      color: var(--brand);
      font-size: 23px;
    }

    .audience-card h3 {
      margin-top: 16px;
      color: var(--ink);
      font-size: 18px;
      line-height: 1.3;
      font-weight: 700;
    }

    .audience-card p,
    .audience-card li {
      color: #272b34;
      font-size: 14px;
      line-height: 1.5;
    }

    .audience-card p {
      margin-top: 8px;
      font-weight: 400;
    }

    .audience-card ul {
      margin-top: 12px;
      padding-left: 18px;
    }

    .audience-card li + li {
      margin-top: 7px;
    }

    .benefit-icon {
      display: grid;
      width: 56px;
      height: 56px;
      flex: 0 0 auto;
      place-items: center;
      border-radius: 999px;
      background: #f4f5f8;
      color: #737b8f;
      font-size: 22px;
    }

    .lecturer-card {
      display: grid;
      grid-template-columns: 148px 1fr;
      min-height: 112px;
      overflow: hidden;
      border: 1px solid #e0e6ef;
      border-radius: 8px;
      background: #fff;
    }

    .lecturer-card .media-img {
      object-position: center top;
    }

    .lecturer-card > .p-4 {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 16px 18px;
    }

    .lecturer-card h3 {
      color: var(--ink);
      font-size: 18px;
      line-height: 1.25;
    }

    .contact-cta {
      display: grid;
      grid-template-columns: 1.25fr .9fr auto;
      gap: 40px;
      align-items: center;
      border-radius: 8px;
      background: #fbedf0;
      padding: 24px 44px 24px 28px;
    }

    .contact-cta-icon {
      color: var(--brand);
      font-size: 50px;
      line-height: 1;
    }

    .contact-cta-methods {
      display: grid;
      gap: 13px;
      color: var(--ink);
      font-size: 18px;
      font-weight: 700;
    }

    .contact-cta-methods a {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      color: inherit;
      text-decoration: none;
    }

    .contact-cta-methods i {
      width: 34px;
      color: var(--brand);
      font-size: 23px;
      text-align: center;
    }

    .faq-row {
      transition: color .18s ease;
    }

    .faq-row:hover {
      color: var(--brand);
    }

    .faq-row i {
      transition: transform .18s ease;
    }

    .faq-row[aria-expanded="true"] {
      color: var(--brand);
    }

    .faq-row[aria-expanded="true"] i {
      transform: rotate(180deg);
    }

    .faq-panel {
      padding: 0 0 14px;
      color: #272b34;
      font-size: 14px;
      line-height: 1.55;
    }

    .faq-panel[hidden] {
      display: none;
    }

    .faq-item + .faq-item { border-top: 1px solid #e3e8f0; }

    .footer-link {
      display: inline-flex;
      transition: color .18s ease;
    }

    .footer-link:hover {
      color: var(--brand);
    }

    .social-link {
      display: inline-grid;
      width: 34px;
      height: 34px;
      place-items: center;
      border-radius: 999px;
      color: #5e6678;
      font-size: 22px;
      transition: color .18s ease, background-color .18s ease, transform .18s ease;
    }

    .social-link:hover {
      background: #f9edf1;
      color: var(--brand);
      transform: translateY(-2px);
    }

    @media (max-width: 1180px) {
      .nav-link { display: none; }
    }

    @media (max-width: 900px) {
      .contact-cta { grid-template-columns: 1fr; }
      .hero { min-height: auto; }
      .hero-photo { opacity: .22; }
      .hero-photo::before { background: rgba(255,255,255,.78); }
      .hero::after { height: 52px; }
    }

    @media (max-width: 640px) {
      .page-container { width: calc(100% - 32px); }
      .section-title { font-size: 20px; }
      .step-card { grid-template-columns: 58px 1fr; }
      .step-bubble { width: 56px; height: 56px; font-size: 22px; }
      .audience-card { padding: 18px; }
      .lecturer-card { grid-template-columns: 112px 1fr; }
    }

    @media (min-width: 640px) {
      .course-slider .course-card { flex-basis: calc((100% - 24px) / 2); }
    }

    @media (min-width: 1024px) {
      .course-slider .course-card { flex-basis: calc((100% - 48px) / 3); }
    }

    .text-page {
      padding-block: 34px 0;
    }

    .text-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.32fr) minmax(320px, .82fr);
      gap: 34px;
      align-items: start;
    }

    .breadcrumbs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      margin-bottom: 26px;
      color: #5e6678;
      font-size: 14px;
      font-weight: 600;
    }

    .breadcrumbs a {
      color: #5e6678;
      text-decoration: none;
      transition: color .18s ease;
    }

    .breadcrumbs a:hover {
      color: var(--brand);
    }

    .breadcrumbs i {
      color: #b6bdca;
      font-size: 11px;
    }

    .page-intro {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .page-intro h1 {
      color: var(--ink);
      font-size: 38px;
      line-height: 1.12;
      font-weight: 700;
      letter-spacing: -.02em;
    }

    .page-intro p {
      margin-top: 14px;
      color: #272b34;
      font-size: 17px;
      line-height: 1.65;
      font-weight: 400;
    }

    .text-section + .text-section {
      margin-top: 36px;
    }

    .text-heading {
      position: relative;
      margin-bottom: 26px;
      color: var(--ink);
      font-size: 24px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: -.01em;
    }

    .text-heading::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -12px;
      width: 52px;
      height: 3px;
      border-radius: 999px;
      background: var(--brand);
    }

    .text-copy {
      max-width: 660px;
      color: #272b34;
      font-size: 15px;
      line-height: 1.8;
      font-weight: 500;
    }

    .value-list {
      display: grid;
      gap: 23px;
      margin-top: 36px;
    }

    .value-item {
      display: grid;
      grid-template-columns: 62px 1fr;
      gap: 18px;
      align-items: center;
    }

    .value-icon,
    .direction-icon {
      display: grid;
      place-items: center;
      border-radius: 999px;
      color: var(--brand);
      background: #fbecef;
    }

    .value-icon {
      width: 54px;
      height: 54px;
      font-size: 24px;
    }

    .value-item h3,
    .side-card h3 {
      color: var(--ink);
      font-size: 17px;
      line-height: 1.3;
      font-weight: 700;
    }

    .value-item p,
    .side-card p,
    .direction-list li,
    .approach-list li {
      color: #272b34;
      font-size: 14px;
      line-height: 1.55;
      font-weight: 400;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 24px;
    }

    .stat-card {
      min-height: 108px;
      border: 1px solid #e3e8f1;
      border-radius: 8px;
      background: #fff;
      padding: 18px 12px;
      text-align: center;
    }

    .stat-card i {
      color: var(--brand);
      font-size: 26px;
    }

    .stat-card strong {
      display: block;
      margin-top: 10px;
      color: var(--brand);
      font-size: 22px;
      line-height: 1;
      font-weight: 900;
    }

    .stat-card span {
      display: block;
      margin-top: 7px;
      color: #272b34;
      font-size: 12px;
      line-height: 1.25;
      font-weight: 700;
    }

    .side-column {
      display: grid;
      gap: 26px;
    }

    .side-card {
      overflow: hidden;
      border: 1px solid #e3e8f1;
      border-radius: 10px;
      background: #fff;
      padding: 26px;
    }

    .side-card-soft {
      border-color: #f7dce3;
      background: linear-gradient(135deg, #fff3f5 0%, #fff 100%);
    }

    .direction-list,
    .approach-list {
      display: grid;
      gap: 16px;
      margin-top: 22px;
    }

    .direction-list li,
    .approach-list li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      align-items: start;
    }

    .direction-icon {
      width: 18px;
      height: 18px;
      margin-top: 1px;
      background: #fff;
      border: 1px solid #f0a8b8;
      font-size: 9px;
    }

    .approach-list i {
      margin-top: 3px;
      color: var(--brand);
      font-size: 13px;
    }

    .side-image {
      height: 190px;
      margin: -26px -26px 22px;
      overflow: hidden;
      background: #f5f2ef;
    }

    .side-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .text-cta {
      display: grid;
      grid-template-columns: 74px 1fr auto;
      gap: 22px;
      align-items: center;
      margin-top: 36px;
      border-radius: 10px;
      background: #fbedf0;
      padding: 24px 34px;
    }

    .text-cta-icon {
      color: var(--brand);
      font-size: 48px;
      line-height: 1;
      text-align: center;
    }

    .text-cta h2 {
      color: var(--ink);
      font-size: 20px;
      line-height: 1.25;
      font-weight: 700;
    }

    .text-cta p {
      margin-top: 6px;
      max-width: 560px;
      color: #272b34;
      font-size: 14px;
      line-height: 1.55;
      font-weight: 600;
    }

    @media (max-width: 980px) {
      .text-layout { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .text-cta { grid-template-columns: 56px 1fr; }
      .text-cta .btn-primary { grid-column: 2; justify-self: start; }
    }

    @media (max-width: 640px) {
      .text-page { padding-top: 24px; }
      .page-intro h1 { font-size: 30px; }
      .value-item { grid-template-columns: 52px 1fr; gap: 14px; }
      .value-icon { width: 48px; height: 48px; font-size: 21px; }
      .side-card { padding: 20px; }
      .side-image { margin: -20px -20px 18px; }
      .text-cta { grid-template-columns: 1fr; padding: 22px; }
      .text-cta .btn-primary { grid-column: auto; }
      .text-cta-icon { text-align: left; }
    }

    .register-page {
      background: #fff;
    }

    .register-hero {
      position: relative;
      overflow: hidden;
      min-height: 330px;
      background: #fbfaf8;
    }

    .register-hero-content {
      position: relative;
      z-index: 3;
      display: grid;
      grid-template-columns: 1fr;
      align-items: center;
      justify-items: center;
      padding-block: 58px 86px;
      text-align: center;
    }

    .register-breadcrumbs {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 42px;
      color: #5e6678;
      font-size: 14px;
      font-weight: 700;
    }

    .register-breadcrumbs a {
      color: var(--brand);
      text-decoration: none;
    }

    .register-breadcrumbs i {
      color: #b8bfcc;
      font-size: 11px;
    }

    .register-hero h1 {
      color: var(--ink);
      font-size: 44px;
      line-height: 1.12;
      font-weight: 700;
      letter-spacing: -.025em;
    }

    .register-hero p {
      margin-top: 22px;
      margin-inline: auto;
      max-width: 520px;
      color: #2f374f;
      font-size: 16px;
      line-height: 1.75;
      font-weight: 500;
    }

    .register-hero-action {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
    }

    .register-wrap {
      margin-top: -54px;
      position: relative;
      z-index: 4;
      padding-block: 0 34px;
    }

    .register-card {
      display: block;
      max-width: 960px;
      margin-inline: auto;
      border: 1px solid #e0e6ef;
      border-radius: 10px;
      background: #fff;
      padding: 54px 38px 48px;
    }

    .register-form {
      padding-right: 0;
      border-right: 0;
    }

    .register-form h2 {
      color: var(--ink);
      font-size: 28px;
      line-height: 1.2;
      font-weight: 700;
      text-align: center;
    }

    .form-block {
      margin-top: 34px;
    }

    .register-form > .form-block {
      margin-bottom: 50px;
    }

    .form-title {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
      color: var(--ink);
      font-size: 18px;
      font-weight: 700;
    }

    .form-title i {
      width: 28px;
      color: var(--brand);
      font-size: 26px;
      text-align: center;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px 26px;
    }

    .form-field.full {
      grid-column: 1 / -1;
    }

    .form-field label {
      display: block;
      margin-bottom: 10px;
      color: #2b3048;
      font-size: 14px;
      font-weight: 700;
    }

    .input,
    .select-input {
      width: 100%;
      height: 58px;
      border: 1px solid #d6dde8;
      border-radius: 6px;
      background: #fff;
      padding: 0 18px;
      color: #2b3048;
      font-size: 16px;
      font-weight: 600;
      outline: none;
      transition: border-color .14s ease;
    }

    .input:focus,
    .select-input:focus {
      border-color: var(--brand);
    }

    .input:focus-visible,
    .select-input:focus-visible,
    .radio-row input:focus-visible,
    .check-row input:focus-visible,
    .register-submit:focus-visible {
      outline: none;
    }

    .phone-row {
      display: grid;
      grid-template-columns: 118px 1fr;
      gap: 10px;
    }

    .password-wrap {
      position: relative;
    }

    .password-wrap .input {
      padding-right: 50px;
    }

    .password-wrap i {
      position: absolute;
      right: 18px;
      top: 50%;
      color: #5e6678;
      font-size: 20px;
      transform: translateY(-50%);
    }

    .choice-list {
      display: grid;
      gap: 18px;
    }

    .radio-row,
    .check-row {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 14px;
      align-items: start;
      color: #2b3048;
      font-size: 15px;
      font-weight: 700;
    }

    .radio-row input {
      width: 17px;
      height: 17px;
      margin-top: 8px;
      accent-color: var(--brand);
    }

    .check-row input {
      width: 17px;
      height: 17px;
      margin-top: 5px;
      accent-color: var(--brand);
    }

    .radio-row span,
    .check-row span {
      display: block;
      margin-top: 4px;
      color: #272b34;
      font-size: 14px;
      line-height: 1.45;
      font-weight: 500;
    }

    .check-row {
      margin-top: 18px;
      font-size: 14px;
      font-weight: 600;
    }

    .check-row a {
      color: var(--brand);
      font-weight: 700;
      text-decoration: none;
    }

    .register-submit {
      width: 100%;
      height: 58px;
      margin-top: 34px;
      border: 1px solid var(--brand);
      border-radius: 6px;
      background: var(--brand);
      color: #fff;
      font-size: 17px;
      font-weight: 700;
      cursor: pointer;
    }

    .register-submit:hover {
      background: #7f0325;
      border-color: #7f0325;
    }

    .login-note {
      margin-top: 22px;
      color: #272b34;
      text-align: center;
      font-size: 14px;
      font-weight: 600;
    }

    .login-note a {
      color: var(--brand);
      font-weight: 700;
      text-decoration: none;
    }

    .register-side {
      display: grid;
      gap: 28px;
      align-content: start;
    }

    .register-panel {
      border-radius: 10px;
      background: linear-gradient(135deg, #fff3f5 0%, #fff 100%);
      padding: 34px 28px;
    }

    .register-panel h2,
    .help-panel h2 {
      color: var(--ink);
      font-size: 22px;
      line-height: 1.25;
      font-weight: 700;
      letter-spacing: -.01em;
    }

    .benefit-list {
      display: grid;
      gap: 30px;
      margin-top: 34px;
    }

    .register-benefit {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 18px;
      align-items: start;
    }

    .register-benefit-icon {
      display: grid;
      width: 58px;
      height: 58px;
      place-items: center;
      border-radius: 999px;
      background: #fbedf0;
      color: var(--brand);
      font-size: 28px;
    }

    .register-benefit h3 {
      color: var(--ink);
      font-size: 17px;
      line-height: 1.3;
      font-weight: 700;
    }

    .register-benefit p,
    .help-panel p,
    .help-panel a {
      margin-top: 8px;
      color: #272b34;
      font-size: 14px;
      line-height: 1.55;
      font-weight: 600;
    }

    .help-panel {
      border-radius: 10px;
      background: #fff;
      padding: 34px 28px;
    }

    .help-panel a {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 20px;
      color: var(--ink);
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
    }

    .help-panel i {
      width: 22px;
      color: var(--brand);
      font-size: 22px;
    }

    @media (max-width: 980px) {
      .register-card { grid-template-columns: 1fr; }
      .register-form { padding-right: 0; border-right: 0; }
    }

    @media (max-width: 640px) {
      .register-hero h1 { font-size: 34px; }
      .register-hero-content { padding-block: 34px 74px; }
      .register-card { padding: 24px 18px; }
      .form-grid { grid-template-columns: 1fr; }
      .phone-row { grid-template-columns: 104px 1fr; }
      .register-benefit { grid-template-columns: 52px 1fr; }
      .register-benefit-icon { width: 48px; height: 48px; font-size: 23px; }
    }

:root {
      --brand: #a80532;
      --ink: #192039;
      --muted: #5d6578;
      --line: #e5e9f1;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: #26304a;
      background: #fff;
      font-family: Inter, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    .page-container {
      width: calc(100% - 48px);
      margin-inline: auto;
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 74px;
      color: #1e253d;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
    }

    .logo-subtitle {
      color: #a80532;
    }

    .nav-link.active,
    .nav-link:hover { color: var(--brand); }

    .nav-link.active::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      height: 3px;
      border-radius: 3px 3px 0 0;
      background: var(--brand);
    }

    .nav-item {
      position: relative;
      display: flex;
      align-items: center;
    }

    .nav-caret {
      transition: transform .18s ease;
    }

    .nav-item:hover .nav-caret,
    .nav-item:focus-within .nav-caret {
      transform: rotate(180deg);
    }

    .nav-dropdown {
      position: absolute;
      top: calc(100% - 6px);
      left: 0;
      z-index: 30;
      min-width: 246px;
      border: 1px solid #e3e8f1;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 14px 30px rgba(28, 38, 63, .12);
      padding: 7px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      pointer-events: none;
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }

    .nav-item:hover .nav-dropdown,
    .nav-item:focus-within .nav-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .nav-dropdown a {
      display: block;
      padding: 10px 14px;
      color: #242b43;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
    }

    .nav-dropdown a:hover {
      background: #f9edf1;
      color: var(--brand);
    }

    .hero {
      position: relative;
      min-height: 372px;
      overflow: hidden;
      background: linear-gradient(102deg, #fbfaf8 0%, #fbfaf8 46%, #f4eee9 46%, #fff 100%);
    }

    .hero::after {
      content: "";
      position: absolute;
      z-index: 3;
      right: 0;
      bottom: -1px;
      left: 0;
      height: 80px;
      background: #fff;
      clip-path: polygon(0 44%, 24% 72%, 50% 75%, 76% 71%, 100% 42%, 100% 100%, 0 100%);
    }

    .hero-photo {
      position: absolute;
      z-index: 1;
      inset: 0;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      pointer-events: none;
    }

    .hero-photo::before {
      content: "";
      position: absolute;
      z-index: 2;
      inset: 0;
      background: linear-gradient(90deg, #fbfaf8 0%, rgba(251,250,248,.98) 20%, rgba(251,250,248,.88) 37%, rgba(251,250,248,.46) 55%, rgba(251,250,248,.12) 72%, rgba(251,250,248,0) 88%);
    }

    .hero-photo img,
    .media-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-photo img {
      width: 85%;
      height: 100%;
      object-fit: cover;
      object-position: 74% 30%;
    }

    .btn-primary,
    .btn-outline {
      display: inline-flex;
      height: 44px;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      padding-inline: 24px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: .18s ease;
    }

    .btn-primary {
      border: 1px solid var(--brand);
      background: var(--brand);
      color: #fff;
    }

    .btn-primary:hover { background: #7f0325; border-color: #7f0325; color: #fff; }

    .btn-outline {
      border: 1px solid var(--brand);
      background: rgba(255,255,255,.84);
      color: var(--brand);
    }

    .btn-outline:hover { background: #f8edf1; }

    .field {
      width: 100%;
      height: 43px;
      border: 1px solid #dce2ec;
      border-radius: 5px;
      background: #fff;
      padding: 0 14px;
      color: #2b324a;
      font-size: 14px;
      font-weight: 600;
      outline: none;
    }

    .field:focus {
      border-color: var(--brand);
    }

    .section-title {
      color: var(--ink);
      font-size: 23px;
      line-height: 1.18;
      font-weight: 600;
      letter-spacing: -.02em;
    }

    .link-red {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--brand);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
    }

    .link-red:hover { color: var(--brandDark); }

    .course-card {
      position: relative;
      min-height: 252px;
      overflow: hidden;
      border: 1px solid #dfe5ef;
      border-radius: 7px;
      background: #fff;
    }

    .course-slider {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    .course-slider::-webkit-scrollbar { display: none; }

    .course-slider .course-card {
      flex: 0 0 100%;
      scroll-snap-align: start;
    }

    .course-image {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background: #f4f1ef;
    }

    .course-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.18) 42%, rgba(255,255,255,.88) 76%, #fff 100%),
        linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 34%, rgba(255,255,255,.44) 66%, rgba(255,255,255,0) 100%);
    }

    .course-card > .p-4 {
      position: relative;
      z-index: 2;
      display: flex;
      min-height: 252px;
      flex-direction: column;
      padding: 18px 16px 16px;
    }

    .course-card h3 {
      max-width: 74%;
      margin-top: 34px;
      min-height: 46px;
    }

    .course-card .meta-row:first-child {
      margin-top: 2px;
    }

    .tag {
      position: absolute;
      z-index: 3;
      top: 13px;
      left: 13px;
      border-radius: 3px;
      padding: 6px 8px;
      color: #fff;
      font-size: 10px;
      font-weight: 600;
      line-height: 1;
      text-transform: uppercase;
    }

    .tag.bg-brand {
      background: var(--brand);
    }

    .course-card .mt-5 {
      margin-top: auto;
      padding-top: 16px;
    }

    .course-seats {
      font-size: 12px;
      line-height: 1.2;
    }

    .meta-row {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #4d5669;
      font-size: 13px;
      line-height: 1.28;
    }

    .meta-row i {
      width: 13px;
      color: #697184;
      font-size: 13px;
    }

    .category-card {
      display: flex;
      min-height: 144px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 14px;
      border: 1px solid #e6eaf1;
      border-radius: 8px;
      color: #232a42;
      background: #fff;
      box-shadow: 0 1px 2px rgba(26, 33, 52, .03);
      text-align: center;
      text-decoration: none;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.25;
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .category-card:hover {
      border-color: rgba(168, 5, 50, .34);
      box-shadow: 0 10px 22px rgba(26, 33, 52, .08);
      transform: translateY(-2px);
    }

    .icon-outline {
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      color: var(--brand);
      font-size: 38px;
      line-height: 1;
    }

    .step-card {
      position: relative;
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 18px;
      align-items: center;
    }

    .step-bubble {
      position: relative;
      display: grid;
      width: 70px;
      height: 70px;
      place-items: center;
      border-radius: 999px;
      background: #f8edf1;
      color: var(--brand);
      font-size: 28px;
    }

    .step-number {
      position: absolute;
      top: -6px;
      left: -7px;
      display: grid;
      width: 24px;
      height: 24px;
      place-items: center;
      border-radius: 999px;
      background: var(--brand);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
    }

    .audience-grid {
      display: grid;
      gap: 20px;
    }

    .audience-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      border: 1px solid #e0e6ef;
      border-radius: 8px;
      background: #fff;
      padding: 22px;
      box-shadow: 0 8px 20px rgba(26, 33, 52, .05);
    }

    .audience-icon {
      display: grid;
      width: 54px;
      height: 54px;
      place-items: center;
      border-radius: 999px;
      background: #f8edf1;
      color: var(--brand);
      font-size: 23px;
    }

    .audience-card h3 {
      margin-top: 16px;
      color: var(--ink);
      font-size: 18px;
      line-height: 1.3;
      font-weight: 700;
    }

    .audience-card p,
    .audience-card li {
      color: #272b34;
      font-size: 14px;
      line-height: 1.5;
    }

    .audience-card p {
      margin-top: 8px;
      font-weight: 400;
    }

    .audience-card ul {
      margin-top: 12px;
      padding-left: 18px;
    }

    .audience-card li + li {
      margin-top: 7px;
    }

    .benefit-icon {
      display: grid;
      width: 56px;
      height: 56px;
      flex: 0 0 auto;
      place-items: center;
      border-radius: 999px;
      background: #f4f5f8;
      color: #737b8f;
      font-size: 22px;
    }

    .lecturer-card {
      display: grid;
      grid-template-columns: 148px 1fr;
      min-height: 112px;
      overflow: hidden;
      border: 1px solid #e0e6ef;
      border-radius: 8px;
      background: #fff;
    }

    .lecturer-card .media-img {
      object-position: center top;
    }

    .lecturer-card > .p-4 {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 16px 18px;
    }

    .lecturer-card h3 {
      color: var(--ink);
      font-size: 18px;
      line-height: 1.25;
    }

    .contact-cta {
      display: grid;
      grid-template-columns: 1.25fr .9fr auto;
      gap: 40px;
      align-items: center;
      border-radius: 8px;
      background: #fbedf0;
      padding: 24px 44px 24px 28px;
    }

    .contact-cta-icon {
      color: var(--brand);
      font-size: 50px;
      line-height: 1;
    }

    .contact-cta-methods {
      display: grid;
      gap: 13px;
      color: var(--ink);
      font-size: 18px;
      font-weight: 700;
    }

    .contact-cta-methods a {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      color: inherit;
      text-decoration: none;
    }

    .contact-cta-methods i {
      width: 34px;
      color: var(--brand);
      font-size: 23px;
      text-align: center;
    }

    .faq-row {
      transition: color .18s ease;
    }

    .faq-row:hover {
      color: var(--brand);
    }

    .faq-row i {
      transition: transform .18s ease;
    }

    .faq-row[aria-expanded="true"] {
      color: var(--brand);
    }

    .faq-row[aria-expanded="true"] i {
      transform: rotate(180deg);
    }

    .faq-panel {
      padding: 0 0 14px;
      color: #272b34;
      font-size: 14px;
      line-height: 1.55;
    }

    .faq-panel[hidden] {
      display: none;
    }

    .faq-item + .faq-item { border-top: 1px solid #e3e8f0; }

    .footer-link {
      display: inline-flex;
      transition: color .18s ease;
    }

    .footer-link:hover {
      color: var(--brand);
    }

    .social-link {
      display: inline-grid;
      width: 34px;
      height: 34px;
      place-items: center;
      border-radius: 999px;
      color: #5e6678;
      font-size: 22px;
      transition: color .18s ease, background-color .18s ease, transform .18s ease;
    }

    .social-link:hover {
      background: #f9edf1;
      color: var(--brand);
      transform: translateY(-2px);
    }

    @media (max-width: 1180px) {
      .nav-link { display: none; }
    }

    @media (max-width: 900px) {
      .contact-cta { grid-template-columns: 1fr; }
      .hero { min-height: auto; }
      .hero-photo { opacity: .22; }
      .hero-photo::before { background: rgba(255,255,255,.78); }
      .hero::after { height: 52px; }
    }

    @media (max-width: 640px) {
      .page-container { width: calc(100% - 32px); }
      .section-title { font-size: 20px; }
      .step-card { grid-template-columns: 58px 1fr; }
      .step-bubble { width: 56px; height: 56px; font-size: 22px; }
      .audience-card { padding: 18px; }
      .lecturer-card { grid-template-columns: 112px 1fr; }
    }

    @media (min-width: 640px) {
      .course-slider .course-card { flex-basis: calc((100% - 24px) / 2); }
    }

    @media (min-width: 1024px) {
      .course-slider .course-card { flex-basis: calc((100% - 48px) / 3); }
    }

    .account-page {
      background: #fbfcfe;
    }

    .account-topbar {
      position: relative;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .account-notification {
      position: relative;
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border: 0;
      border-radius: 999px;
      background: #f8f6f8;
      color: #26304a;
      cursor: pointer;
      font-family: inherit;
      font-size: 20px;
      text-decoration: none;
    }

    .account-notification span {
      position: absolute;
      top: -3px;
      right: -2px;
      display: grid;
      min-width: 20px;
      height: 20px;
      place-items: center;
      border-radius: 999px;
      background: var(--brand);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
    }

    .notification-menu-wrap {
      position: relative;
      display: grid;
      place-items: center;
    }

    .account-profile {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      align-items: center;
      border: 0;
      background: transparent;
      color: var(--ink);
      cursor: pointer;
      font-family: inherit;
      padding: 0;
      text-decoration: none;
    }

    .account-profile strong {
      display: block;
      font-size: 15px;
      line-height: 1.1;
      font-weight: 700;
    }

    .account-profile span {
      display: block;
      margin-top: 3px;
      color: #26304a;
      font-size: 13px;
      font-weight: 600;
    }

    .account-profile:hover,
    .account-profile:hover span {
      color: var(--brand);
    }

    .account-dropdown {
      position: absolute;
      top: calc(100% + 14px);
      right: 0;
      z-index: 60;
      width: 286px;
      border: 1px solid #e3e8f1;
      border-radius: 10px;
      background: #fff;
      padding: 10px;
      box-shadow: 0 18px 38px rgba(28, 38, 63, .14);
    }

    .account-dropdown[hidden] {
      display: none;
    }

    .account-dropdown .account-menu {
      gap: 4px;
    }

    .account-dropdown .account-menu a {
      min-height: 44px;
      font-size: 14px;
    }

    .account-dropdown .logout-link {
      margin-top: 0;
      border-top: 0;
      padding-top: 0;
    }

    .notification-dropdown {
      position: absolute;
      top: calc(100% + 14px);
      right: 0;
      z-index: 70;
      width: min(360px, calc(100vw - 32px));
      border: 1px solid #e3e8f1;
      border-radius: 10px;
      background: #fff;
      padding: 12px;
      box-shadow: 0 18px 38px rgba(28, 38, 63, .14);
    }

    .notification-dropdown[hidden] {
      display: none;
    }

    .notification-dropdown-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 4px 4px 10px;
      border-bottom: 1px solid #edf0f5;
    }

    .notification-dropdown-head strong {
      color: var(--ink);
      font-size: 15px;
      font-weight: 600;
    }

    .notification-dropdown-head a,
    .notification-all-link {
      color: var(--brand);
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
    }

    .notification-preview-list {
      display: grid;
      gap: 6px;
      padding-block: 8px;
    }

    .notification-preview {
      display: grid;
      gap: 5px;
      border-radius: 8px;
      padding: 10px;
      color: #26304a;
      text-decoration: none;
    }

    .notification-preview:hover {
      background: #f8f6f8;
    }

    .notification-preview strong {
      color: var(--ink);
      font-size: 14px;
      font-weight: 600;
      line-height: 1.25;
    }

    .notification-preview span,
    .notification-empty {
      color: #5e6678;
      font-size: 13px;
      line-height: 1.45;
      font-weight: 400;
    }

    .notification-preview time {
      color: #7b8496;
      font-size: 12px;
      font-weight: 500;
    }

    .notification-empty {
      margin: 0;
      padding: 14px 10px;
    }

    .notification-all-link {
      display: flex;
      justify-content: center;
      border-top: 1px solid #edf0f5;
      padding-top: 12px;
    }

    .account-shell {
      display: grid;
      grid-template-columns: 290px minmax(0, 1fr);
      gap: 28px;
      padding-block: 34px 0;
    }

    .account-sidebar {
      position: sticky;
      top: 98px;
      align-self: start;
      border-right: 1px solid #e7ebf2;
      padding-right: 18px;
    }

    .account-sidebar h1 {
      margin-bottom: 20px;
      color: var(--ink);
      font-size: 24px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: -.01em;
    }

    .account-menu {
      display: grid;
      gap: 6px;
    }

    .account-menu a,
    .account-menu-toggle {
      display: flex;
      min-height: 48px;
      align-items: center;
      gap: 14px;
      border: 0;
      border-radius: 8px;
      padding: 0 14px;
      background: transparent;
      color: #26304a;
      cursor: pointer;
      font-family: inherit;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      text-align: left;
      width: 100%;
    }

    .account-menu a:hover,
    .account-menu a.active,
    .account-menu-toggle:hover,
    .account-menu-toggle.active {
      background: #fbedf0;
      color: var(--brand);
    }

    .account-menu i {
      width: 20px;
      font-size: 17px;
      text-align: center;
    }

    .account-submenu {
      display: grid;
      gap: 4px;
      margin: -2px 0 4px 34px;
      padding-left: 16px;
      border-left: 1px solid #e4e9f1;
    }

    .account-submenu[hidden] {
      display: none;
    }

    .account-submenu-chevron {
      margin-left: auto;
      font-size: 12px !important;
      transition: transform .18s ease;
    }

    .account-menu-toggle[aria-expanded="true"] .account-submenu-chevron {
      transform: rotate(180deg);
    }

    .account-menu .account-submenu a {
      min-height: 34px;
      border-radius: 6px;
      padding: 0 12px;
      color: #5e6678;
      font-size: 14px;
      font-weight: 500;
    }

    .account-menu .account-submenu a:hover,
    .account-menu .account-submenu a.active {
      background: #f8f6f8;
      color: var(--brand);
    }

    .account-badge {
      margin-left: auto;
      display: grid;
      min-width: 22px;
      height: 22px;
      place-items: center;
      border-radius: 999px;
      background: var(--brand);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
    }

    .logout-link {
      margin-top: 26px;
      border-top: 1px solid #e7ebf2;
      padding-top: 18px;
      color: var(--brand) !important;
    }

    .dashboard-hero {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 390px;
      align-items: center;
      overflow: hidden;
      min-height: 220px;
      border-radius: 12px;
      background: linear-gradient(102deg, #fff3f5 0%, #fff 52%, #f4eee9 100%);
    }

    .dashboard-hero-content {
      padding: 34px 40px;
    }

    .dashboard-hero h2 {
      color: var(--ink);
      font-size: 32px;
      line-height: 1.15;
      font-weight: 700;
      letter-spacing: -.02em;
    }

    .dashboard-hero p {
      margin-top: 12px;
      max-width: 390px;
      color: #272b34;
      font-size: 16px;
      line-height: 1.65;
      font-weight: 500;
    }

    .dashboard-hero img {
      width: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .dashboard-hero-image {
      position: relative;
      overflow: hidden;
    }

    .dashboard-hero-image::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.86) 18%, rgba(255,255,255,.38) 38%, rgba(255,255,255,0) 62%);
      pointer-events: none;
    }

    .stat-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 26px;
    }

    .account-stat,
    .dashboard-card {
      border: 1px solid #e0e6ef;
      border-radius: 10px;
      background: #fff;
    }

    .account-stat {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 16px;
      min-height: 116px;
      align-items: start;
      padding: 22px 28px;
    }

    .stat-icon {
      display: grid;
      width: 48px;
      height: 48px;
      align-self: start;
      justify-self: center;
      place-items: center;
      border-radius: 999px;
      background: #f4f5f8;
      color: #5e6678;
      font-size: 18px;
      line-height: 1;
    }

    .stat-icon i {
      line-height: 1;
    }

    .account-stat strong {
      display: block;
      color: var(--ink);
      font-size: 30px;
      line-height: 1;
      font-weight: 700;
    }

    .account-stat > div > span {
      display: block;
      margin-top: 5px;
      color: #2b3048;
      font-size: 14px;
      font-weight: 700;
    }

    .account-stat a,
    .card-link {
      margin-top: 12px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--brand);
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(320px, .78fr);
      gap: 22px;
      margin-top: 26px;
      align-items: start;
    }

    .dashboard-stack {
      display: grid;
      gap: 22px;
    }

    .dashboard-card {
      padding: 24px;
    }

    .card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 18px;
    }

    .card-head h2 {
      color: var(--ink);
      font-size: 20px;
      line-height: 1.2;
      font-weight: 700;
    }

    .course-item {
      display: grid;
      grid-template-columns: 72px 1fr auto;
      gap: 16px;
      align-items: center;
      border: 1px solid #e6ebf2;
      border-radius: 9px;
      padding: 18px;
    }

    .course-item + .course-item,
    .notice-item + .notice-item,
    .document-item + .document-item,
    .finished-item + .finished-item {
      margin-top: 14px;
    }

    .date-box {
      display: grid;
      min-height: 64px;
      place-items: center;
      border-radius: 8px;
      background: #f8f6f8;
      color: var(--ink);
      text-align: center;
      font-weight: 700;
    }

    .date-box strong {
      display: block;
      font-size: 21px;
      line-height: 1;
    }

    .date-box span {
      display: block;
      margin-top: 4px;
      font-size: 13px;
    }

    .course-tag {
      display: inline-flex;
      border-radius: 4px;
      padding: 5px 8px;
      color: #fff;
      background: #7b3fc4;
      font-size: 10px;
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase;
    }

    .course-tag.blue { background: #0d6ca8; }
    .course-tag.red { background: var(--brand); }

    .course-item h3,
    .finished-item h3,
    .document-item h3,
    .material-card h3,
    .notice-item h3 {
      color: var(--ink);
      font-size: 16px;
      line-height: 1.3;
      font-weight: 700;
    }

    .course-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 9px;
      color: #5e6678;
      font-size: 13px;
      font-weight: 600;
    }

    .course-meta i { color: #788196; }

    .status-pill {
      display: inline-flex;
      border-radius: 999px;
      padding: 6px 10px;
      background: #e9f8ee;
      color: #238044;
      font-size: 12px;
      font-weight: 700;
      white-space: nowrap;
    }

    .small-btn {
      display: inline-flex;
      min-height: 38px;
      align-items: center;
      justify-content: center;
      border: 1px solid #dce2ec;
      border-radius: 6px;
      padding: 0 14px;
      color: #2b3048;
      background: #fff;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      transition: border-color .18s ease, color .18s ease;
    }

    .small-btn:hover {
      border-color: var(--brand);
      color: var(--brand);
    }

    .small-btn.danger {
      color: #a80532;
    }

    .small-btn.danger:hover {
      border-color: #a80532;
      color: #a80532;
    }

    .finished-item,
    .document-item,
    .notice-item {
      display: grid;
      gap: 14px;
      align-items: center;
    }

    .finished-item {
      grid-template-columns: 58px 1fr auto auto;
      border: 1px solid #e6ebf2;
      border-radius: 9px;
      padding: 14px 16px;
    }

    .notice-item {
      grid-template-columns: 10px 1fr;
      padding-bottom: 16px;
      border-bottom: 1px solid #e6ebf2;
    }

    .notice-dot {
      width: 8px;
      height: 8px;
      align-self: start;
      margin-top: 7px;
      border-radius: 999px;
      background: var(--brand);
    }

    .notice-item p,
    .document-item p,
    .material-card p {
      margin-top: 5px;
      color: #5e6678;
      font-size: 13px;
      line-height: 1.45;
      font-weight: 600;
    }

    .document-item {
      grid-template-columns: 36px 1fr 34px;
      padding-bottom: 16px;
      border-bottom: 1px solid #e6ebf2;
    }

    .doc-icon {
      display: grid;
      width: 32px;
      height: 38px;
      place-items: center;
      color: var(--brand);
      font-size: 24px;
    }

    .download-btn {
      display: grid;
      width: 34px;
      height: 34px;
      place-items: center;
      border-radius: 999px;
      color: #2b3048;
      background: #f7f8fb;
      text-decoration: none;
      transition: color .18s ease, background-color .18s ease;
    }

    .download-btn:hover {
      color: var(--brand);
      background: #fbedf0;
    }

    .materials-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .material-card {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      gap: 12px;
      align-items: center;
      border: 1px solid #e6ebf2;
      border-radius: 8px;
      padding: 14px;
    }

    .account-cta {
      display: grid;
      grid-template-columns: 64px minmax(0, 1fr) auto auto;
      gap: 24px;
      align-items: center;
      margin-top: 28px;
      border-radius: 10px;
      background: #fbedf0;
      padding: 24px 34px;
    }

    .account-cta-icon {
      color: var(--brand);
      font-size: 48px;
      line-height: 1;
    }

    .account-cta h2 {
      color: var(--ink);
      font-size: 20px;
      font-weight: 700;
    }

    .account-cta p,
    .account-cta a:not(.btn-primary) {
      color: #272b34;
      font-size: 14px;
      line-height: 1.45;
      font-weight: 700;
      text-decoration: none;
    }

    @media (max-width: 1120px) {
      .account-shell { grid-template-columns: 1fr; }
      .account-sidebar { position: static; border-right: 0; padding-right: 0; }
      .account-menu { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .dashboard-grid { grid-template-columns: 1fr; }
      .materials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .account-cta { grid-template-columns: 52px 1fr; }
      .account-cta .btn-primary { grid-column: 2; justify-self: start; }
    }

    @media (max-width: 760px) {
      .dashboard-hero { grid-template-columns: 1fr; }
      .dashboard-hero-image { display: none; }
      .stat-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .course-item { grid-template-columns: 64px 1fr; }
      .course-item > .grid { grid-column: 1 / -1; justify-self: start; }
      .finished-item { grid-template-columns: 54px 1fr auto; }
      .finished-item .fa-chevron-right { display: none; }
      .materials-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 560px) {
      .account-menu { grid-template-columns: 1fr; }
      .stat-row { grid-template-columns: 1fr; }
      .dashboard-card { padding: 18px; }
      .dashboard-hero-content { padding: 26px; }
      .account-cta { grid-template-columns: 1fr; padding: 22px; }
      .account-cta .btn-primary { grid-column: auto; }
    }

.form-error {
  margin-top: 8px;
  color: #a80532;
  font-size: 13px;
  font-weight: 600;
}

.form-alert {
  border: 1px solid #f1c6d1;
  border-radius: 8px;
  background: #fff5f7;
  color: #84213b;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 18px;
  padding: 12px 14px;
}

.account-menu form {
  margin: 0;
}

.account-menu button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: #26304a;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  gap: 14px;
  min-height: 48px;
  padding: 0 14px;
  text-align: left;
  text-decoration: none;
  width: 100%;
}

.account-menu button:hover {
  background: #f7f8fb;
  color: #a80532;
}

.account-menu .account-menu-toggle {
  font-weight: 600;
}

.account-menu .account-menu-toggle:hover,
.account-menu .account-menu-toggle.active {
  background: #fbedf0;
  color: var(--brand);
}

.account-ability {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid #e8ecf3;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.account-ability h3 {
  color: #192039;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.account-ability p {
  margin-top: 6px;
  color: #5d6578;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.account-page-description {
  margin-top: 10px;
  color: #5d6578;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.user-page-head {
  align-items: flex-start;
}

.user-page-head .small-btn {
  gap: 8px;
}

.user-filter-form {
  display: flex;
  align-items: end;
  gap: 12px;
  margin-left: auto;
  margin-top: 22px;
  max-width: 760px;
  width: 100%;
}

.user-filter-form label,
.user-form label {
  color: #4d566a;
  font-size: 13px;
  font-weight: 600;
}

.user-filter-field {
  display: grid;
  flex: 1 1 240px;
  gap: 8px;
}

.user-filter-form input,
.user-filter-form select {
  min-height: 44px;
  border: 1px solid #d9e0ea;
  border-radius: 8px;
  background: #fff;
  color: #26304a;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
}

.user-filter-form .small-btn {
  gap: 8px;
  min-height: 44px;
}

.user-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
}

.user-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.user-table th {
  border-bottom: 1px solid #dfe5ee;
  color: #6a7285;
  font-size: 12px;
  font-weight: 600;
  padding: 0 16px 12px;
  text-align: left;
  text-transform: uppercase;
}

.user-table td {
  border-bottom: 1px solid #edf1f6;
  color: #26304a;
  font-size: 14px;
  font-weight: 500;
  padding: 16px;
  vertical-align: middle;
}

.user-table td strong,
.user-table td span {
  display: block;
}

.user-table td strong {
  color: #192039;
  font-size: 15px;
  font-weight: 600;
}

.user-table td span {
  margin-top: 4px;
  color: #6a7285;
  font-size: 13px;
  font-weight: 500;
}

.user-role-pill {
  display: inline-flex !important;
  width: fit-content;
  border-radius: 999px;
  background: #f3f5f9;
  color: #26304a !important;
  padding: 6px 10px;
  font-size: 12px !important;
  font-weight: 600 !important;
}

.user-actions-head {
  text-align: right !important;
}

.user-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.user-actions form {
  margin: 0;
}

.icon-btn {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: #fff;
  color: #26304a;
  text-decoration: none;
}

.icon-btn:hover {
  border-color: #a80532;
  color: #a80532;
}

.icon-btn.danger {
  cursor: pointer;
}

.icon-btn.danger:hover {
  border-color: #d63638;
  color: #d63638;
}

.icon-btn:disabled {
  cursor: not-allowed;
  opacity: .38;
}

.user-table-empty {
  color: #6a7285 !important;
  text-align: center;
}

.user-pagination {
  margin-top: 20px;
}

.user-success {
  border-color: #bfe8cd;
  background: #f1fbf5;
  color: #236a3a;
  margin-top: 18px;
}

.course-sync-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.course-sync-actions form {
  margin: 0;
}

.course-sync-actions .small-btn {
  gap: 8px;
}

.course-sync-meta {
  margin-top: 10px;
  color: #5e6678;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}

.course-sync-meta strong {
  color: #26304a;
  font-weight: 600;
}

.notification-list {
  display: grid;
  gap: 12px;
}

.notification-row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid #e6ebf2;
  border-radius: 9px;
  padding: 16px;
  background: #fff;
}

.notification-row.is-unseen {
  border-color: #f0c9d4;
  background: #fff8fa;
}

.notification-state {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  background: #c7cedb;
}

.notification-row.is-unseen .notification-state {
  background: var(--brand);
}

.notification-row-body {
  min-width: 0;
}

.notification-row-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.notification-row h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
}

.notification-row time,
.notification-detail time {
  flex: 0 0 auto;
  color: #7b8496;
  font-size: 13px;
  font-weight: 500;
}

.notification-row p {
  margin-top: 7px;
  color: #5e6678;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

.notification-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.notification-empty-panel {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 180px;
  border: 1px dashed #d8dee9;
  border-radius: 9px;
  color: #5e6678;
  text-align: center;
}

.notification-empty-panel i {
  color: #a8b0bf;
  font-size: 28px;
}

.notification-empty-panel p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.notification-detail .card-head {
  align-items: flex-start;
}

.notification-detail h2 {
  margin-top: 12px;
}

.notification-back-link {
  margin-top: 0;
}

.notification-full-body {
  margin-top: 22px;
  color: #26304a;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}

.user-form {
  margin-top: 22px;
}

.user-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compact-course-form .user-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 12px;
}

.compact-course-form .input,
.compact-course-form .select-input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
}

.compact-course-form .form-field label {
  margin-bottom: 6px;
  font-size: 13px;
}

.compact-course-form .admin-textarea {
  min-height: 82px;
  padding: 10px 12px;
}

.compact-course-form .admin-textarea.tall {
  min-height: 140px;
}

.user-form label span {
  color: #6a7285;
  font-weight: 400;
}

.user-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.course-applications-panel {
  border-top: 1px solid #e5e9f1;
  margin-top: 26px;
  padding-top: 22px;
}

.course-applications-panel .card-head {
  margin-bottom: 14px;
}

.course-applications-panel h3 {
  color: #192039;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.application-summary {
  border: 1px solid #e5e9f1;
  border-radius: 8px;
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 16px;
}

.application-summary span {
  color: #6a7285;
  font-size: 13px;
  font-weight: 500;
}

.application-summary strong {
  color: #192039;
  font-size: 17px;
  font-weight: 600;
}

.application-summary a {
  color: #a80532;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.admin-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  border-bottom: 1px solid #e5e9f1;
}

.admin-subnav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-bottom: 2px solid transparent;
  color: #5d6578;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.admin-subnav a:hover,
.admin-subnav a.active {
  border-color: #a80532;
  color: #a80532;
}

.admin-inline-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, .8fr) 120px auto;
  gap: 14px;
  align-items: end;
  margin-top: 22px;
  border: 1px solid #e5e9f1;
  border-radius: 8px;
  padding: 16px;
}

.admin-inline-form.compact {
  grid-template-columns: minmax(260px, 1fr) minmax(180px, .6fr) auto;
}

.admin-inline-form.lookup-form {
  grid-template-columns: minmax(220px, 360px) minmax(96px, max-content) auto;
  justify-content: start;
}

.lookup-form .lookup-name-input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
}

.admin-inline-actions {
  display: flex;
  gap: 10px;
}

.admin-inline-actions .small-btn {
  gap: 8px;
  min-height: 44px;
}

.admin-textarea {
  min-height: 108px;
  padding: 12px;
}

.admin-textarea.tall {
  min-height: 190px;
}

.color-swatch {
  display: inline-block !important;
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0 !important;
  border: 1px solid #d9e0ea;
  border-radius: 999px;
  vertical-align: middle;
}

@media (max-width: 760px) {
  .user-filter-form {
    display: grid;
    margin-left: 0;
    max-width: none;
  }

  .user-form-grid {
    grid-template-columns: 1fr;
  }

  .compact-course-form .user-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-inline-form {
    grid-template-columns: 1fr;
  }
}

.login-page .login-hero-content {
  align-items: center;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.login-page .login-hero-content > div {
  max-width: 720px;
}

.login-page .login-hero h1,
.login-page .login-hero p {
  margin-inline: auto;
}

.login-page .login-hero-action {
  justify-self: center;
  margin-bottom: 0;
  margin-top: 8px;
}

