:root {
  --lime: #a8d400;
  --lime-strong: #bfff00;
  --ink: #101214;
  --ink-soft: #23272b;
  --muted: #697079;
  --line: #e6e8ea;
  --paper: #ffffff;
  --wash: #f5f6f2;
  --shadow: 0 18px 50px rgba(16, 18, 20, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Segoe UI", Arial, "Helvetica Neue", Helvetica, ui-sans-serif, system-ui,
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
}

body::selection {
  background: var(--lime);
  color: var(--ink);
}

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

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 3vw, 34px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    padding 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(16, 18, 20, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  padding-block: 10px;
  backdrop-filter: blur(12px);
}

.brand,
.header-call,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.brand span {
  font-size: 1.12rem;
}

.nav {
  gap: clamp(12px, 2.4vw, 30px);
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.82);
}

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

.nav a:hover,
.nav a:focus-visible {
  color: var(--lime-strong);
}

.header-call {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #070809;
}

.hero-bg,
.hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  background:
    radial-gradient(circle at 75% 50%, rgba(168, 212, 0, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.62) 44%, rgba(0, 0, 0, 0.22) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.76));
}

.hero-content {
  position: relative;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 126px 0 76px;
  animation: heroContentIn 0.72s ease both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--lime-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 5.2vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--lime-strong);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(168, 212, 0, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #caff26;
  box-shadow: 0 18px 38px rgba(168, 212, 0, 0.34);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.11);
}

.btn-light {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 760px);
  margin: 44px 0 0;
}

.hero-facts div {
  display: grid;
  min-height: 86px;
  align-content: center;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07));
  backdrop-filter: blur(12px);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.hero-facts div:hover {
  transform: translateY(-2px);
  border-color: rgba(191, 255, 0, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.09));
}

.hero-facts dt {
  color: var(--lime-strong);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 3px 0 0;
  font-size: 1.02rem;
  font-weight: 800;
}

.section {
  padding: clamp(62px, 9vw, 108px) 0;
}

.intro-band {
  padding: 34px 0;
  color: #fff;
  background: var(--ink);
}

.reservation-band {
  background:
    radial-gradient(circle at 86% 30%, rgba(168, 212, 0, 0.16), transparent 24%),
    linear-gradient(135deg, #101214, #171b1f);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.intro-grid h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
}

.local-copy {
  max-width: 680px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.benefit-grid,
.fleet-grid,
.rules-grid,
.reviews-grid {
  display: grid;
  gap: 16px;
}

.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.benefit-card,
.rules-grid article,
.reviews-grid figure,
.fleet-card,
.steps article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 18, 20, 0.04);
}

.benefit-card {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: auto -24px -56px auto;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(168, 212, 0, 0.16);
  transform: scale(0.6);
  opacity: 0;
  transition:
    transform 0.34s ease,
    opacity 0.34s ease;
}

.benefit-card:hover,
.benefit-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(168, 212, 0, 0.9);
  background: linear-gradient(180deg, #fff, #fbfff0);
  box-shadow: var(--shadow);
}

.benefit-card:hover::after,
.benefit-card:focus-within::after {
  transform: scale(1);
  opacity: 1;
}

.benefit-card:hover .icon,
.benefit-card:focus-within .icon {
  transform: rotate(-4deg) scale(1.08);
}

.icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  transition: transform 0.28s ease;
}

.benefit-card h3,
.fleet-card h3,
.steps h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.benefit-card h3 {
  min-height: 56px;
}

.benefit-card p,
.fleet-card p,
.steps p,
.rules-grid span {
  color: var(--muted);
}

.fleet-section,
.faq-section {
  background: var(--wash);
}

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

.fleet-card {
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.fleet-card .car-visual::before {
  transition: transform 0.32s ease;
}

.fleet-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 212, 0, 0.8);
  box-shadow: var(--shadow);
}

.fleet-card:hover .car-visual::before {
  transform: translateX(5px);
}

.car-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(168, 212, 0, 0.16), transparent 28%),
    #f3f4f1;
}

.car-photo img {
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
  transition: transform 0.42s ease;
}

.fleet-card:hover .car-photo img,
.fleet-card:focus-within .car-photo img {
  transform: scale(1.025);
}

.car-visual {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 28%, rgba(168, 212, 0, 0.34), transparent 28%),
    linear-gradient(135deg, #16191c, #30343a);
}

