/* --- CSS RESET & NORMALIZATION --- */
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;
}
html {
  line-height: 1.15;
  scroll-behavior: smooth;
  height: 100%;
}
body {
  background: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #232323;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* --- BRAND COLORS & FONTS --- */
:root {
  --color-primary: #335c67;
  --color-secondary: #ffb385;
  --color-accent: #ffffff;
  --color-bg-playful: #fff8e2;
  --color-fun-pink: #ff4f79;
  --color-fun-teal: #3ccfcf;
  --color-fun-lime: #c1ff7c;
  --color-fun-purple: #965aff;
  --color-muted-grey: #f7f7fa;

  --font-display: 'Montserrat', 'Comic Sans MS', system-ui, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* --- TYPOGRAPHY SCALE --- */
h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.1;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--color-fun-pink);
}
h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-fun-teal);
}
h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-fun-lime);
}
p, li, span, strong, b {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #232323;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
}
a.cta, .cta {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
}

/* Playful, fun fonts for headings with some energetic color pops */
.hero h1, section h1, section h2, section h3 {
  background: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: unset;
  position: relative;
}

/* --- GLOBAL CONTAINER --- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}

/* --- HEADER --- */
header {
  background: var(--color-bg-playful);
  box-shadow: 0 2px 14px 0 rgba(51,92,103,0.08);
  border-bottom: 3px solid var(--color-fun-lime);
  position: relative;
  z-index: 22;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 22px;
}
header img {
  height: 50px;
  margin-right: 14px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
  position: relative;
  padding: 4px 0;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover,
header nav a:focus {
  background: var(--color-secondary);
  color: var(--color-fun-pink);
  outline: none;
}
header .cta.primary {
  margin-left: 24px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--color-fun-pink);
  color: var(--color-accent);
  border-radius: 50%;
  padding: 0.3em 0.6em;
  margin-left: 20px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px 0 rgba(255,79,121,0.12);
  line-height: 1;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-fun-lime);
  box-shadow: 0 0 0 4px var(--color-fun-pink, #ff4f79, 0.09);
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-bg-playful);
  box-shadow: 0 0 60px 0 rgba(51,92,103,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  overflow-y: auto;
  z-index: 99;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 22px 18px 0;
  font-size: 2.2rem;
  color: var(--color-fun-pink);
  background: var(--color-accent);
  border-radius: 50%;
  padding: 0.05em 0.33em;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-fun-pink);
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
  padding: 0 32px 36px 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.4rem;
  padding: 16px 7px;
  border-radius: 8px;
  transition: background 0.13s, color 0.15s;
  background: transparent;
  margin-bottom: 3px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-fun-pink);
  outline: none;
}

/* --- HERO SECTION --- */
.hero {
  min-height: 390px;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px 0 24px 0;
  box-shadow: 0 4px 28px -12px rgba(51,92,103,0.07);
  border-radius: 0 0 50px 0;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 270px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 17px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.7rem;
  font-family: var(--font-display);
}
.hero p {
  font-size: 1.19rem;
}

/* --- SECTIONS (GENERAL) --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- FLEX CONTAINERS --- */
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 8px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-accent);
  border-radius: 22px;
  box-shadow: 0 5px 16px 0 rgba(51,92,103,0.12);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  padding: 28px 24px;
  min-width: 260px;
}
.card:hover {
  box-shadow: 0 8px 30px 0 rgba(51,92,103,0.23);
  transform: translateY(-4px) scale(1.033);
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-muted-grey);
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px 0 rgba(255,179,133,0.18);
  border: 2px solid var(--color-secondary);
  min-width: 260px;
  max-width: 480px;
  margin-right: 10px;
  margin-left: 0;
  animation: popIn 0.7s cubic-bezier(.42,0,.58,1.2);
}
.testimonial-card strong, .testimonial-card b {
  color: var(--color-primary);
  font-size: 1.1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 0;
}

