/* ================== CSS RESET & NORMALIZE ================== */
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FBF7EF;
  color: #2C2323;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
:focus {
  outline: 2px dashed #388CA4;
  outline-offset: 2px;
}

/* ================== ROOT & TYPOGRAPHY ================== */
:root {
  --primary: #183052;
  --secondary: #388CA4;
  --accent: #F0ECDF;
  --vintage-orange: #E29743;
  --vintage-yellow: #FFF6B0;
  --retro-green: #6C845C;
  --vintage-brown: #836550;
  --vintage-red: #C75C55;
  --vintage-blue: #4682A9;
  --body-bg: #FBF7EF;
  --border-radius-lg: 18px;
  --border-radius-md: 10px;
  --border-radius-sm: 6px;
  --shadow-vintage: 0 6px 22px 0 rgba(61,37,4,0.06), 0 2px 8px rgba(140,94,37,0.10);
  --font-display: 'Montserrat', 'Arial Black', 'Impact', Arial, sans-serif;
  --font-body: 'Roboto', 'Fira Sans', Arial, sans-serif;
}
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  background: var(--body-bg);
  font-family: var(--font-body);
  font-size: 16px;
  color: #2C2323;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.01em;
  margin-bottom: 0.5em;
  line-height: 1.15;
}
h1 { font-size: 2.6rem; color: var(--vintage-orange); text-shadow: 1px 2px 0 #FFF6B0, 2px 4px 0 #836550; }
h2 { font-size: 2rem; color: var(--primary); border-bottom: 3px solid var(--vintage-orange); display: inline-block; padding-bottom: 4px; margin-bottom: 1em; }
h3 { font-size: 1.35rem; color: var(--secondary); }

strong, b { color: var(--vintage-red); font-weight: 700; }
p, li, cite, address { font-size: 1rem; line-height: 1.8; }
p.subheadline { color: var(--vintage-brown); font-size: 1.185rem; font-family: var(--font-display); font-style: italic; margin-top: 1em; margin-bottom: 1.2em; }
cite { font-style: italic; color: var(--retro-green); }

/* Retro underline-squiggle for links */
a:hover, .footer-nav a:hover, .mobile-nav a:hover {
  color: var(--vintage-orange);
  background: none;
  position: relative;
}
a:hover::after, .footer-nav a:hover::after, .mobile-nav a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.1em;
  height: 3px;
  background: repeating-linear-gradient(90deg,var(--vintage-orange),var(--vintage-orange) 40%,var(--vintage-yellow) 60%,var(--vintage-yellow) 80%,var(--vintage-orange) 100%);
  border-radius: 2px;
}

/* ================== CONTAINERS & GLOBAL LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 768px) {
  .content-wrapper {
    gap: 36px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF6B0;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-vintage);
  position: relative;
}

/* =================== HEADER & NAVIGATION =================== */
header {
  background: var(--primary);
  color: #fff;
  position: relative;
  box-shadow: 0 6px 23px -6px rgba(61,37,4,0.13);
  z-index: 100;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 15px;
  padding-bottom: 15px;
}
header img {
  height: 46px;
  width: auto;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
nav a {
  font-family: var(--font-display);
  font-size: 1.07rem;
  color: #fff;
  border-radius: var(--border-radius-sm);
  padding: 5px 12px;
  letter-spacing: 0.04em;
  transition: background 0.18s, color 0.13s;
  position: relative;
}
nav a.active, nav a:focus, nav a:hover {
  background: var(--vintage-orange);
  color: var(--primary);
}

.cta.primary {
  font-family: var(--font-display);
  background: var(--vintage-orange);
  color: var(--primary);
  border: none;
  outline: none;
  border-radius: 999px;
  font-weight: bold;
  padding: 10px 34px;
  margin-left: 16px;
  font-size: 1.08rem;
  box-shadow: 0 3px 7px 1px #e2974341;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-shadow: 1px 1.5px #fff3;
  transition: background 0.21s, transform 0.18s;
  position: relative;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--retro-green);
  color: var(--vintage-yellow);
  transform: translateY(-1px) scale(1.04) rotate(-2deg);
}