.car-visual::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 48px;
  height: 58px;
  border-radius: 58px 78px 22px 22px;
  background: linear-gradient(180deg, #f9faf8, #cfd4d8);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.car-visual::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 28%;
  bottom: 92px;
  height: 42px;
  border-radius: 80px 80px 0 0;
  background: linear-gradient(180deg, #eef2f3, #aab2b7);
  clip-path: polygon(15% 100%, 30% 0, 72% 0, 92% 100%);
}

.car-visual .wheel {
  position: absolute;
  bottom: 36px;
  width: 34px;
  height: 34px;
  border: 7px solid #111315;
  border-radius: 50%;
  background: #7b8389;
  z-index: 2;
}

.car-visual .wheel:first-child {
  left: 23%;
}

.car-visual .wheel:last-child {
  right: 24%;
}

.fleet-card.is-van .car-visual::before {
  left: 10%;
  right: 10%;
  height: 78px;
  border-radius: 24px 40px 20px 20px;
}

.fleet-card.is-van .car-visual::after {
  left: 18%;
  right: 20%;
  bottom: 102px;
  height: 38px;
  clip-path: polygon(8% 100%, 18% 0, 90% 0, 98% 100%);
}

.fleet-content {
  padding: 20px;
}

.fleet-content h3 {
  min-height: 56px;
}

.fleet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.fleet-meta li {
  padding: 7px 9px;
  border-radius: 999px;
  background: #f0f2f3;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.price-row {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  padding: 14px;
  border-radius: var(--radius);
  background: #f8f9f4;
}

.price-row div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.price-row span {
  color: var(--muted);
}

.price-row strong {
  font-weight: 800;
}

.fleet-card .btn {
  width: 100%;
}

.process-section {
  color: #fff;
  background: #111315;
}

.process-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

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

.steps article {
  padding: 24px;
  background: #1b1e21;
  border-color: rgba(255, 255, 255, 0.1);
}

.steps span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
}

.steps p {
  color: rgba(255, 255, 255, 0.7);
}

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

.rules-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.rules-grid strong {
  font-size: 1rem;
}

.reviews-section {
  background: #fff;
}

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

.reviews-grid figure {
  display: grid;
  align-content: start;
  gap: 14px;
  margin: 0;
  padding: 24px;
}

.review-source {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f0f6d8;
  color: #4f6500;
  font-size: 0.78rem;
  font-weight: 800;
}

.review-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-topline span:last-child {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f0f6d8;
  color: #4f6500;
  font-size: 0.74rem;
  font-weight: 800;
}

.stars {
  color: #d5aa00;
  letter-spacing: 0.03em;
  font-size: 0.92rem;
}

blockquote {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

figcaption {
  color: var(--muted);
  font-weight: 800;
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.reviews-source-link {
  color: var(--muted);
  font-weight: 800;
}

.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

details:hover,
details[open] {
  border-color: rgba(168, 212, 0, 0.82);
  box-shadow: 0 14px 34px rgba(16, 18, 20, 0.08);
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease;
}

details[open] summary::before {
  border-color: var(--lime);
  transform: rotate(45deg);
}

details p {
  margin: -4px 20px 20px;
  color: var(--muted);
  animation: detailIn 0.22s ease both;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes detailIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.6%, -1%, 0);
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  background: #111315;
  color: #fff;
}

.contact-card {
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.phone-link {
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 800;
}

.contact-actions a:not(.phone-link) {
  align-self: center;
  color: var(--muted);
  font-weight: 800;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.contact-details div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact-details dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.location-media {
  display: grid;
  gap: 14px;
}

.parking-photo {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #2a2e33;
}

.parking-photo img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.parking-photo figcaption {
  position: absolute;
  inset: auto 12px 12px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(16, 18, 20, 0.78);
  color: #fff;
  font-size: 0.84rem;
  backdrop-filter: blur(10px);
}

.map-wrap {
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #2a2e33;
}

.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: 0;
  filter: grayscale(0.12) contrast(1.05);
}

.site-footer {
  padding: 34px 0 86px;
  color: rgba(255, 255, 255, 0.72);
  background: #070809;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 800;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  object-fit: contain;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--lime-strong);
  font-weight: 800;
}

.mobile-cta {
  position: fixed;
  inset: auto 12px 12px;
  z-index: 50;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(16, 18, 20, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.mobile-cta a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.96rem;
  font-weight: 800;
}

.mobile-cta-call {
  background: var(--lime-strong);
  color: var(--ink);
}

.mobile-cta-fleet {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.mobile-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1080px) {
  .benefit-grid,
  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 820px) {
  .site-header {
    align-items: center;
  }

  .nav {
    display: none;
  }

  .header-call span {
    font-size: 0;
  }

  .header-call::after {
    content: "Zavolat";
    font-size: 0.92rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-bg img {
    object-position: 62% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.46)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.88));
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 34px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .intro-grid,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .fleet-grid,
  .rules-grid,
  .reviews-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .benefit-wide {
    grid-column: auto;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 300px;
    height: 300px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 520px) {
  .container,
  .hero-content {
    width: min(100% - 24px, var(--container));
  }

  .brand span {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .fleet-content h3 {
    min-height: auto;
  }

  .contact-actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
