:root {
  --rc-green: #004225;
  --rc-green-2: #073c2b;
  --rc-gold: #b88a3b;
  --rc-burgundy: #6a1b29;
  --rc-paper: #ebe2d8;
  --rc-surface: #ffffff;
  --rc-text: #202124;
  --rc-muted: #5f6368;
  --rc-line: #d6cbbd;
}

.hide {
  display: none !important;
}


body[data-path="index"],
body[data-path="home"],
body[data-path="request"],
body[data-path="application/natural-person"],
body[data-path="cabinet"] {
  background: var(--rc-paper);
  overflow-x: hidden;
}

body[data-path="index"] .page_content,
body[data-path="home"] .page_content,
body[data-path="request"] .page_content,
body[data-path="application/natural-person"] .page_content,
body[data-path="cabinet"] .page_content {
  padding: 0;
}

body[data-path="index"] .navbar,
body[data-path="home"] .navbar,
body[data-path="request"] .navbar,
body[data-path="application/natural-person"] .navbar,
body[data-path="cabinet"] .navbar,
body[data-path="index"] .web-footer,
body[data-path="home"] .web-footer,
body[data-path="request"] .web-footer,
body[data-path="application/natural-person"] .web-footer,
body[data-path="cabinet"] .web-footer {
  display: none !important;
}

.rc-site {
  box-sizing: border-box;
  color: var(--rc-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 22px 64px;
  width: 100%;
}

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

.rc-nav {
  align-items: center;
  background: var(--rc-surface);
  border: 1px solid var(--rc-line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 28px auto 0;
  min-height: 78px;
  padding: 16px 26px;
  position: relative;
  z-index: 2;
}

.rc-brand {
  align-items: center;
  display: inline-flex;
  min-width: 244px;
  text-decoration: none;
}

.rc-brand img {
  display: block;
  height: 72px;
  max-width: none;
  width: auto;
}

.rc-nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.rc-nav-tools {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.rc-nav-links a {
  color: var(--rc-text);
  font-size: .92rem;
  font-weight: 650;
  text-decoration: none;
}

.rc-nav #language-switcher {
  align-items: center;
  border-left: 1px solid var(--rc-line);
  display: inline-flex;
  gap: 8px;
  margin: 0;
  padding-left: 16px;
}

.rc-nav #language-switcher.hide {
  display: none;
}

.rc-nav #language-switcher .form-control {
  background: #ffffff;
  border: 1px solid var(--rc-line);
  border-radius: 4px;
  color: var(--rc-green-2);
  font-size: .78rem;
  font-weight: 800;
  height: 34px;
  min-width: 136px;
  padding: 4px 28px 4px 10px;
}

.rc-hero {
  align-items: stretch;
  background: var(--rc-green);
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, .74fr);
  min-height: 540px;
  overflow: hidden;
}

.rc-hero-copy {
  align-self: center;
  color: #fffaf2;
  min-width: 0;
  padding: 76px 58px;
}

.rc-hero h1,
.rc-request-copy h1 {
  color: #fffaf2;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: .98;
  margin: 0 0 24px;
}

.rc-lead,
.rc-request-copy p {
  color: rgba(255, 250, 242, .9);
  font-size: 1.18rem;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  overflow-wrap: anywhere;
}

.rc-hero-applications {
  border-top: 1px solid rgba(255, 250, 242, .28);
  display: grid;
  gap: 16px;
  margin-top: 32px;
  max-width: 610px;
  padding-top: 22px;
}

.rc-hero-applications span {
  color: #fffaf2;
  font-size: .92rem;
  font-weight: 800;
}

