/* 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;
  font-size: 16px;
  min-height: 100vh;
  background: #F8F9FB;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  background: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}

/* VARIABLES */
:root {
  --color-primary: #164C1A;
  --color-secondary: #DBE2D5;
  --color-accent: #A87C4F;
  --color-electric: #2AFFD5;
  --color-pop1: #EB3D5A;
  --color-pop2: #FFD600;
  --color-bg: #F8F9FB;
  --color-card: #FFFFFF;
  --color-text: #1D1D1D;
  --color-alt-bg: #F2F6F4;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;

  --border-radius: 14px;
  --shadow-card: 0 6px 24px 0 rgba(40,56,80,0.09);
  --shadow-elevate: 0 2px 16px 0 rgba(20,40,60,0.10);
}

/* BODY & TYPOGRAPHY */
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  font-weight: 400;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-primary);
  margin-bottom: 18px;
  line-height: 1.12;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
.subheadline {
  color: var(--color-accent);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
p, li {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 9px;
}
strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 768px) {
  .section {
    padding: 30px 6px;
    margin-bottom: 34px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.24s cubic-bezier(.53,.13,.52,1.04) 0s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 8px 40px 0 rgba(40,56,80,0.17);
  transform: translateY(-6px) scale(1.025);
  z-index: 2;
}

.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;
    gap: 24px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 6px solid var(--color-electric);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  min-width: 0;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #111;
  font-style: italic;
  font-size: 1.11rem;
}
.testimonial-card span {
  font-size: 0.945em;
  color: var(--color-primary);
  font-weight: 700;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER NAVIGATION */
header {
  width: 100%;
  background: #fff;
  border-bottom: 2px solid var(--color-secondary);
  box-shadow: 0 3px 16px 0 rgba(22,76,26,0.08);
  padding: 0;
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 18px 24px;
  gap: 16px;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1em;
  letter-spacing: 0.014em;
  position: relative;
  padding: 5px 0 5px 0;
  transition: color 0.14s;
}
header nav a::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--color-electric);
  width: 0%;
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: width 0.22s cubic-bezier(.57,.14,.52,1.01);
  border-radius: 3px;
}
header nav a:hover::after,
header nav a:focus::after {
  width: 100%;
}
header nav a:hover,
header nav a:focus {
  color: var(--color-accent);
}
.cta-button {
  background: linear-gradient(90deg, var(--color-electric) 60%, var(--color-accent) 100%);
  box-shadow: 0 4px 16px 0 rgba(238,63,75,0.11);
  color: #1A2233;
  font-family: var(--font-display);
  font-weight: bold;
  letter-spacing: 0.04em;
  font-size: 1.06em;
  padding: 14px 34px;
  border-radius: 30px;
  transition: box-shadow 0.17s, background 0.19s;
  cursor: pointer;
  border: 0;
  outline: 0;
  margin-left: 20px;
  display: inline-block;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--color-accent) 60%, var(--color-electric) 100%);
  box-shadow: 0 8px 40px 0 rgba(168,124,79,0.17);
  color: #181616;
  transform: translateY(-2px) scale(1.035);
  z-index: 1;
}
@media (max-width: 900px) {
  header .container {
    padding: 12px;
    flex-wrap: wrap;
  }
  .cta-button {
    padding: 12px 17px;
    font-size: 1em;
    margin-left: 2px;
  }
  header nav {
    gap: 9px;
    font-size: 0.96em;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 10px;
    gap: 7px;
  }
  header nav {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.93em;
  }
  .cta-button {
    width: 100%;
    margin-left: 0;
    margin-top: 6px;
    padding: 12px 0;
  }
}

/* MOBILE MENU (MOBILE BURGER) */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 103;
  background: #fff;
  color: var(--color-primary);
  font-size: 2.1rem;
  padding: 8px 14px;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 3px 8px 0 rgba(22,76,26,0.09);
  transition: background 0.13s, border-color 0.17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-electric);
  border-color: var(--color-accent);
}

@media (max-width: 1020px) {
  header nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 330px;
  height: 100vh;
  background: #fff;
  z-index: 2002;
  padding: 32px 0 0 0;
  box-shadow: -8px 0 32px 0 rgba(22,76,26,0.14);
  transform: translateX(100%);
  transition: transform 0.31s cubic-bezier(.62,.13,.52,1.01);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--color-electric);
  color: var(--color-primary);
  font-size: 2rem;
  padding: 3px 11px;
  border-radius: 8px;
  border: 2px solid var(--color-accent);
  cursor: pointer;
  z-index: 2010;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 36px 24px 32px;
}
.mobile-nav a {
  padding: 13px 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.23em;
  border-bottom: 1px solid var(--color-secondary);
  transition: color 0.13s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-electric);
  color: #281800;
  border-radius: 6px;
}
@media (max-width: 420px) {
  .mobile-menu {
    width: 100vw;
    max-width: none;
  }
  .mobile-nav {
    padding: 18px 10px 24px 14px;
  }
}

/* OVERLAY FOR MOBILE MENU */
.mobile-menu::before {
  content: '';
  position: fixed;
  z-index: 2001;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,46,60,0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s;
}
.mobile-menu.open::before {
  opacity: 1;
  pointer-events: all;
}