/* --- FEATURES --- */
.features ul, .services-overview ul, .service-highlight ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.features li, .services-overview li, .service-highlight li {
  display: flex;
  align-items: center;
  font-size: 1.07rem;
  background: var(--color-bg-playful);
  border-radius: 11px;
  gap: 15px;
  padding: 12px 19px 12px 9px;
  transition: background 0.13s, box-shadow 0.13s;
}
.features li img, .services-overview li img, .process li img {
  width: 38px;
  height: 38px;
  margin-right: 8px;
  filter: drop-shadow(0 0 8px var(--color-secondary));
}
.features li:hover, .services-overview li:hover, .service-highlight li:hover {
  background: var(--color-fun-lime);
  box-shadow: 0 2px 10px 0 rgba(51,92,103,0.10);
}

/* --- CTA BUTTONS --- */
.cta, a.cta {
  display: inline-block;
  padding: 13px 31px;
  border-radius: 40px;
  background: var(--color-fun-teal);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 5px 14px 0 rgba(60,207,207,0.17), 0 1.5px 0 var(--color-fun-lime);
  margin: 10px 5px 0 0;
  letter-spacing: 0.6px;
  transition: background 0.2s, transform 0.15s, color 0.14s;
}
.cta.primary, a.cta.primary {
  background: var(--color-primary);
  color: var(--color-secondary);
  box-shadow: 0 7px 15px 0 rgba(51,92,103,0.17);
}
.cta:hover, .cta:focus, a.cta:hover, a.cta:focus {
  background: var(--color-fun-pink);
  color: var(--color-accent);
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
  outline: none;
}
.cta.primary:hover, a.cta.primary:hover {
  background: var(--color-fun-teal);
  color: var(--color-accent);
}

/* --- ABOUT, PROCESS, TEAM, FAQ --- */
.about, .team, .process, .faq, .service-highlight, .services, .privacy-policy, .cookie-policy, .gdpr, .terms, .thank-you, .business-info {
  background: var(--color-bg-playful);
  border-radius: 25px;
  box-shadow: 0 2px 28px 0 rgba(51,92,103,0.06);
}
.about ul, .team ul, .process ol, .faq .content-wrapper, .service-highlight ul {
  margin-top: 12px;
  margin-bottom: 12px;
  gap: 14px;
}
.about ul li, .team ul li, .service-highlight ul li, .process ol li {
  display: flex;
  align-items: center;
  border-radius: 7px;
  background: var(--color-muted-grey);
  padding: 11px 17px;
  margin-bottom: 4px;
}
.about-preview, .process-preview {
  background: var(--color-fun-lime);
  border-radius: 14px;
  margin-bottom: 60px;
  box-shadow: 0 3px 16px 0 rgba(165,255,124,0.14);
}

/* --- TESTIMONIALS --- */
.testimonials .content-wrapper, .testimonial-preview .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  align-items: stretch;
}
.testimonials h2, .testimonial-preview h2 {
  color: var(--color-fun-pink);
}

.testimonial-card p {
  color: #232323;
  font-size: 1.09rem;
  font-family: var(--font-body);
  margin-bottom: 8px;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--color-primary);
}

/* --- GALLERY, BLOG --- */
.project-showcase .content-wrapper, .blog-list .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.project-showcase .content-wrapper > div, .blog-list .content-wrapper > div, .faq .content-wrapper > div {
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(255,79,121,0.06);
  padding: 20px 18px;
  min-width: 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.project-showcase .content-wrapper > div:hover, .blog-list .content-wrapper > div:hover {
  box-shadow: 0 8px 24px 0 rgba(255,79,121,0.19);
  transform: translateY(-2px) scale(1.027);
}
.blog-list h3 {
  color: var(--color-fun-purple);
}

.blog-list ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--color-fun-pink);
  border-radius: 26px;
  box-shadow: 0 2px 18px 0 rgba(255,79,121,0.09);
  color: var(--color-accent);
}
.cta-banner h2, .cta-banner p {
  color: var(--color-accent);
  text-align: center;
}
.cta-banner .cta, .cta-banner a.cta {
  background: var(--color-fun-lime);
  color: var(--color-primary);
  margin-top: 20px;
}
.cta-banner .cta:hover, .cta-banner a.cta:hover {
  background: var(--color-accent);
  color: var(--color-fun-teal);
}