/* ============= MOBILE BURGER MENU ================ */
.mobile-menu-toggle {
  display: inline-block;
  z-index: 202;
  background: var(--vintage-yellow);
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  border-radius: 9px;
  padding: 5px 16px 7px 16px;
  margin-left: 8px;
  box-shadow: 0 3px 8px 0 #e2974333;
  cursor: pointer;
  transition: background 0.21s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--vintage-orange);
  color: var(--primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  background: var(--accent);
  color: var(--primary);
  top: 0; right: 0;
  height: 100vh; width: 90vw;
  max-width: 370px;
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.46s cubic-bezier(.56,-0.27,.74,1.58);
  box-shadow: -6px 0 30px 2px rgba(61,37,4,0.09);
  padding: 22px 24px 22px 26px;
  gap: 24px;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  animation: mobileSlideIn 0.63s cubic-bezier(.25,1.41,.45,1.01);
}
@keyframes mobileSlideIn {
  0% { transform: translateX(100%); }
  60% { transform: translateX(-6%); }
  90% { transform: translateX(3%); }
  100% { transform: translateX(0); }
}
.mobile-menu-close {
  margin-bottom: 22px;
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--vintage-red);
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.84;
  transition: opacity 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  opacity: 1;
  color: var(--vintage-brown);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 8px 0 8px 12px;
  border-left: 6px solid #FFF6B0;
  border-radius: 0 7px 7px 0;
  background: none;
  margin-right: 14px;
  transition: border-color 0.18s, background 0.12s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  border-color: var(--vintage-orange);
  background: var(--vintage-yellow);
  color: var(--primary);
}

/* Hide desktop nav/buttons on mobile */
@media (max-width: 980px) {
  nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
}
/* Hide mobile menu toggle on large screens */
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ================== HERO SECTIONS =================== */
.hero {
  background: linear-gradient(130deg, var(--accent) 70%, var(--vintage-yellow) 100%);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-vintage);
  margin-bottom: 48px;
  padding: 38px 0 50px 0;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.hero .content-wrapper {
  text-align: center;
  align-items: center;
  gap: 20px;
}
.hero h1 {
  font-size: 2.3rem;
  font-family: var(--font-display);
  margin-bottom: 0.1em;
}
@media (min-width: 600px) {
  .hero .content-wrapper h1 {
    font-size: 2.9rem;
  }
}
/* Subheadline styling for retro flair */
.hero .subheadline {
  color: var(--vintage-brown);
  font-style: italic;
  font-family: var(--font-display);
  margin-bottom: 1.1em;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 0 var(--vintage-yellow), 1px 1.5px #fff9c6;
}

