/* ---------------------------------------------------
   CSS RESET & BASE STYLES FOR LUXUSDRIVE MÜNCHEN
--------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #f7f6f3; /* slightly off white */
}
body {
  background: #f7f6f3;
  color: #162032;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #162032;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #b29a5d;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  padding-left: 1.6em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.5em;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  outline: none;
  padding: 0;
}

/* ----------------------------
   FONT DEFINITIONS
---------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #162032;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #1e2432;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 600;
}
p, ul, ol, li {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #24272e;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}

/* ----------------------------
   LAYOUT CONTAINERS
---------------------------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  max-width: 850px;
  margin: 0 auto 0 auto;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 32px 0 rgba(36,32,21,0.05);
}
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    padding: 0 4px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 18px 0;
    margin-bottom: 28px;
  }
}

/* -------------------------------------------
   FLEXBOX LAYOUTS - ONLY FLEXB0X USED
------------------------------------------- */
.feature-grid, .card-container, .content-grid, .text-image-section, .testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid {
  gap: 28px;
  justify-content: flex-start;
}
.card-container {
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 22px 0 rgba(36,32,21,0.08);
  position: relative;
  padding: 28px 22px;
  min-width: 290px; /* helps maintain premium width */
  flex: 1 1 320px;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 10px 48px 0 rgba(177,164,109,0.12), 0 2px 8px 0 rgba(36,32,21,0.04);
  cursor: pointer;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .content-grid, .text-image-section, .testimonial-row {
    flex-direction: column;
    gap: 18px;
  }
}

/* Testimonial card as flex row for avatar+text if ever present */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F2EEE5;
  border-left: 4px solid #b29a5d;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px 0 rgba(36,32,21,0.03);
  font-size: 1.05rem;
  color: #1f2230;
}
.testimonial-card p {
  color: #262626;
}
.testimonial-card strong {
  color: #494741;
  font-weight: 700;
  font-size: 1rem;
}
@media (max-width: 500px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    font-size: 0.97rem;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 15px;
  border-left: 3px solid #b29a5d;
  padding: 20px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(36,32,21,0.04);
}

/* ---------------------------------------------------
   HEADER/NAVIGATION STYLES
--------------------------------------------------- */
header {
  background: #162032;
  color: #f5efe2;
  width: 100%;
  padding: 0;
  box-shadow: 0 2px 12px 0 rgba(30,27,20,0.07);
  position: relative;
  z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 12px;
  transition: background 0.16s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: #b29a5d;
  color: #fff;
  text-decoration: none;
}
header img {
  height: 42px;
  width: auto;
  margin-right: 14px;
}
header .cta-btn {
  margin-left: auto;
  background: #b29a5d;
  color: #fff;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 28px;
  border-radius: 18px;
  font-weight: 700;
  box-shadow: 0 2px 10px 0 rgba(36,32,21,0.07);
  border: none;
  display: inline-block;
  margin-right: 16px;
  transition: background 0.2s, box-shadow 0.2s;
}
header .cta-btn:hover, header .cta-btn:focus {
  background: #a8955c;
  color: #fff4d6;
  box-shadow: 0 6px 28px 0 rgba(177,164,109,0.13);
}
header .mobile-menu-toggle {
  display: none;
}
@media (max-width: 1000px) {
  header nav {
    gap: 10px;
  }
  header .cta-btn {
    margin-right: 2px;
    padding: 9px 17px;
  }
}
@media (max-width: 820px) {
  header nav {
    display: none;
  }
  header .cta-btn {
    display: none;
  }
  header .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    padding: 6px 16px;
    margin-left: auto;
    z-index: 160;
    cursor: pointer;
    transition: color 0.2s;
  }
  header .mobile-menu-toggle:hover, header .mobile-menu-toggle:focus {
    color: #b29a5d;
  }
}

/* -----------------------------------------------
   MOBILE MENU
----------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  max-width: 100vw;
  background: #181922;
  box-shadow: -4px 0 30px 0 rgba(36,32,21,0.13);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  z-index: 3000;
  padding: 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  align-self: flex-end;
  margin: 16px 16px 5px 0;
  transition: color 0.18s;
  border: none;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #b29a5d;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 32px 10px 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(250,234,166,0.07);
  transition: color 0.17s;
  letter-spacing: 0.01em;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #b29a5d;
  background: none;
}
@media (max-width: 430px) {
  .mobile-menu {
    width: 98vw;
    padding: 0;
  }
  .mobile-nav {
    padding: 20px 17px 10px 17px;
  }
}

/* -------------------------------------------
   MAIN & FOOTER
------------------------------------------- */
main {
  width: 100%;
  margin: 0 auto;
  padding-top: 36px;
  padding-bottom: 36px;
}
footer {
  background: #162032;
  color: #fff;
  padding: 36px 0 14px 0;
  border-top: 4px solid #b29a5d;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 7px;
  transition: color 0.21s, background 0.21s;
}
footer nav a:hover, footer nav a:focus {
  color: #b29a5d;
  background: rgba(178,154,93,0.07);
  text-decoration: none;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #F2EEE5;
  font-size: 0.98rem;
  margin-bottom: 9px;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #24272e
}
.contact-details img {
  height: 18px;
  width: auto;
  opacity: 0.82;
}
footer .contact-details {
  color: #F2EEE5;
  font-size: 0.98rem;
}
@media (max-width: 700px) {
  .contact-details {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.95rem;
    gap: 11px;
  }
  footer nav {
    flex-direction: column;
    gap: 8px;
  }
}