/* --- FOOTER --- */
footer {
  background: var(--color-bg-playful);
  border-top: 2.5px solid var(--color-secondary);
  padding: 24px 0 18px 0;
  font-size: 0.97rem;
  color: #232323;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  width: 100%;
  justify-content: space-between;
}
footer img {
  height: 42px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
footer nav a {
  font-family: var(--font-display);
  color: var(--color-fun-pink);
  font-size: 1.07rem;
  transition: color 0.12s;
  margin-bottom: 4px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-primary);
  text-decoration: underline;
}
footer .contact-short p, footer .contact-short a {
  color: var(--color-primary);
  font-size: 0.96rem;
  opacity: .92;
}
footer .contact-short a {
  text-decoration: underline;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-fun-pink);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 24px 16px;
  z-index: 222;
  box-shadow: 0 -6px 32px 0 rgba(255,79,121,0.09);
  font-family: var(--font-body);
  font-size: 1rem;
  gap: 18px;
  animation: slideUp 0.65s cubic-bezier(.42,0,.2,1.2);
}
.cookie-consent-banner p {
  margin: 0 24px 0 0;
  color: var(--color-accent);
  font-size: 1.07rem;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  background: var(--color-accent);
  color: var(--color-fun-pink);
  border-radius: 30px;
  font-size: 1.03rem;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 9px 20px;
  margin-right: 2px;
  border: none;
  outline: none;
  box-shadow: 0 1.5px 5px 0 rgba(255,79,121,0.16);
  transition: background .17s, color .17s, box-shadow .18s;
}
.cookie-btn.accept {
  background: var(--color-fun-lime);
  color: var(--color-primary);
}
.cookie-btn.reject {
  background: var(--color-fun-purple);
  color: var(--color-accent);
}
.cookie-btn.settings {
  background: var(--color-primary);
  color: var(--color-accent);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-fun-pink);
  color: var(--color-accent);
  box-shadow: 0 2px 14px 0 rgba(255,79,121,0.18);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-primary);
  color: var(--color-fun-lime);
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 95vw;
  max-width: 420px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 22px;
  z-index: 333;
  transform: translate(-50%, -60%);
  box-shadow: 0 5px 38px 0 rgba(51,92,103,0.22);
  padding: 30px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: popIn 0.55s cubic-bezier(.5,0,.5,1.22);
  align-items: stretch;
}
.cookie-modal h2 {
  font-size: 1.39rem;
  margin-bottom: 10px;
  color: var(--color-fun-pink);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-muted-grey);
  border-radius: 13px;
  padding: 10px 15px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-fun-teal);
  width: 18px;
  height: 18px;
}
.cookie-category label {
  font-size: 1.06rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: 0;
  user-select: none;
  font-weight: 600;
}
.cookie-category.essential label {
  color: var(--color-fun-lime);
}
.cookie-modal .cookie-actions {
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  margin-top: 2px;
}
.cookie-modal-close {
  position: absolute;
  right: 12px;
  top: 17px;
  font-size: 2rem;
  background: var(--color-accent);
  border-radius: 50%;
  color: var(--color-fun-pink);
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-fun-pink);
  color: var(--color-accent);
}

/* --- ANIMATIONS --- */
@keyframes popIn {
  0% { opacity:0; transform: scale(0.85) translateY(40px); }
  80% { opacity: 1; transform: scale(1.03) translateY(-4px); }
  100% {opacity:1; transform: scale(1) translateY(0);}
}
@keyframes slideUp {
  0% { opacity:0; transform: translateY(80px); }
  60% { opacity:1; transform: translateY(-6px); }
  100% { opacity:1; transform: translateY(0); }
}

