/* --------------------------------------------------
   CSS RESET & BASELINE
-------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F4F4F8;
  color: #223A5E;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  line-height: 1.67;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #223A5E;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #EB7017;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}
input[type="text"]:disabled {
  background: #efefef;
  color: #999;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* TYPOGRAPHY -------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #223A5E;
  font-weight: 700;
  margin-bottom: 0.5em;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.17;
  margin-bottom: 0.6em;
}
h2 {
  font-size: 2rem;
  line-height: 1.22;
  margin-bottom: 0.5em;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.4em;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
}
p, li, dd, dt {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  margin-bottom: 0.6em;
  color: #223A5E;
}
strong, b {
  font-weight: bold;
  color: #223A5E;
}
.cta, .button, button, input[type="submit"], a.cta {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.75em 2.25em;
  border-radius: 36px;
  border: 1.5px solid #EB7017;
  background: #EB7017;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(.3,.38,.61,.7);
  display: inline-block;
  box-shadow: 0 3px 10px rgba(34,58,94,0.10);
}
.cta:focus, .cta:hover, .button:focus, .button:hover {
  background: #fff;
  color: #EB7017;
  border: 1.5px solid #EB7017;
}

/* HEADER & NAV -------------------------------------------------- */

header {
  background: #fff;
  box-shadow: 0 1px 4px rgba(34,58,94,0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
.logo img {
  height: 44px;
  width: auto;
  margin-right: 0.5em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #223A5E;
  padding: 0.25em 0.5em;
  transition: color 0.2s;
  border-radius: 4px;
}
.main-nav a.cta {
  margin-left: 16px;
  background: #EB7017;
  color: #fff;
  border-radius: 36px;
  border: 1.5px solid #EB7017;
  padding: 0.5em 1.6em;
  box-shadow: 0 2px 8px rgba(34,58,94,0.09);
  transition: all 0.22s;
}
.main-nav a.cta:focus, .main-nav a.cta:hover {
  background: #fff;
  color: #EB7017;
}
.main-nav a:focus, .main-nav a:hover:not(.cta) {
  color: #EB7017;
  background: #F4F4F8;
}

.mobile-menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  color: #223A5E;
  padding: 0.25em 0.6em;
  border-radius: 8px;
  display: none;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F4F4F8;
  color: #EB7017;
}

/* MOBILE NAV -------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 200;
  transform: translateX(-100vw);
  display: flex;
  flex-direction: column;
  transition: transform 0.36s cubic-bezier(.25,.8,.25,1);
  box-shadow: 2px 0 24px rgba(34,58,94,0.07);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #223A5E;
  font-size: 2rem;
  padding: 1em;
  align-self: flex-end;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 2.5em 0;
  align-items: flex-start;
  padding-left: 2.8em;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.15rem;
  color: #223A5E;
  padding: 0.25em 0.5em;
  border-radius: 4px;
  min-width: 180px;
  display: block;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #EB7017;
  background: #F4F4F8;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  .main-nav a, .main-nav a.cta {
    font-size: 0.95rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO -------------------------------------------------- */
.hero {
  background: #223A5E;
  color: #fff;
  padding: 56px 0 52px 0;
  margin-bottom: 60px;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero h1, .hero .hero-subheadline {
  color: #fff;
  text-shadow: 0 1px 6px rgba(34,58,94,0.18);
}
.hero h1 {
  font-size: 2.6rem;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  font-family: 'Georgia', 'Times New Roman', serif;
}
.hero .hero-subheadline {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.18rem;
  font-weight: 400;
  margin-bottom: 1.4em;
}
.hero .cta {
  background: #EB7017;
  border-color: #EB7017;
}
.hero .cta:focus, .hero .cta:hover {
  background: #fff;
  color: #EB7017;
  border-color: #EB7017;
}

/* SECTION SPACING -------------------------------------------------- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 900px) {
  .section, section {
    padding: 32px 10px;
    margin-bottom: 36px;
  }
}

/* FLEXBOX PATTERNS -------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(34,58,94,0.10);
  padding: 26px 24px;
  min-width: 260px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 26px rgba(34,58,94,0.13);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURES GRID -------------------------------------------------- */
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
}
.feature-grid li {
  background: #fff;
  color: #223A5E;
  box-shadow: 0 2px 12px rgba(34,58,94,0.11);
  border-radius: 14px;
  padding: 24px 18px 18px 18px;
  flex: 1 1 280px;
  min-width: 230px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-left: 4px solid #EB7017;
  transition: border 0.20s, box-shadow 0.2s;
}
.feature-grid li:hover {
  border-left: 4px solid #223A5E;
  box-shadow: 0 6px 24px rgba(34,58,94,0.13);
}
.feature-grid img {
  width: 36px;
  margin-bottom: 10px;
}

/* TEAM -------------------------------------------------- */
.team .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(34,58,94,0.08);
  padding: 28px 20px 18px 20px;
  flex: 1 1 300px;
  min-width: 220px;
  margin-bottom: 20px;
}
.team-member h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2em;
}