/* ------------------------------------
   BUTTONS & CTA
--------------------------------------- */
.cta-btn {
  display: inline-block;
  background: #b29a5d;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  padding: 13px 35px;
  margin: 20px 0;
  box-shadow: 0 3px 16px 0 rgba(36,32,21,0.06);
  transition: background 0.20s, box-shadow 0.20s, color 0.20s;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.02em;
}
.cta-btn:after {
  content: '';
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(-45deg);
  transition: border-color 0.18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #a8955c;
  color: #fff6db;
  box-shadow: 0 10px 38px 0 rgba(177,164,109,0.13);
}
.cta-btn:hover:after {
  border-color: #fff6db;
}

/* -------------------------------------------
   LISTS & DETAILS FOR LUXURY STYLE
------------------------------------------- */
ul {
  margin-bottom: 10px;
}
ul li::marker {
  color: #b29a5d;
}
ul li {
  padding-left: 2px;
  font-size: 1.02rem;
}
div > ul {
  margin-bottom: 23px;
}

/* -------------------------------------
   CONTACT INFO SNIPPETS
------------------------------------- */
.contact-info-snippet {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 17px 0 2px 0;
}
.contact-info-snippet div {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f7f6f3;
  border-radius: 13px;
  padding: 8px 13px;
  color: #161813;
  font-size: 1.03rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.contact-info-snippet img {
  height: 19px;
}
@media (max-width: 600px) {
  .contact-info-snippet {
    flex-direction: column;
    gap: 8px;
  }
  .contact-info-snippet div {
    font-size: 0.97rem;
    padding: 7px 8px;
  }
}

/* ---------------------------------------
   TEXT-SECTION (for longer body texts)
--------------------------------------- */
.text-section {
  margin-bottom: 16px;
}
.text-section h3 {
  margin-bottom: 7px;
  margin-top: 22px;
}
.text-section p {
  margin-bottom: 10px;
  font-size: 1.03rem;
  color: #21222a;
}

/* -------------------------------------
   MAP SNIPPET
------------------------------------- */
.map-snippet {
  margin-top: 9px;
  margin-bottom: 18px;
  padding: 14px 17px;
  border-radius: 9px;
  background: #F2EEE5;
  color: #162032;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
}
.map-snippet strong {
  font-weight: 700;
}

/* -------------------------------------
   STAR ICON ROWS
------------------------------------- */
.content-wrapper > div > img[alt^="5 Sterne"],
.content-wrapper > div > img[alt^="Premium Fahrzeuge"] {
  height: 26px;
  margin-right: 4px;
  display: inline-block;
}

/* -------------------------------------
   PREMIUM/ELEGANT CARD & FEATURE BLOCKS
------------------------------------- */
.feature-grid > div {
  background: #fff;
  border-radius: 13px;
  padding: 20px 16px 14px 16px;
  box-shadow: 0 2px 15px 0 rgba(177,164,109,0.08);
  border-top: 3px solid #b29a5d;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 195px;
  transition: box-shadow 0.19s;
}
.feature-grid > div:hover {
  box-shadow: 0 7px 32px 0 rgba(177,164,109,0.14);
  cursor: pointer;
}
.feature-grid img {
  height: 32px;
  width: 32px;
  margin-bottom: 12px;
}
.feature-grid h3 {
  font-size: 1.07rem;
  margin-bottom: 8px;
  color: #1e2432;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-grid p {
  color: #222326;
  font-size: 0.99rem;
}
@media (max-width: 900px) {
  .feature-grid > div {
    flex: 1 1 160px;
    min-width: 120px;
    padding: 14px 10px 9px 10px;
    font-size: 0.99rem;
  }
}

/* ------------------------------------------
   MODAL & OVERLAY for Cookie Settings
------------------------------------------ */
#cookie-banner,
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #ffffff;
  border-top: 2px solid #b29a5d;
  box-shadow: 0 -5px 30px 0 rgba(36,32,21,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5500;
  padding: 20px 8vw 20px 8vw;
  gap: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #162032;
  animation: fadeInBanner 0.7s;
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0);   }
}
#cookie-banner p, .cookie-consent-banner p {
  flex: 2;
  margin: 0;
}
#cookie-banner .cookie-btns,
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.cookie-btn, .cookie-settings-btn {
  display: inline-block;
  background: #fff;
  color: #162032;
  border: 1.5px solid #b29a5d;
  border-radius: 12px;
  padding: 10px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 0;
  min-width: 110px;
  transition: background 0.19s, color 0.19s, border 0.19s, box-shadow 0.19s;
  box-shadow: 0 2px 8px rgba(178,154,93,0.02);
  cursor: pointer;
}
.cookie-btn.accept {
  background: #b29a5d;
  color: #fff;
  border-color: #b29a5d;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #a3905a;
  color: #fff4d6;
}
.cookie-btn.reject {
  background: #fff;
  color: #b29a5d;
  border: 1.5px solid #b29a5d;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F2EEE5;
  color: #a3905a;
  border-color: #a3905a;
}
.cookie-settings-btn {
  background: #F2EEE5;
  color: #162032;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #e6e0cc;
  color: #b29a5d;
}