/* ================== FLEXBOX-PATTERN SECTIONS =============== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-vintage);
  border-radius: var(--border-radius-md);
  background: #fff6b0;
  padding: 24px;
}
.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;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 3px 16px 0 #83655022;
  margin-bottom: 20px;
  border-left: 12px solid var(--vintage-orange);
  font-family: var(--font-body);
  color: #271f16;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F0ECDF;
  border-radius: var(--border-radius-md);
  padding: 18px 22px;
  margin-bottom: 18px;
  box-shadow: 0 2px 7px 1px #e2974340;
}

/* Feature-grid specials (/ main nav sections) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 26px;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: var(--border-radius-lg);
  min-width: 185px;
  max-width: 295px;
  flex: 1 1 180px;
  box-shadow: var(--shadow-vintage);
  padding: 32px 18px 28px 18px;
  border: 4px double var(--accent);
  transition: box-shadow 0.22s, transform 0.18s;
}
.feature-grid li:hover, .feature-grid li:focus {
  box-shadow: 0 8px 30px 4px #e2974396;
  transform: translateY(-5px) scale(1.024) rotate(-1deg);
}
.feature-grid img {
  width: 56px; height: 56px; margin-bottom: 4px;
  filter: drop-shadow(1px 2px 0 var(--vintage-yellow));
}
.feature-grid h3 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.19rem;
  margin-bottom: 4px;
  margin-top: 0.6em;
}
.feature-grid p {
  color: var(--vintage-brown);
  text-align: center;
  font-size: 1.04rem;
}

/* =================== TEXT/CARD SECTIONS =================== */
.text-section {
  background: #fff;
  border-radius: var(--border-radius-md);
  box-shadow: 0 1.5px 7px .5px #83655011;
  padding: 22px 24px;
  font-size: 1.05rem;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.text-section ul {
  margin-left: 1.2em;
  margin-top: 0.7em;
  margin-bottom: 0.8em;
}
.text-section ul li {
  list-style: disc inside;
  margin-bottom: 6px;
  font-size: 1.01rem;
}
.text-section strong {
  color: var(--vintage-red);
  font-weight: 900;
}

/* ==================== TESTIMONIALS ====================== */
.testimonial-card {
  background: #fff;
  color: #281D14;
  border-left: 10px solid var(--vintage-orange);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 3px 25px 0 #18305223;
  font-style: italic;
  position: relative;
  margin-right: 0;
  transition: box-shadow 0.2s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 38px 6px #e2974378;
  transform: scale(1.035) rotate(-1deg);
}
.testimonial-card p {
  font-size: 1.09rem;
}
.testimonial-card cite {
  font-style: normal;
  color: var(--retro-green);
  font-size: 1rem;
  font-family: var(--font-display);
  margin-left: 18px;
  letter-spacing: 0.01em;
}

/* =================== FOOTER =================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 42px 0 22px 0;
  font-size: 1rem;
  border-top: 8px solid var(--vintage-orange);
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
footer .brand-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  max-width: 320px;
}
footer .brand-summary img {
  max-width: 56px;
  margin-bottom: 5px;
  filter: drop-shadow(1px 2px 0 var(--vintage-yellow));
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-display);
  padding: 5px 0;
  letter-spacing: 0.01em;
  border-radius: var(--border-radius-sm);
  transition: background 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--vintage-yellow);
  color: var(--primary);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 285px;
}
.contact-info img {
  width: 20px; height: 20px; margin-right: 6px; vertical-align: middle;
  filter: drop-shadow(0 1px 0 var(--vintage-yellow));
}
.contact-info p {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.98rem;
  margin-bottom: 2px;
}

/* =================== COOKIE CONSENT BANNER & MODAL =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2100;
  background: #F7EACB;
  color: var(--primary);
  box-shadow: 0 -2px 20px 0 #b08b613a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 23px 14px;
  font-size: 1rem;
  font-family: var(--font-body);
  border-top: 5px solid var(--vintage-orange);
  animation: appearUp .7s cubic-bezier(.3,1.54,.56,1.07);
}
@keyframes appearUp { 0%{ transform: translateY(180px); opacity:0;}  100%{ transform: translateY(0); opacity:1;}}
.cookie-banner .cookie-banner-text { max-width: 70vw; }
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn, .cookie-btn-settings {
  font-family: var(--font-display);
  border: none;
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  padding: 8px 22px;
  margin-left: 0;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1.5px 7px #83655022;
  transition: background 0.16s, color 0.19s, transform 0.13s;
}
.cookie-btn.accept {
  background: var(--vintage-orange);
  color: var(--primary);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--vintage-red);
  border: 2px solid var(--vintage-red);
}
.cookie-btn-settings {
  background: var(--primary);
  color: #fff2c4;
  border: none;
  padding: 7px 18px;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: var(--secondary);
  color: #fff2c4;
  transform: translateY(-1px) scale(1.04) rotate(-2deg);
}

/* COOKIE MODAL (centered) */
.cookie-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  z-index: 2110;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #2C232399;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.27s;
}
.cookie-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  animation: modalShow 0.44s cubic-bezier(.36,1.44,.66,1.02);
}
@keyframes modalShow { 0%{ opacity:0; transform: scale(0.89);}  100%{ opacity:1; transform: scale(1);} }