/* VEHICLE LIST -------------------------------------------------- */
.vehicle-spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.vehicle-spec-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(34,58,94,0.09);
  padding: 22px 18px;
  flex: 1 1 260px;
  min-width: 200px;
  margin-bottom: 20px;
}
.vehicle-spec-list h3 {
  margin-bottom: 8px;
}
.vehicle-spec-list ul li {
  font-size: 0.98rem;
  margin-bottom: 6px;
}
.car-type-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.car-type-filters button {
  padding: 6px 16px;
  font-size: 0.96rem;
  background: #F4F4F8;
  color: #223A5E;
  border: 1px solid #223A5E;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.20s, color 0.20s;
}
.car-type-filters button:hover, .car-type-filters button:focus {
  background: #223A5E;
  color: #fff;
}

/* SERVICE LIST -------------------------------------------------- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 18px;
}
.service-list li {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(34,58,94,0.09);
  padding: 26px 20px;
  flex: 1 1 280px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 20px;
  border-left: 3.5px solid #EB7017;
  transition: border 0.15s, box-shadow 0.18s;
}
.service-list li:hover {
  border-left: 3.5px solid #223A5E;
  box-shadow: 0 8px 18px rgba(34,58,94,0.13);
}
.service-list img {
  width: 36px;
  margin-bottom: 14px;
}
.service-list h3 {
  margin-bottom: 0.2em;
}

/* STEPS -------------------------------------------------- */
.steps .content-wrapper {
  display: flex;
  flex-direction: column;
}
.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
}
.step-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(34,58,94,0.09);
  padding: 24px 18px 18px 18px;
  flex: 1 1 260px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
  margin-bottom: 20px;
  border-top: 4px solid #EB7017;
  transition: border-color 0.18s, box-shadow 0.15s;
}
.step-list li:hover {
  border-top: 4px solid #223A5E;
  box-shadow: 0 8px 18px rgba(34,58,94,0.12);
}
.step-list img {
  width: 38px;
  margin-bottom: 10px;
}
.step-list span {
  font-size: 1.04rem;
  font-weight: 600;
  margin-bottom: 0.4em;
}

/* TESTIMONIALS -------------------------------------------------- */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(34,58,94,0.12);
  min-width: 270px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.07rem;
  color: #223A5E;
  margin-bottom: 0;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95em;
}
.testimonial-name {
  font-weight: 700;
  color: #223A5E;
}
.testimonial-location {
  color: #9EA6B9;
  font-weight: 500;
}
.testimonial-stars {
  color: #EB7017;
  font-size: 1.05em;
}

/* FAQ / DL -------------------------------------------------- */
.faq-search {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.faq-search input {
  background: #F4F4F8;
  border: 1px solid #D1D7E0;
  border-radius: 4px;
  padding: 6px 16px;
  min-width: 170px;
}
dt {
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 4px;
  color: #223A5E;
  font-size: 1.07rem;
}
dd {
  margin-bottom: 16px;
  margin-left: 0;
  color: #33446d;
  font-size: 1rem;
}

/* CONTACT PAGE -------------------------------------------------- */
.contact .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.contact-details, .contact-help {
  flex: 1 1 320px;
  min-width: 200px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(34,58,94,0.09);
  padding: 32px 22px 20px 22px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.04rem;
  color: #223A5E;
}
.contact-details img, .contact-help img {
  width: 24px;
  height: 24px;
}

.location .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(34,58,94,0.09);
}

/* FOOTER -------------------------------------------------- */
footer {
  background: #223A5E;
  color: #fff;
  padding: 42px 0 18px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  opacity: 0.84;
  margin-bottom: 2px;
  transition: color 0.18s, opacity 0.18s;
  padding: 0.25em 0.5em;
}
.footer-menu a:focus, .footer-menu a:hover {
  color: #EB7017;
  opacity: 1;
  background: #fff;
  border-radius: 6px;
}
.footer-info {
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0.84;
  font-size: 0.96rem;
}
.footer-info img {
  width: 37px;
  height: auto;
}

/* CTA SECTIONS -------------------------------------------------- */
section.cta {
  background: #223A5E;
  color: #fff;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(34,58,94,0.09);
  margin: 64px 0 0 0;
}
section.cta .content-wrapper {
  align-items: center;
  gap: 20px;
}
section.cta h2, section.cta p {
  color: #fff;
  text-shadow: 0 2px 8px rgba(34,58,94,0.16);
}
section.cta .cta {
  margin-top: 5px;
  background: #EB7017;
  border-color: #fff;
}
section.cta .cta:focus, section.cta .cta:hover {
  background: #fff;
  color: #EB7017;
  border-color: #EB7017;
}

/* THANK YOU PAGE -------------------------------------------------- */
.thank-you .content-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(34,58,94,0.10);
  margin: 30px 0;
  padding: 40px 24px;
  align-items: center;
  gap: 18px;
}
.thank-you ul {
  margin-top: 0.7em;
  padding-left: 1.4em;
  list-style: disc inside;
}
.thank-you li {
  margin-bottom: 0.26em;
}