.rc-hero-applications div {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.rc-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-size: .96rem;
  font-weight: 750;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.rc-button-primary {
  background: #ffffff;
  color: var(--rc-green);
}

.rc-button-primary:hover {
  background: #fffaf2;
  color: var(--rc-green);
  text-decoration: none;
}

.rc-button-secondary {
  border-color: rgba(255, 250, 242, .42);
  color: #fffaf2;
}

.rc-button-secondary:hover {
  background: rgba(255, 250, 242, .08);
  color: #fffaf2;
  text-decoration: none;
}

.rc-button-outline {
  background: transparent;
  border-color: var(--rc-green);
  color: var(--rc-green);
}

.rc-button-outline:hover {
  background: #f8f4ed;
  color: var(--rc-green);
  text-decoration: none;
}

.rc-button-disabled {
  cursor: default;
  opacity: .82;
  pointer-events: none;
}

.rc-hero-media {
  margin: 0;
  min-height: 540px;
  overflow: hidden;
}

.rc-hero-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.rc-section {
  background: var(--rc-surface);
  border-left: 1px solid var(--rc-line);
  border-right: 1px solid var(--rc-line);
  padding: 58px;
}

.rc-service-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--rc-line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
}

.rc-service-strip article {
  background: #ffffff;
  border-right: 1px solid var(--rc-line);
  min-height: 230px;
  padding: 34px;
}

.rc-service-strip article:last-child {
  border-right: 0;
}

.rc-service-icon {
  align-items: center;
  border: 1px solid var(--rc-line);
  color: var(--rc-green);
  display: inline-flex;
  font-size: 1.4rem;
  height: 42px;
  justify-content: center;
  margin-bottom: 24px;
  width: 42px;
}

.rc-section h2 {
  color: var(--rc-green);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.04;
  margin: 0 0 16px;
}

.rc-section p {
  color: var(--rc-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

.rc-service-strip a,
.rc-proof-grid a {
  color: var(--rc-green);
  display: inline-block;
  font-weight: 750;
  margin-top: 22px;
  text-decoration: none;
}

.rc-applications {
  align-items: center;
  background: #f8f4ed;
  border-bottom: 1px solid var(--rc-line);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, .78fr) minmax(420px, .92fr);
}

.rc-application-actions {
  display: grid;
  gap: 14px;
}

.rc-application-actions article {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--rc-line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 82px;
  padding: 18px 20px;
}

.rc-application-actions span,
.rc-request-app-access span {
  color: var(--rc-green-2);
  font-weight: 800;
}

.rc-split {
  align-items: start;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .8fr);
}

.rc-process-list {
  border-top: 2px solid var(--rc-gold);
  display: grid;
  gap: 0;
}

.rc-process-list span {
  border-bottom: 1px solid var(--rc-line);
  color: var(--rc-green-2);
  font-weight: 750;
  padding: 18px 0;
}

.rc-proof-grid {
  background: #f8f4ed;
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.rc-proof-grid article {
  background: #f8f4ed;
  padding: 58px;
}

.rc-about {
  border-bottom: 1px solid var(--rc-line);
}

.rc-request-page {
  max-width: 1280px;
}

.rc-request-layout {
  background: var(--rc-green);
  color: #fffaf2;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, .75fr) minmax(360px, .95fr);
  padding: 58px;
}

.rc-request-copy {
  min-width: 0;
}

.rc-request-copy h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.rc-contact-lines {
  border-top: 1px solid rgba(255, 250, 242, .3);
  display: grid;
  gap: 14px;
  margin-top: 34px;
  padding-top: 22px;
}

.rc-contact-org {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fffaf2;
  margin-bottom: 6px;
}

.rc-contact-line-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.95rem;
}

.rc-contact-line-item strong {
  color: var(--rc-brass, #B88A3B);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rc-contact-line-item span,
.rc-contact-line-item a {
  color: rgba(255, 250, 242, 0.9);
  text-decoration: none;
  line-height: 1.5;
}

.rc-contact-line-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.rc-contact-channel-links {
  display: flex;
  gap: 16px;
  margin-top: 2px;
}

.rc-contact-channel-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
}

.rc-contact-channel-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transform: translateY(-1px);
}

.rc-request-app-access {
  border-top: 1px solid rgba(255, 250, 242, .3);
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding-top: 24px;
}

.rc-request-app-access span {
  color: #fffaf2;
}

.rc-request-app-access .rc-button {
  border-color: rgba(255, 250, 242, .45);
  min-height: 44px;
}

.rc-form {
  background: var(--rc-surface);
  border: 1px solid var(--rc-line);
  color: var(--rc-text);
  padding: 32px;
}