@media (max-width: 850px) {
  #cookie-banner, .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 4vw 16px 4vw;
  }
  #cookie-banner .cookie-btns, .cookie-consent-banner .cookie-btns {
    justify-content: flex-start;
    gap: 11px;
  }
}
@media (max-width: 510px) {
  #cookie-banner, .cookie-consent-banner {
    padding: 14px 3vw 14px 3vw;
    font-size: 0.97rem;
  }
  .cookie-btn, .cookie-settings-btn {
    font-size: 0.95rem;
    padding: 9px 12px;
    min-width: 90px;
  }
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 9999;
  background: rgba(22,32,50,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.28s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #162032;
  border-radius: 26px;
  box-shadow: 0 12px 46px 0 rgba(36,32,21,0.20);
  max-width: 420px;
  width: 94vw;
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  color: #162032;
  margin-bottom: 7px;
}
.cookie-settings-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 9px 0 12px 0;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-toggle label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #181922;
}
.cookie-toggle input[type="checkbox"] {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #D4D0C7;
  border-radius: 13px;
  position: relative;
  outline: none;
  transition: background 0.2s;
  vertical-align: middle;
}
.cookie-toggle input[type="checkbox"]:checked {
  background: #b29a5d;
}
.cookie-toggle input[type="checkbox"]:before {
  content: "";
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 2px 5px rgba(36,32,21,0.10);
  transition: transform 0.22s;
}
.cookie-toggle input[type="checkbox"]:checked:before {
  transform: translateX(15px);
}
.cookie-modal .btn-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 11px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 1.8rem;
  color: #b29a5d;
  background: none;
  border: none;
  border-radius: 50%;
  line-height: 1;
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
  z-index: 10001;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f5ecee;
  color: #8c7732;
}
.cookie-modal p, .cookie-modal label {
  font-size: 1.01rem;
}
@media (max-width: 500px) {
  .cookie-modal {
    max-width: 96vw;
    padding: 20px 8px 14px 8px;
  }
  .cookie-modal h2 {
    font-size: 1.1rem;
  }
}

/* -------------------
   MICRO INTERACTIONS
-------------------- */
:focus {
  outline: 2px dashed #b29a5d;
  outline-offset: 2px;
}
.cta-btn:active,
.cookie-btn:active,
.cookie-settings-btn:active {
  transform: scale(0.97);
}

/* Subtle content fade in */
.section, .card, .testimonial-card, .content-wrapper {
  animation: fadeInPage 0.75s;
}
@keyframes fadeInPage {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------
   CUSTOM SCROLLBAR FOR PREMIUM FEEL
-------------------------------------- */
::-webkit-scrollbar {
  width: 13px;
  background: #F2EEE5;
}
::-webkit-scrollbar-thumb {
  background: #a69f94;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b29a5d;
}

/* -------------------------------
   Responsive Typography
------------------------------- */
@media (max-width: 900px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.14rem; }
  h3 { font-size: 0.98rem; }
}
@media (max-width: 570px) {
  h1 { font-size: 1.26rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: 0.92rem; }
  p, li, .content-wrapper, .section {
    font-size: 0.98rem;
  }
}

/* --------------------------------
   Accessibility for Color Contrast
--------------------------------- */
.testimonial-card, .testimonial-card p, .testimonial-card strong {
  color: #181922;
  background: #F2EEE5;
}

/* ------------------
   Z-INDEX LAYERING
------------------- */
header { z-index: 1800; }
.mobile-menu { z-index: 3000; }
#cookie-banner, .cookie-consent-banner { z-index: 5500; }
.cookie-modal-overlay { z-index: 9999; }

/* ----------------------
   Extra Spacing Rules
---------------------- */
.card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
}
.section > *, .container > *, .content-wrapper > * {
  margin-bottom: 20px;
}
.section > *:last-child, .container > *:last-child, .content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* Avoid overlapping of flex-items */
.card-container > *, .feature-grid > *, .content-grid > * {
  margin-bottom: 0;
}

/* --------------
   PRINT STYLES
--------------- */
@media print {
  header, footer, #cookie-banner, .cookie-consent-banner, .mobile-menu { display: none !important; }
  main { padding: 0; }
}