/* STATIC ARTICLE SECTIONS ----------------------------------------- */
.privacy .content-wrapper, .gdpr .content-wrapper, .cookies .content-wrapper, .terms .content-wrapper {
  background: #fff;
  border-radius: 14px;
  padding: 38px 24px;
  box-shadow: 0 2px 12px rgba(34,58,94,0.07);
  margin-top: 16px;
}
.privacy h1, .gdpr h1, .cookies h1, .terms h1 {
  margin-bottom: 24px;
}

/* RESPONSIVE -------------------------------------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 980px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 700px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .container {
    padding: 0 8px;
  }
  section, .section {
    padding: 20px 0;
  }
}
@media (max-width: 900px) {
  .feature-grid, .step-list, .vehicle-spec-list, .service-list, .testimonials .content-wrapper, .team .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 520px) {
  footer .container {
    flex-direction: column;
    gap: 10px;
  }
  .footer-menu {
    gap: 10px;
    justify-content: flex-start;
  }
  .footer-info {
    flex-direction: column;
    gap: 6px;
  }
}

/* HOVER, MICRO-INTERACTIONS & TRANSITIONS ----------------------- */
.card, .testimonial-card, .team-member, .service-list li, .feature-grid li, .step-list li, .vehicle-spec-list li {
  transition: box-shadow 0.22s, border-color 0.15s;
}
.feature-grid li:hover, .team-member:hover, .service-list li:hover, .card:hover, .step-list li:hover {
  box-shadow: 0 6px 24px rgba(34,58,94,0.13);
}
.button:active, .cta:active {
  transform: translateY(1px) scale(0.98);
}

/* COOKIE BANNER -------------------------------------------------- */
.cookie-banner {
  position: fixed;
  z-index: 9999;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fff8f3;
  color: #223A5E;
  box-shadow: 0 -2px 20px rgba(34,58,94,0.13);
  padding: 22px 16px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.95rem;
  transition: transform 0.45s cubic-bezier(.16,.8,.18,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner .button, .cookie-banner button, .cookie-banner .cta {
  padding: 8px 22px;
  border-radius: 24px;
  background: #223A5E;
  border: 1.5px solid #223A5E;
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
}
.cookie-banner .button.settings, .cookie-banner .cookie-settings {
  background: #fff;
  color: #223A5E;
  border: 1.5px solid #223A5E;
}
.cookie-banner .button.accept {
  background: #EB7017;
  border: 1.5px solid #EB7017;
  color: #fff;
}
.cookie-banner .button.reject {
  background: #9EA6B9;
  border: 1.5px solid #9EA6B9;
  color: #fff;
}
.cookie-banner .button:hover, .cookie-banner .cta:focus {
  background: #fff;
  color: #223A5E;
  border: 1.5px solid #223A5E;
}
.cookie-banner .button.accept:hover {
  background: #fff;
  color: #EB7017;
  border: 1.5px solid #EB7017;
}
.cookie-banner .button.reject:hover {
  background: #fff;
  color: #9EA6B9;
}
.cookie-banner a {
  color: #223A5E;
  text-decoration: underline;
  margin-left: 9px;
}

/* COOKIE MODAL -------------------------------------------------- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10000;
  background: rgba(34,58,94,0.13);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  animation: cookiefadein 0.34s cubic-bezier(.25,.8,.25,1);
}
@keyframes cookiefadein {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal-content {
  background: #fff;
  color: #223A5E;
  border-radius: 18px;
  box-shadow: 0 6px 42px rgba(34,58,94,0.12);
  padding: 38px 26px 30px 26px;
  max-width: 400px;
  width: 92vw;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
}
.cookie-modal-content h2 {
  margin-top: 0;
  font-size: 1.28rem;
  margin-bottom: 8px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-toggle label {
  flex: 1;
  font-size: 1rem;
}
.cookie-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
}
.cookie-modal-content .cookie-category {
  margin-bottom: 14px;
  font-size: 0.98rem;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #223A5E;
  cursor: pointer;
}

/* SPECIALS (FAQ, ABOUT etc) -------------------------------------- */
.faq .content-wrapper, .about .content-wrapper, .gdpr .content-wrapper, .privacy .content-wrapper, .cookies .content-wrapper, .terms .content-wrapper {
  gap: 16px;
}
.faq .content-wrapper dl {
  margin-top: 24px;
}

/* UTILITIES -------------------------------------------------- */
.text-center {text-align: center;}
.text-right {text-align: right;}
.mb-0 {margin-bottom: 0 !important;}

/* MEDIA QUERIES FOR LAYOUT CONSISTENCY ------------------------ */
@media (max-width: 900px) {
  .team .content-wrapper, .testimonials .content-wrapper, .feature-grid, .step-list, .vehicle-spec-list, .service-list {
    flex-direction: column !important;
  }
  .contact .content-wrapper {
    flex-direction: column;
    gap: 26px;
  }
}