/* HERO & FEATURE GRIDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 22px;
}
.feature-grid li {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 30px 20px 40px 20px;
  min-width: 230px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  flex: 1 1 230px;
  transition: box-shadow 0.19s, transform 0.22s;
  margin-bottom: 20px;
  border-left: 7px solid var(--color-electric);
  position: relative;
}
.feature-grid li:hover {
  box-shadow: 0 8px 22px 0 rgba(71,166,123,0.16);
  transform: translateY(-5px) scale(1.025);
}
.feature-grid img {
  width: 52px;
  height: 52px;
  margin-bottom: 5px;
}
.feature-grid h3 {
  margin-bottom: 6px;
  font-size: 1.2em;
  color: var(--color-accent);
  letter-spacing: 0.01em;
  font-family: var(--font-display);
}
@media (max-width: 800px) {
  .feature-grid {
    flex-direction: column;
    gap: 19px;
    align-items: stretch;
  }
}

/* SEARCH BAR & FILTER TAGS ON rezepte.html */
.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  box-shadow: var(--shadow-elevate);
  padding: 4px 7px;
  margin-bottom: 15px;
  gap: 2px;
  width: 100%;
  max-width: 480px;
}
.search-bar input {
  flex: 1 1 120px;
  border: none;
  background: transparent;
  font-size: 1rem;
  padding: 10px 12px;
  border-radius: 30px;
  color: var(--color-primary);
}
.search-bar button {
  background: var(--color-electric);
  border-radius: 30px;
  border: none;
  padding: 7px 17px;
  cursor: pointer;
  transition: background 0.16s;
}
.search-bar button:hover, .search-bar button:focus {
  background: var(--color-accent);
}
.search-bar button img {
  width: 18px;
  height: 18px;
}
.filter-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.98em;
}
.filter-tags span {
  font-weight: 700;
}
.filter-tags a {
  color: var(--color-primary);
  background: var(--color-electric);
  border-radius: 28px;
  padding: 2px 11px;
  transition: background 0.12s, color 0.14s;
  font-family: var(--font-display);
}
.filter-tags a:hover, .filter-tags a:focus {
  color: #fff;
  background: var(--color-accent);
}
.tag-list {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.tag-list li {
  background: var(--color-pop2);
  color: #181616;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 0.93em;
  margin-bottom: 2px;
  font-family: var(--font-display);
}

/* UL STYLES COMMON */
ul {
  margin-left: 0;
  margin-bottom: 12px;
}
ul li {
  margin-bottom: 8px;
  font-size: 1em;
  padding-left: 0;
  color: #1D1D1D;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
ul li img {
  width: 24px;
  margin-right: 6px;
}

/* INFOBOX & SHORT STORIES */
.infobox {
  background: var(--color-electric);
  color: #102415;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 18px 22px;
  border-radius: var(--border-radius);
  margin-top: 12px;
  margin-bottom: 17px;
  box-shadow: var(--shadow-elevate);
  font-size: 1.05em;
}
.short-stories {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 9px;
  margin-bottom: 13px;
}
.short-stories p {
  background: var(--color-pop1);
  color: #fff;
  border-radius: 13px;
  padding: 17px 19px;
  font-style: italic;
  margin-bottom: 0;
}

/* ICON LIST */
.icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 18px;
}
.icon-list img {
  width: 42px;
  height: 42px;
}

/* TEAM MEMBERS (UEBER-UNS) */
.team-members {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 17px;
  margin-top: 17px;
}
.team-members > div {
  background: #fff;
  box-shadow: var(--shadow-elevate);
  border-radius: var(--border-radius);
  padding: 18px 19px 15px 19px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-left: 6px solid var(--color-pop1);
}

/* FOOTER */
footer {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  border-top: 2px solid var(--color-accent);
  margin-top: 48px;
  padding: 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 37px;
  justify-content: space-between;
  padding: 38px 22px 22px 22px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: var(--color-electric);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1em;
  margin-bottom: 4px;
  position: relative;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-pop2);
}
footer img {
  max-width: 120px;
}
footer .contact-info p {
  color: #fff;
  font-size: 0.97em;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
footer .contact-info img {
  width: 17px;
  height: 17px;
}
footer > .container > p {
  flex-basis: 100%;
  font-size: 0.98em;
  color: var(--color-secondary);
  margin-top: 17px;
  margin-bottom: 0;
  text-align: right;
  width: 100%;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 21px;
  }
  footer > .container > p {
    text-align: left;
    margin-top: 13px;
  }
}

/* BUTTONS GENERIC */
button, .button, .cta-button {
  cursor: pointer;
  user-select: none;
  border: none;
  outline: none;
}
.button {
  background: var(--color-accent);
  color: #fff;
  border-radius: 28px;
  padding: 12px 25px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1em;
  transition: background 0.18s, box-shadow 0.14s, transform 0.12s;
  box-shadow: var(--shadow-elevate);
}
.button:hover, .button:focus {
  background: var(--color-electric);
  color: #181616;
  box-shadow: 0 8px 40px 0 var(--color-pop1,rgba(235,61,90,0.21));
  transform: translateY(-1.5px) scale(1.04);
}

