/* VINTAGE RETRO CSS for Bühnenmut */
/* RESET & BASELINE -------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
}
.content-wrapper img {
  width: 50px;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  background: #FEFAF6;
  min-height: 100vh;
  line-height: 1.7;
  font-size: 1rem;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #1A3666; /* primary */
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #F9C846;
  outline-offset: 2px;
}
strong {
  font-weight: 700;
}
/* TYPOGRAPHY -------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #1A3666;
  font-weight: 900;
  letter-spacing: 0.025em;
  margin-bottom: 0.5em;
}
h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
p, ul, ol {
  margin-bottom: 1em;
  font-size: 1rem;
}
ul, ol {
  padding-left: 1.1em;
  list-style: disc outside;
}
li {
  margin-bottom: 0.4em;
}
blockquote {
  border-left: 5px solid #F9C846;
  background: #fbf6ef;
  padding: 18px 24px;
  margin: 0 0 24px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}

/* VINTAGE RETRO PALETTE & THEMING ----------------------- */
:root {
  --primary: #1A3666;
  --secondary: #FEFAF6;
  --accent: #F9C846;
  --vintage-brown: #80543f;
  --vintage-red: #ea5d49;
  --vintage-green: #6C8A5B;
  --vintage-blue: #5186b6;
  --vintage-orange: #F9A846;
  --white: #fcf9f5;
  --border-radius: 18px;
  --shadow: 0 4px 16px rgba(40,29,24,0.10), 0 1.5px 4px rgba(40,29,24,0.08);
}

/* LAYOUT CONTAINERS & SPACING --------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #FEFAF6;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  padding: 24px;
  transition: box-shadow 0.2s, background 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(40,29,24,0.15);
  background: #fffbe9;
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fffbe9;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 3px dashed var(--accent);
}
.testimonial-meta {
  color: #80543f;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Utility */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.gap-2 { gap: 16px; }

/* RETRO VINTAGE INSPIRED --------------------------------- */
.hero {
  background: repeating-linear-gradient(-45deg,#F9C846 0 10px,#FEFAF6 10px 20px);
  border-bottom: 4px solid var(--primary);
  padding: 64px 0 56px 0;
  margin-bottom: 60px;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.03em;
  text-shadow: 2px 1.5px 0 #F9A846, 0px 4px 14px #fff2c6;
}
.hero p {
  font-size: 1.15rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #80543f;
}
.about {
  background: #F9A84610;
  border-left: 6px solid var(--vintage-brown);
}
.features {
  background: #F9C84618;
  border-radius: var(--border-radius);
}
.cta-section {
  background: linear-gradient(90deg, #FEFAF6 75%, #F9C846 100%);
  border-radius: var(--border-radius);
  margin-bottom: 60px;
  padding: 40px 20px !important;
  box-shadow: 0 4px 16px rgba(40,29,24,0.04);
}
.cta-section h2 {
  color: var(--primary);
}
.cta-section a.cta-primary {
  margin-top: 16px;
}
.legal {
  background: #fffbe9;
  border-left: 4px solid var(--primary);
  border-radius: var(--border-radius);
  margin: 32px 0 60px 0;
  box-shadow: var(--shadow);
  padding: 40px 20px;
}
/* Feature/Service Grids ---------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  flex: 1 1 240px;
  background: #FFF8E1;
  border-radius: var(--border-radius);
  border: 2px solid #F9C84670;
  box-shadow: 0 1.5px 6px rgba(40,29,24,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 22px;
  transition: box-shadow 0.18s,transform 0.16s;
  min-width: 210px;
}
.feature img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  filter: contrast(1.08) grayscale(0.14) drop-shadow(0 1px 0 #fffbe9);
}
.feature:hover {
  box-shadow: 0 4px 20px #F9C84635;
  background: #F9C84620;
  transform: translateY(-6px) scale(1.03);
}
.service-item {
  background: #FFF8E1;
  border-left: 5px solid #ea5d49;
  border-radius: var(--border-radius);
  padding: 22px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px #ea5d4920;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
}
.service-item h3 {
  color: #ea5d49;
  font-size: 1.12rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.service-item span {
  color: #1A3666;
  font-size: 1rem;
  background: #F9A84620;
  padding: 1px 8px;
  border-radius: 10px;
  font-family: 'Montserrat',Arial,sans-serif;
  margin-left: 6px;
}
.course-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
/* Footer ------------------------------------------- */
footer {
  background: #f5e3c6;
  border-top: 4px solid var(--primary);
  padding: 36px 0 16px 0;
  font-size: 1rem;
  color: #80543f;
}
footer .container {
  padding-bottom: 0;
}
footer .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #1A3666;
  text-decoration: underline;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #F9A846;
}
.contact-info,
.social-links {
  font-size: 0.98rem;
  color: #80543f;
}
.social-links {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}
.social-links a img {
  filter: grayscale(0.2) brightness(0.95);
  transition: filter 0.2s;
  width: 28px; height: 28px;
}
.social-links a:hover img {
  filter: brightness(1) sepia(1) hue-rotate(10deg) saturate(2);
}

/* BUTTONS & CTAs ------------------------------------ */
.cta-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 16px 38px;
  border-radius: 60px 28px 60px 28px / 38px 48px 38px 48px;
  box-shadow: 0 2.5px 20px #1A366620,0 0.5px 2px #FEFAF644;
  border: 3px solid #F9C846;
  transition: background 0.22s, color 0.22s, box-shadow 0.20s, transform 0.12s;
  text-shadow: 1px 2px 11px #9c834c20;
  margin-top: 10px;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #F9C846;
  color: #1A3666;
  box-shadow: 0 4px 48px 0 #f9c84680;
  transform: translateY(-1px) scale(1.04);
}
.cta-secondary {
  display: inline-block;
  background: #fffbe9;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 32px;
  border: 2px solid var(--primary);
  box-shadow: 0 2px 10px #F9C84622;
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--primary);
  color: var(--accent);
}
button, .button {
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}