/* --- INTERACTIVE MICRO-ANIMATIONS --- */
button, .cta, a.cta, .cookie-btn {
  transition: background .18s, color .18s, box-shadow .19s, transform .11s;
}
.card, .project-showcase .content-wrapper > div, .testimonial-card {
  transition: box-shadow .2s, transform .18s;
}
.card:hover, .project-showcase .content-wrapper > div:hover, .testimonial-card:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 10px 32px 0 rgba(165,255,124,0.12);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 991px) {
  .container {
    max-width: 95vw;
    padding: 0 10px;
  }
  header .container, footer .container, .content-wrapper {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .content-wrapper, .card-container, .content-grid, .project-showcase .content-wrapper, .blog-list .content-wrapper, .testimonials .content-wrapper, .testimonial-preview .content-wrapper {
    gap: 13px;
    flex-direction: column;
    align-items: stretch;
  }
  .card, .testimonial-card, .project-showcase .content-wrapper > div, .blog-list .content-wrapper > div {
    min-width: unset;
    max-width: 100%;
    margin: 0 0 20px 0;
    padding: 19px 12px;
  }
  .hero {
    padding: 29px 0 14px 0;
    min-height: 230px;
    border-radius: 0 0 25px 0;
  }
  .hero .content-wrapper {
    padding-bottom: 6px;
    gap: 10px;
  }
  .cta, a.cta {
    padding: 10px 12vw;
    font-size: 1rem;
  }
  header .container {
    flex-direction: row;
    gap: 10px;
    height: 56px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu {
    padding-top: 0;
  }
  .testimonials .content-wrapper, .testimonial-preview .content-wrapper {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
    justify-content: flex-start;
  }
  .testimonial-card, .card {
    min-width: unset;
    max-width: 100%;
  }
  section {
    padding: 24px 5vw 22px 5vw;
    margin-bottom: 36px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
  }
}
@media (max-width: 480px) {
  h1, .hero h1 {
    font-size: 1.15rem;
  }
  h2 { font-size: 1.06rem; }
  .hero {
    min-height: 141px;
    padding: 11px 0 7px 0;
    border-radius: 0 0 12px 0;
  }
  section {
    padding: 13px 3vw 14px 3vw;
    margin-bottom: 20px;
  }
  .card, .testimonial-card, .about, .team, .process, .privacy-policy, .cookie-policy, .gdpr, .terms, .thank-you {
    padding: 13px 7px 16px 7px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 10px;
    padding: 14px 5px 12px 7px;
    font-size: 0.99rem;
  }
  .cookie-btn { padding: 8px 12px; font-size: 0.95rem; }
}

/* --- VISUAL PLAYFUL ACCENTS (decorative) --- */
.hero::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -45px; left: -60px;
  width: 180px; height: 120px;
  background: var(--color-fun-lime);
  border-radius: 60% 40% 60% 100% / 40% 60% 80% 100%;
  opacity: 0.24;
  z-index: 1;
  pointer-events: none;
}
.section:not(.hero)::before {
  content: '';
  display: block;
  position: absolute;
  top: -16px;
  right: -28px;
  width: 48px; height: 48px;
  background: var(--color-fun-purple);
  border-radius: 60% 40% 53% 60%;
  opacity: 0.11;
  z-index: 0;
  pointer-events: none;
}


/* --- FORM ELEMENTS (for future forms) --- */
input[type="text"], input[type="email"], textarea, select {
  border-radius: 13px;
  border: 2px solid var(--color-fun-teal);
  padding: 11px 14px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--color-muted-grey);
  margin-bottom: 18px;
  width: 100%;
  transition: border .15s, background .15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-fun-pink);
  background: #fff;
  outline: none;
}

/* --- MISCELLANEOUS, VISUAL HIERARCHY --- */
[role="alert"] {
  color: var(--color-fun-pink);
  background: var(--color-fun-lime);
  border-radius: 7px;
  padding: 8px 13px;
}

/* --- UTILITIES --- */
.text-center { text-align: center !important; }
.mt-2 { margin-top: 18px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 18px; }
.mb-4 { margin-bottom: 32px; }

/* --- END OF CSS --- */