.rc-field,
.rc-field-group {
  margin-bottom: 18px;
}

.rc-field-group {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.rc-field label {
  color: var(--rc-green-2);
  display: block;
  font-size: .86rem;
  font-weight: 800;
  margin-bottom: 7px;
}

.rc-field input,
.rc-field select,
.rc-field textarea {
  background: #fff;
  border: 1px solid #cbbfaa;
  border-radius: 6px;
  color: var(--rc-text);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

.rc-field textarea {
  min-height: 132px;
  resize: vertical;
}

.rc-field-hidden {
  height: 0;
  left: -9999px;
  margin: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.rc-form .rc-button-primary {
  background: var(--rc-green);
  color: #fffaf2;
  width: 100%;
}

.rc-inline-form .rc-button-primary,
.rc-long-form .rc-button-primary {
  background: var(--rc-green);
  color: #fffaf2;
}

.rc-form .rc-button-primary:disabled {
  cursor: wait;
  opacity: .72;
}

.rc-form-status {
  color: var(--rc-green-2);
  font-weight: 700;
  margin: 16px 0 0;
}

.rc-application-page {
  max-width: 1180px;
}

.rc-flow-shell {
  align-items: stretch;
  background: var(--rc-surface);
  border: 1px solid var(--rc-line);
  border-top: 0;
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  min-height: 620px;
}

.rc-flow-rail {
  background: var(--rc-green);
  color: #fffaf2;
  padding: 42px 34px;
}

.rc-kicker {
  color: rgba(255, 250, 242, .82);
  display: block;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rc-flow-rail h1 {
  color: #fffaf2;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0;
  line-height: 1;
  margin: 14px 0 30px;
}

.rc-flow-steps {
  counter-reset: rc-step;
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rc-flow-steps li {
  align-items: center;
  border: 1px solid rgba(255, 250, 242, .28);
  color: rgba(255, 250, 242, .82);
  display: flex;
  font-weight: 760;
  gap: 12px;
  min-height: 44px;
  padding: 10px 12px;
}

.rc-flow-steps li::before {
  align-items: center;
  background: rgba(255, 250, 242, .12);
  border-radius: 999px;
  content: counter(rc-step);
  counter-increment: rc-step;
  display: inline-flex;
  flex: 0 0 24px;
  font-size: .78rem;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.rc-flow-steps li.is-current {
  background: rgba(255, 250, 242, .12);
  color: #fffaf2;
}

.rc-save-state {
  border-top: 1px solid rgba(255, 250, 242, .28);
  color: rgba(255, 250, 242, .82);
  font-weight: 760;
  margin: 30px 0 0;
  padding-top: 18px;
}

.rc-flow-panel {
  background: #fffaf2;
  min-width: 0;
  padding: 42px;
}

.rc-flow-step {
  display: none;
}

.rc-flow-step.is-active {
  display: block;
}

.rc-flow-step h2 {
  color: var(--rc-green);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  margin: 0 0 24px;
}

.rc-inline-form,
.rc-long-form {
  background: var(--rc-surface);
  border: 1px solid var(--rc-line);
  padding: 28px;
}

.rc-long-form {
  display: grid;
  gap: 24px;
}

.rc-flow-heading {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.rc-flow-heading h2 {
  margin: 0;
}

.rc-form-section {
  border-top: 2px solid var(--rc-gold);
  padding-top: 20px;
}

.rc-form-section + .rc-form-section {
  margin-top: 10px;
}

.rc-form-section h3 {
  color: var(--rc-green-2);
  font-size: 1.02rem;
  font-weight: 850;
  margin: 0 0 18px;
}

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

.rc-form-grid .rc-field:has(textarea),
.rc-form-grid .rc-field:has(.rc-choice-group),
.rc-form-grid .rc-field:has(.rc-single-check) {
  grid-column: 1 / -1;
}

.rc-choice-group {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rc-choice,
.rc-single-check {
  align-items: flex-start;
  background: #f8f4ed;
  border: 1px solid var(--rc-line);
  color: var(--rc-text);
  display: flex;
  font-size: .95rem;
  font-weight: 650;
  gap: 10px;
  line-height: 1.35;
  min-height: 44px;
  padding: 11px 12px;
}

.rc-choice input,
.rc-single-check input {
  flex: 0 0 auto;
  margin-top: 3px;
}

.rc-form-footer {
  border-top: 1px solid var(--rc-line);
  padding-top: 22px;
}

.rc-form-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.rc-upload-list {
  display: grid;
  gap: 12px;
}

.rc-upload-card {
  align-items: center;
  background: var(--rc-surface);
  border: 1px solid var(--rc-line);
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .36fr);
  padding: 18px;
}

.rc-upload-section {
  color: var(--rc-burgundy);
  display: block;
  font-size: .76rem;
  font-weight: 850;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.rc-upload-card h3 {
  color: var(--rc-green-2);
  font-size: 1rem;
  line-height: 1.35;
  margin: 0;
}

.rc-upload-card p {
  color: var(--rc-muted);
  font-size: .92rem;
  line-height: 1.45;
  margin: 8px 0 0;
}

.rc-upload-status {
  color: var(--rc-green);
  display: inline-block;
  font-size: .86rem;
  font-weight: 800;
  margin-top: 10px;
  overflow-wrap: anywhere;
}

.rc-upload-card input[type="file"] {
  background: #fff;
  border: 1px solid var(--rc-line);
  color: var(--rc-text);
  font: inherit;
  min-width: 0;
  padding: 10px;
  width: 100%;
}

.rc-done-copy {
  color: var(--rc-muted);
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0 0 24px;
}

.rc-cabinet-page {
  max-width: 1120px;
}

.rc-cabinet-shell {
  background: #fffaf2;
  border: 1px solid var(--rc-line);
  border-top: 0;
  display: grid;
  gap: 30px;
  padding: 46px;
}

.rc-cabinet-heading {
  border-bottom: 1px solid var(--rc-line);
  padding-bottom: 28px;
}

.rc-cabinet-heading .rc-kicker {
  color: var(--rc-burgundy);
}

.rc-cabinet-heading h1 {
  color: var(--rc-green);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.02;
  margin: 12px 0 18px;
}

.rc-cabinet-heading p,
.rc-cabinet-empty p {
  color: var(--rc-muted);
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0;
  max-width: 760px;
}

.rc-cabinet-list {
  display: grid;
  gap: 14px;
}

.rc-cabinet-card,
.rc-cabinet-empty {
  align-items: center;
  background: var(--rc-surface);
  border: 1px solid var(--rc-line);
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 22px;
}

.rc-cabinet-card h2 {
  color: var(--rc-green-2);
  font-size: 1.22rem;
  margin: 0 0 8px;
}

.rc-cabinet-card p {
  color: var(--rc-text);
  font-weight: 700;
  margin: 0 0 8px;
}

.rc-cabinet-modified {
  color: var(--rc-muted);
  font-size: .9rem;
}

@media (max-width: 900px) {
  .rc-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .rc-nav-tools {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }

  .rc-nav-links {
    justify-content: flex-start;
    width: 100%;
  }

  .rc-nav #language-switcher {
    border-left: 0;
    border-top: 1px solid var(--rc-line);
    padding-left: 0;
    padding-top: 12px;
  }

  .rc-hero,
  .rc-request-layout,
  .rc-flow-shell,
  .rc-split,
  .rc-service-strip,
  .rc-proof-grid,
  .rc-applications {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .rc-hero-copy,
  .rc-section,
  .rc-flow-panel,
  .rc-request-layout {
    padding: 34px 24px;
  }

  .rc-flow-rail {
    padding: 30px 24px;
  }

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

  .rc-hero-media {
    min-height: 300px;
  }

  .rc-service-strip article,
  .rc-proof-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--rc-line);
  }

  .rc-application-actions article {
    align-items: flex-start;
    flex-direction: column;
  }

  .rc-form-grid,
  .rc-upload-card,
  .rc-cabinet-card,
  .rc-cabinet-empty {
    grid-template-columns: 1fr;
  }

  .rc-cabinet-shell {
    padding: 34px 24px;
  }
}

@media (max-width: 620px) {
  .rc-site {
    padding-left: 12px;
    padding-right: 12px;
  }

  .rc-nav {
    padding: 16px;
  }

  .rc-brand {
    min-width: 0;
    width: 100%;
  }

  .rc-brand img {
    height: 70px;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
  }

  .rc-nav-links {
    gap: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rc-nav-links a {
    font-size: .82rem;
    min-width: 0;
  }

  .rc-hero h1,
  .rc-request-copy h1 {
    font-size: clamp(2rem, 10vw, 2.35rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .rc-hero-copy,
  .rc-request-copy {
    max-width: calc(100vw - 72px);
    width: 100%;
  }

  .rc-lead,
  .rc-request-copy p {
    font-size: 1.02rem;
    line-height: 1.55;
    max-width: 100%;
    white-space: normal;
  }

  .rc-actions,
  .rc-hero-applications div,
  .rc-field-group,
  .rc-choice-group,
  .rc-form-actions,
  .rc-flow-steps {
    grid-template-columns: 1fr;
  }

  .rc-actions {
    display: grid;
  }

  .rc-button {
    width: 100%;
  }

  .rc-form {
    padding: 22px;
  }

  .rc-inline-form,
  .rc-long-form {
    padding: 20px;
  }

  .rc-cabinet-shell {
    padding: 28px 18px;
  }

  .rc-flow-heading {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Premium Burger Menu Toggle styling */
.rc-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.rc-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #004225; /* UK Racing Green */
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.rc-nav.open .rc-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.rc-nav.open .rc-nav-toggle span:nth-child(2) {
  opacity: 0;
}
.rc-nav.open .rc-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .rc-nav {
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    padding: 16px 20px !important;
    height: auto !important;
  }
  .rc-brand {
    width: auto !important;
    flex: 1 !important;
    min-width: 0 !important;
  }
  .rc-nav-toggle {
    display: flex !important;
  }
  .rc-nav-tools {
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    margin-top: 16px !important;
    border-top: 1px solid var(--rc-line) !important;
    padding-top: 16px !important;
    gap: 20px !important;
  }
  .rc-nav.open .rc-nav-tools {
    display: flex !important;
  }
  .rc-nav-links {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 12px !important;
    display: flex !important;
  }
  .rc-nav-links a {
    font-size: 1.05rem !important;
    width: 100% !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    display: block !important;
    text-align: left !important;
  }
  .rc-nav #language-switcher {
    border-left: 0 !important;
    border-top: none !important;
    padding-left: 0 !important;
    padding-top: 0 !important;
    margin: 10px 0 0 0 !important;
    width: 100% !important;
  }
  .rc-nav #language-switcher .form-control {
    width: 100% !important;
  }
}

.rc-footer {
  background: transparent;
  border-top: 1px solid var(--rc-line);
  margin-top: 80px;
  padding: 60px 0 24px;
  color: var(--rc-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
}

.rc-footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.rc-footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 20px;
}

.rc-footer-brand p {
  font-size: 0.88rem;
  color: var(--rc-muted);
  line-height: 1.6;
}

.rc-footer-corporate-info {
  font-size: 0.82rem;
  color: var(--rc-muted);
  margin-top: 8px;
  line-height: 1.5;
  opacity: 0.85;
}

.rc-footer-section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  color: #004225; /* UK Racing Green */
  margin-bottom: 20px;
  font-weight: 700;
}

.rc-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rc-footer-item {
  font-size: 0.92rem;
  line-height: 1.6;
}

.rc-footer-item strong {
  color: var(--rc-text);
  font-weight: 650;
  display: block;
  margin-bottom: 4px;
}

.rc-footer-item span,
.rc-footer-item a {
  color: var(--rc-muted);
  text-decoration: none;
}

.rc-footer-item a:hover {
  color: #004225;
  text-decoration: underline;
}

.rc-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rc-footer-links a {
  font-size: 0.92rem;
  color: var(--rc-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.rc-footer-links a:hover {
  color: #004225;
}

.rc-footer-links a i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .rc-footer {
    padding: 40px 0;
    margin-top: 40px;
  }
  .rc-footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