/* MAIN NAVIGATION & HEADER -------------------------- */
header {
  background: var(--primary);
  position: relative;
  width: 100%;
  z-index: 100;
  box-shadow: 0 1.5px 10px #f9c84632;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
  padding: 12px 20px;
  font-family: 'Montserrat',Arial, sans-serif;
  background: var(--primary);
}
.main-nav a {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-right: 6px;
  padding: 6px 0;
  border-bottom: 2.5px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.main-nav a.cta-primary {
  margin-left: auto;
  background: #F9A846;
  color: #1A3666;
  border-radius: 28px;
  padding: 10px 24px;
  font-weight: 700;
  border: 2px solid #1A3666;
  box-shadow: 0 2px 6px #F9C84644;
  text-shadow: none;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: #FFF8E1;
  color: #1A3666;
  border-color: #F9C846;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fffbe9;
  border-color: #F9A846;
}
.main-nav img {
  width: 52px;
  height: auto;
  margin-right: 15px;
  display: inline-block;
}

/* MOBILE BURGER MENU ------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  font-size: 2.3rem;
  border-radius: 18px;
  box-shadow: 0 2px 8px #F9C84651;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  top: 16px;
  right: 20px;
  position: absolute;
  z-index: 502;
  border: 3px solid #1A3666;
  transition: background 0.2s, color 0.2s, box-shadow 0.17s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #1A3666;
  color: #F9C846;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F9C846ee;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.66,0,0.29,1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  box-shadow: 0 0 50px #2229;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  color: #1A3666;
  font-size: 2.4rem;
  position: absolute;
  top: 16px;
  right: 28px;
  z-index: 10111;
  border: 3px solid #1A3666;
  border-radius: 18px;
  width: 48px; height: 48px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #1A3666;
  color: #F9C846;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 92px 36px 32px 36px;
  font-size: 1.25rem;
  width: 100%;
}
.mobile-nav a {
  color: #1A3666;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  padding: 12px 0;
  border-radius: 8px;
  background: #f7eac9;
  box-shadow: 0 1.5px 7px #80543f12;
  text-align: left;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #1A3666;
  color: #F9A846;
}

/* COOKIE CONSENT BANNER ---------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 9000;
  background: #fffbe9;
  color: #1A3666;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 -4px 22px #1A366640;
  border-top: 5px solid #F9C846;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 20px 28px 16px 28px;
  animation: banner-in 0.33s cubic-bezier(0.68,0,0.32,1);
}
@keyframes banner-in {
  from { transform: translateY(50px); opacity:0; }
  to { transform: translateY(0px); opacity:1; }
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  border-radius: 21px;
  font-size: 1rem;
  padding: 10px 18px;
  border: 2px solid #1A3666;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #F9C846;
  color: #1A3666;
  margin-top: 2px;
  transition: background 0.19s, color 0.16s, border 0.15s;
}
.cookie-banner .cookie-btn.accept {
  background: #1A3666;
  color: #fffbe9;
  border-color: #F9C846;
}
.cookie-banner .cookie-btn.reject {
  background: #ea5d49;
  color: #fffbe9;
  border-color: #b13e3e;
}
.cookie-banner .cookie-btn.settings {
  background: #F9C846;
  color: #1A3666;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #FEFAF6;
  color: #1A3666;
  border-color: #F9C846;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 8vh;
  transform: translateX(-50%) scale(0.98);
  z-index: 9999;
  background: #fffbe9;
  max-width: 96vw;
  width: 440px;
  padding: 28px 32px 18px 32px;
  border: 3.5px solid #F9C846;
  border-radius: 28px;
  box-shadow: 0 6px 44px #1A366630;
  animation: modal-in 0.28s cubic-bezier(0.66,0,0.29,1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #1A3666;
}
@keyframes modal-in {
  from { transform: translateX(-50%) scale(0.7); opacity: 0; }
  to { transform: translateX(-50%) scale(0.98); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 6px;
  color: #1A3666;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #F9C846;
  border-radius: 14px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .cookie-toggle:checked {
  background: #1A3666;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fffbe9;
  border-radius: 50%;
  box-shadow: 0 2px 7px #1A366630;
  transition: left 0.14s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 21px;
}
.cookie-modal .cookie-option.essential .cookie-toggle {
  background: #CFCDCA !important;
  cursor: not-allowed;
  pointer-events: none;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  padding: 8px 16px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 10px; right: 14px;
  font-size: 1.9rem;
  background: transparent;
  border: none;
  color: #1A3666;
  border-radius: 50%;
  padding: 0 6px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  background: #F9C846;
  color: #fffbe9;
}
.overlay {
  position: fixed;
  inset: 0;
  background: #1a36667c;
  z-index: 9998;
  animation: overlay-in 0.18s;
}
@keyframes overlay-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* PAGE SPECIFIC - FAQ, CONFIRMATION, ETC ------------- */
.contact-email {
  font-size: 1.15rem;
  color: #1A3666;
  font-weight: 600;
}
.contact-email a {
  color: #ea5d49;
  text-decoration: underline;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
}
.faq {
  background: #FFF8E1;
  border-left: 5px dashed #F9A846;
  border-radius: var(--border-radius);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.confirmation {
  background: #F9C84618;
  border-bottom: 7px solid #ea5d49;
  border-radius: var(--border-radius);
  margin-top: 40px;
  margin-bottom: 60px;
  box-shadow: 0 2.5px 12px #ea5d4930;
  padding: 60px 20px;
  text-align: center;
}
.confirmation h1 {
  color: #1A3666;
  font-size: 2rem;
}
.confirmation a.cta-primary {
  margin: 24px auto 0 auto;
}

/* RESPONSIVE DESIGN - MOBILE FIRST ------------------- */
@media (max-width: 1080px) {
  .container { max-width: 96vw; }
  .main-nav {
    gap: 14px;
    font-size: 0.96rem;
    padding: 12px 8px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 99vw; padding: 0 8px; }
  .content-wrapper, .feature-grid { gap: 16px; }
  .footer-nav { flex-direction: column; }
  footer .content-wrapper { gap: 14px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 16px;
    z-index: 10502;
  }
  .hero {
    padding: 32px 0 28px 0;
    margin-bottom: 30px;
  }
  .section, .features, .about, .cta-section, .faq, .legal {
    padding: 24px 8px;
    margin-bottom: 38px;
  }
  .footer-nav {
    gap: 8px;
    font-size: 0.9rem;
  }
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 0 8px 0;
  }
  .testimonial-card {
    gap: 10px;
    padding: 14px;
    font-size: 0.98rem;
  }
  .feature-grid {
    gap: 14px;
  }
  .feature {
    min-width: 150px;
    padding: 15px 10px;
  }
  .course-list { gap: 10px; }
  .service-item {
    padding: 14px 8px;
    margin-bottom: 12px;
  }
  .mobile-menu .mobile-nav { padding: 72px 8vw 22px 8vw; }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 8px 11px 8px;
    font-size: 0.99rem;
  }
  .cookie-banner .cookie-banner-buttons {
    gap: 8px;
    flex-direction: column;
    width: 100%;
  }
  .cookie-modal {
    padding: 22px 6vw 12px 6vw;
    width: 98vw;
    min-width: unset;
  }
  .confirmation {
    padding: 32px 8px;
  }
}
@media (max-width: 520px) {
  html { font-size: 14px; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  .feature img { width: 34px; height: 34px;} 
}

/* VISUAL HIERARCHY & EFFECTS ------------------------ */
.card, .testimonial-card, .feature, .service-item, .section, .cta-section, .legal, .faq, .about {
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
}
h1, h2 {
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
/* Retro dotted border example for highlights */
.feature-grid .feature:nth-child(odd) {
  border-style: dotted;
}
.feature-grid .feature:nth-child(even) {
  border-style: dashed;
}
/* Decorative pseudo for retro pattern on feature cards */
.feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(90deg,#fea059 0 9px,#FFF8E1 9px 18px);
  border-radius: 8px 8px 0 0;
  opacity: 0.23;
}
.feature {
  position: relative;
  overflow: hidden;
}

/* LISTS RETRO CHECKS -------------------------------- */
ul li::marker, ol li::marker {
  color: #ea5d49;
  font-size: 1.15em;
  font-family: 'Montserrat',sans-serif;
}

/* MICRO-INTERACTIONS ------------------------------- */
a, .button, button, .cta-primary, .cta-secondary, .cookie-btn {
  transition: color 0.17s, background 0.17s, border 0.14s, box-shadow 0.18s;
}

/* ACCESSIBILITY - FOCUS INDICATORS ------------------ */
a:focus-visible, .cta-primary:focus-visible, .cta-secondary:focus-visible, button:focus-visible, .cookie-btn:focus-visible {
  outline: 3px dashed #F9C846;
  outline-offset: 2px;
}

/* ENSURE NO OVERLAPS ------------------------------- */
.card, .feature, .testimonial-card, .service-item, .section, .about, .cta-section, .faq, .team, .confirmation, .legal {
  margin-bottom: 20px;
  margin-top: 0;
}

/* FIXES FOR HTML STRUCTURE -------------------------- */
/* ensures spacing between .content-wrapper children */
.content-wrapper > * + * { margin-top: 0; }
.features .content-wrapper, .about .content-wrapper, .services .content-wrapper, .testimonials .content-wrapper, .team .content-wrapper {
  gap: 20px;
}
.features ul, .about ul, .services ul, .testimonials ul { margin-top: 10px; margin-bottom: 10px; }

/* PRINT -------------------------------------------- */
@media print {
  header, nav, .mobile-menu, .cookie-banner, .cookie-modal, footer { display: none !important; }
  .section, .hero, .features, .faq, .about, .cta-section, .legal {
    background: #fff !important;
    box-shadow: none !important;
    border: none !important;
  }
  .container { max-width: 98vw !important; padding: 0 !important; }
}
/* END */