.cookie-modal-content {
  background: #FFF6B0;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 64px 0 #83655022;
  padding: 36px 32px 28px 32px;
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.cookie-categories {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.06rem;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-category-row label {
  font-weight: 700;
  color: var(--primary);
}
.cookie-category-row input[type=checkbox]:disabled {
  accent-color: var(--vintage-red);
}
.cookie-category-row input[type=checkbox] {
  accent-color: var(--primary);
  width: 21px; height: 21px;
}
.cookie-modal-actions {
  width: 100%;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 23px; right: 41px;
  background: none !important;
  border: none;
  color: var(--vintage-red);
  font-size: 2.2rem;
  opacity: .81;
  cursor: pointer;
  transition: opacity 0.13s;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  opacity: 1;
  color: var(--vintage-brown);
}


/* ================== RESPONSIVE DESIGN ================== */
@media (max-width: 1160px) {
  .feature-grid li {
    max-width: 240px;
  }
  .footer-nav {
    min-width: 120px;
  }
}
@media (max-width: 980px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 19px;
  }
}
@media (max-width: 820px) {
  .feature-grid {
    flex-direction: column;
    align-items: center;
  }
  .footer-nav, .contact-info, .brand-summary {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  h1.hero, .hero h1 { font-size: 2.15rem; }
  .section {
    padding: 24px 9px;
    margin-bottom: 35px;
  }
  .feature-grid { gap: 16px; }
  .text-section {
    padding: 13px 8px;
    font-size: .99rem;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .feature-grid li {
    margin-right: 0;
    padding: 18px 3px 18px 3px;
    min-width: 95vw;
    max-width: 98vw;
  }
  .mobile-menu {
    width: 98vw;
    max-width: 420px;
    padding: 17px 7px 32px 16px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    font-size: .95rem;
    padding: 14px 7px;
    text-align: left;
  }
}
@media (max-width: 540px) {
  h1, .hero h1 { font-size: 1.3rem; }
  h2 { font-size: 1.15rem; }
  .footer-nav { gap: 5px;}
  .content-wrapper { gap: 10px; }
  .card { padding: 12px; }
  .cookie-modal-content { padding: 17px 8px 13px 8px; }
  .cookieModal-close { top: 7px; right: 7px;}
}

/* ================== RETRO & VINTAGE ACCENTS =============== */
.section {
  border: 4px double var(--vintage-orange);
  box-shadow: 0 2px 18px 0 #83655017, 0 8px 56px -10px #E2974325;
  background: linear-gradient(111deg,#fff6b0 82%,#f0ecdf 110%);
}
.feature-grid li, .testimonial-card, .card {
  outline: 2.3px dashed #E29743f0;
  background: repeating-linear-gradient( 45deg,#fff7c8 0 10px, #fff6b0 10px 18px );
}
.testimonial-card {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.14rem;
  border-left: 14px solid var(--retro-green);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  color: var(--retro-green);
  font-size: 2.2rem;
  line-height: 1; left: -18px; top: 0; position: absolute; font-family: var(--font-display);
}
.testimonial-card cite {
  font-family: var(--font-display);
  color: var(--vintage-red);
  font-style: normal;
  font-size: 1.08em;
  margin-left: 13px;
}

/* Decorative retro dots to some sections */
.section::after {
  content:'';
  display: block;
  position: absolute;
  right: 24px; bottom: 14px;
  width: 41px;
  height: 14px;
  background: repeating-linear-gradient(90deg, var(--vintage-orange), var(--vintage-orange) 18%, var(--vintage-yellow) 20%, var(--vintage-yellow) 24%, transparent 24%, transparent 100%);
  opacity: 0.33;
  z-index: 0;
  pointer-events:none;
}

/* Add retro border for cards inside feature-grid */
.feature-grid li {
  border: 4px solid var(--primary);
  border-style: double;
}

/* ================== BUTTONS, FORMS, MICROINTERACTIONS =============== */
button, .cta, input[type="submit"] {
  font-family: var(--font-display);
  border: none;
  border-radius: var(--border-radius-md);
  font-weight: 700;
  cursor: pointer;
  background: var(--vintage-orange);
  color: var(--primary);
  box-shadow: 0 1.5px 7px #83655022;
  padding: 10px 24px;
  font-size: 1.06rem;
  transition: background 0.16s, color 0.14s, transform .17s;
}
button:hover, .cta:hover, input[type="submit"]:hover, button:focus {
  background: var(--vintage-brown);
  color: var(--vintage-yellow);
  transform: scale(1.04) translateY(-2px) rotate(-1deg);
}

/* =================== MISC FLUID FLEX LAYOUTS =================== */
.text-image-section {
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}
.content-grid, .card-container {
  gap: 20px;
  flex-wrap: wrap;
  display: flex;
}
.card {
  margin-bottom: 20px;
}

/* ================== UTILITIES ===================== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2em !important; }
.mb-2 { margin-bottom: 2em !important; }
.pt-1 { padding-top: 1em !important; }
.pb-1 { padding-bottom: 1em !important; }

/* ================== A11Y: Screen Readers Only =================== */
.sr-only {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0,0,0,0) !important; border: 0 !important;
}