/* LINK HOVER EFFECTS */
a {
  transition: color 0.12s, background 0.15s;
}
a:hover, a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4999;
  background: #fff;
  color: #181616;
  box-shadow: 0 -3px 23px 0 rgba(25,56,34,0.12);
  padding: 22px 16px 20px 16px;
  border-top: 2px solid var(--color-electric);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  min-width: 0;
  font-size: 1em;
  animation: cookieIn 0.41s cubic-bezier(.8,-0.47,.39,1.56);
}
@keyframes cookieIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #181616;
  margin-bottom: 0;
  text-align: center;
  font-size: 1em;
}
.cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-button {
  background: var(--color-electric);
  color: #201800;
  border-radius: 26px;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1em;
  border: none;
  margin: 0 3px;
  transition: background 0.13s, color 0.15s;
  box-shadow: 0 1px 6px 0 rgba(235,61,90,0.09);
}
.cookie-button.accept {
  background: var(--color-pop2);
  color: #1D1D1D;
}
.cookie-button.settings {
  background: var(--color-accent);
  color: #fff;
}
.cookie-button:hover, .cookie-button:focus {
  background: var(--color-pop1);
  color: #fff;
}

/* COOKIE BANNER MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 5999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,31,25,0.37);
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: fadeInModal 0.28s cubic-bezier(.7,.19,.58,.97);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 36px 0 rgba(22,76,26,0.17);
  max-width: 370px;
  width: 90vw;
  padding: 34px 30px 27px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: zoomInModal 0.24s cubic-bezier(.7,.19,.58,.97);
}
@keyframes zoomInModal {
  from { transform: scale(0.92); opacity: 0.5; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
  color: var(--color-primary);
  margin-bottom: 8px;
  font-size: 1.17em;
}
.cookie-modal-content ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-weight: 600;
  color: var(--color-accent);
  font-size: 1em;
  cursor: pointer;
  user-select: none;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-electric);
  width: 1.1em;
  height: 1.1em;
  margin: 0;
}
.cookie-category .always-on {
  color: grey;
  font-size: 0.98em;
  font-style: italic;
  margin-left: 10px;
}
.close-cookie-modal {
  background: var(--color-pop1);
  color: #fff;
  border: none;
  padding: 9px 18px;
  margin: 7px 0 0 0;
  border-radius: 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1em;
  box-shadow: 0 1px 7px 0 rgba(235,61,90,0.14);
  cursor: pointer;
  transition: background 0.15s, color 0.14s;
}
.close-cookie-modal:hover, .close-cookie-modal:focus {
  background: var(--color-pop2);
  color: #201800;
}

/* RESPONSIVE MEDIA */
@media (max-width: 650px) {
  .container {
    padding: 0 7px;
  }
  .section {
    padding: 15px 0;
  }
  .content-wrapper {
    padding: 0;
  }
  .feature-grid {
    gap: 12px;
  }
  .card-container {
    gap: 12px;
  }
}

/* VIBRANT EFFECTS & MICRO-ANIMATIONS */
.cta-button, .button, .cookie-button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, box-shadow 0.15s, color 0.16s, transform 0.13s;
}
.card, .feature-grid li, .team-members > div, .infobox, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.13s;
}
.card:active, .feature-grid li:active {
  transform: scale(0.985);
}
.cta-button:active, .button:active, .cookie-button:active {
  transform: scale(0.97);
}

/* GENERAL FORM STYLES */
input[type=text], input[type=email], textarea {
  background: #fff;
  border: 2px solid var(--color-secondary);
  width: 100%;
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 1em;
  color: var(--color-primary);
  font-family: var(--font-body);
  margin-bottom: 12px;
  transition: border-color 0.15s;
}
input[type=text]:focus, input[type=email]:focus, textarea:focus {
  border-color: var(--color-electric);
  outline: none;
}

/* MAKE SURE IMAGES NEVER OVERFLOW */
img {
  max-width: 100%;
  height: auto;
}

/* ACCESSIBILITY */
:focus {
  outline: 2px solid var(--color-electric);
  outline-offset: 2px;
}

/* SCROLLBAR & HIGHLIGHT */
::-webkit-scrollbar {
  width: 12px;
  background: #eaeaea;
}
::-webkit-scrollbar-thumb {
  background: var(--color-electric);
  border-radius: 7px;
  border: 3px solid #eaeaea;
}

/* HIGH ENERGY COLOR BORDERS FOR ENERGETIC PUNCH */
.card, .feature-grid li, .team-members > div, .infobox, .testimonial-card {
  border-left-width: 6px;
  border-left-style: solid;
  border-left-color: var(--color-electric);
}
/* exceptions for team and infobox */
.team-members > div {
  border-left-color: var(--color-pop1);
}
.infobox {
  border-left-color: var(--color-pop2);
}

/* UTILITY CLASSES */
.mt-32 { margin-top: 32px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-40 { margin-bottom: 40px !important; }
.text-center {text-align: center !important;}
.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.space-between {
  justify-content: space-between;
}

