/* RESET & BASE STYLES -------------------------------------------------- */
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;
  vertical-align: baseline;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F4F1ED;
}
body {
  line-height: 1.6;
  color: #222; /* fallback*/
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F4F1ED;
  min-height: 100vh;
  position: relative;
}

/* BRAND COLORS ------------------------------------------------------------- */
:root {
  --primary: #27425D;
  --secondary: #5F8B48;
  --accent: #F4F1ED;
  --art-red: #EB5757;
  --art-yellow: #FFD43B;
  --art-blue: #3DBFF2;
  --art-green: #27AE60;
  --text-light: #F4F1ED;
  --text-dark: #1B2330;
  --shadow-main: 0 6px 32px rgba(39, 66, 93, 0.10);
}

/* TYPOGRAPHY --------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body, .body-text {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--text-dark);
}

h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.17;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--secondary);
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
p, ul, ol, li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}
a, a:visited {
  color: var(--art-blue);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--art-red);
  text-decoration: underline;
}
strong {
  font-weight: 700;
  color: var(--primary);
}
/* Artistic font for hero and CTA */
.hero h1, .cta-btn, .section h2, .footer-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

dl, dt, dd {
  margin: 0;
  padding: 0;
}

/* LAYOUT ------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1192px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

main {
  min-height: 400px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-main);
  padding: 28px 26px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 10px 44px rgba(39,66,93,0.15);
  transform: translateY(-5px) scale(1.012);
  border-color: var(--art-blue);
}
.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;
  padding: 20px;
  margin-bottom: 22px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-main);
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  margin-bottom: 16px;
}

/* HERO --------------------------------------------------------------------- */
.hero {
  background: linear-gradient(90deg, #FFD43B 0%, #F4F1ED 80%);
  border-bottom: 3px solid var(--primary);
  padding: 64px 0 48px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.hero h1 {
  color: var(--art-red);
  background: linear-gradient(80deg,var(--art-red),var(--primary),var(--art-yellow),var(--secondary));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: artistic-gradient 7s ease-in-out infinite alternate;
}
@keyframes artistic-gradient {
  0% { background-position: 0% 60%; }
  100% { background-position: 100% 0%; }
}
.hero .cta-btn {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  padding: 17px 38px;
  border: none;
  border-radius: 32px;
  background: var(--art-blue);
  color: var(--text-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(61,191,242, 0.13);
  margin-top: 16px;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.18s;
  cursor: pointer;
  text-shadow: 1px 2px 2px rgba(27,35,48,.07);
  outline: none;
  border: 2px solid transparent;
}
.hero .cta-btn:hover, .cta-btn:focus {
  background: var(--art-red);
  color: var(--text-light);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(235,87,87,0.16);
  border: 2px solid var(--primary);
}

/* MAIN NAVIGATION ---------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 3px 18px rgba(39,66,93,0.06);
  border-bottom: 3px solid var(--primary);
  z-index: 48;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 16px 32px;
  padding: 10px 20px 10px 20px;
}
.brand-logo img {
  max-height: 38px;
  width: auto;
  margin-right: 10px;
  display: block;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 20px;
  transition: background 0.17s, color 0.17s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--art-blue);
  color: var(--text-light);
  outline: none;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 24px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border: none;
  outline: none;
  box-shadow: 0 2px 10px rgba(39,66,93,0.10);
  margin-left: 14px;
  cursor: pointer;
  transition: background .2s, box-shadow .18s, color 0.18s, transform .13s;
  text-shadow: 0 1px 2px rgba(27,35,48,.08);
  border: 2px solid transparent;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--art-green);
  color: var(--text-light);
  transform: translateY(-2px) scale(1.033);
  box-shadow: 0 8px 28px rgba(95,139,72,0.14);
  border: 2px solid var(--art-blue);
  outline: none;
}

/* MOBILE MENU ------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: transparent;
  border: none;
  color: var(--art-red);
  cursor: pointer;
  margin-left: 12px;
  transition: color 0.14s, transform 0.12s;
  z-index: 1001;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--art-yellow);
  outline: none;
  transform: scale(1.13) rotate(5deg);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,66,93,0.97);
  backdrop-filter: blur(2.7px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.68,-0.19,.27,1.25);
  z-index: 1100;
  box-shadow: 2px 0 40px rgba(0,8,20,.19);
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #fff;
  background: none;
  border: none;
  margin: 22px 28px 10px 0;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.13s, transform 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--art-yellow);
  transform: scale(1.15) rotate(-7deg);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 36px;
  gap: 14px;
  align-items: flex-start;
  padding-left: 60px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 14px 0;
  margin-bottom: 7px;
  border-radius: 14px;
  transition: background 0.12s, color 0.14s;
  width: 96%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--art-yellow);
  color: var(--primary);
}

/* Hide main-nav/show burger on mobile */
@media (max-width:1024px) {
  nav.main-nav, .cta-btn {
    display:none;
  }
  .mobile-menu-toggle {
    display:inline-block;
  }
}

/* Show main nav on desktop, hamburger menu hidden */
@media (min-width:1025px){
  .mobile-menu, .mobile-menu-toggle {
    display:none !important;
  }
  nav.main-nav, .cta-btn {
    display: flex;
  }
}

/* SECTION STYLES ----------------------------------------------------------- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features ul, .services ul, .features ol, .services ol {
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.features li, .services li, .how-to-find-us li, .feature-item li {
  list-style: none;
  position: relative;
  padding-left: 36px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.features li img, .contact-info img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 2px;
}
.features h2, .services h2 {
  margin-bottom: 10px;
  color: var(--art-blue);
}
.service-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-main);
  padding: 30px 32px;
  margin-bottom: 22px;
  transition: box-shadow 0.18s, transform 0.12s;
  border-left: 7px solid var(--art-red);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-box:hover {
  box-shadow: 0 12px 36px rgba(39,66,93,0.16);
  border-left-color: var(--art-yellow);
  transform: translateY(-2px) scale(1.012);
}
.service-box h3 {
  margin-top: 0;
  color: var(--art-green);
}


/**** TESTIMONIALS ---------------------------------------------------------- */
.testimonials h2, .testimonials section h2 {
  color: var(--art-red);
  margin-bottom: 18px;
}
.testimonial-card {
  background: #fff;
  border-left: 8px solid var(--art-blue);
  margin-bottom: 20px;
  box-shadow: var(--shadow-main);
  border-radius: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-dark);
  font-size: 1.1rem;
  position: relative;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: var(--primary);
  font-weight: 500;
  margin: 0 0 8px 0;
}
.testimonial-card span {
  color: var(--art-green);
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-left: 4px;
  background: #F4F1ED;
  padding: 2px 12px;
  border-radius: 9px;
}
.testimonial-card:hover {
  border-left-color: var(--art-red);
  box-shadow: 0 8px 30px rgba(235,87,87,0.09);
}

/**** QUICK CONTACT ---------------------------------------------------------- */
.quick-contact .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 7px;
  color: var(--text-dark);
  font-size: 1.01rem;
  font-weight: 500;
}
.contact-info img {
  width: 21px;
  height: 21px;
  display: inline-block;
  margin-right: 9px;
}

/* FOOTER ------------------------------------------------------------------- */
footer {
  width: 100%;
  background: #23354d;
  color: #fff;
  padding: 38px 0 28px 0;
  border-top: 3px solid var(--art-blue);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 18px;
  align-items: center;
  justify-content: space-between;
}
footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--art-yellow);
}
.footer-contact {
  font-size: 1rem;
  color: #B8D0EA;
  display: flex;
  align-items: center;
  font-family: 'Roboto', Arial, sans-serif;
}
footer img {
  height: 36px;
  width: auto;
}

/* POLICY & LEGAL ----------------------------------------------------------- */
.policy, .cookie-policy, .terms, .gdpr {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-main);
  margin-bottom: 60px;
  padding: 40px 24px;
}
.policy h1, .cookie-policy h1, .terms h1, .gdpr h1 {
  color: var(--art-blue);
  margin-bottom: 18px;
  font-size: 2.15rem;
}

/* ANIMATION/MICRO-INTERACTION ---------------------------------------------- */
.card, .service-box, .testimonial-card, .cta-btn, .main-nav a, .footer-nav a, .mobile-nav a {
  transition:                          \
    box-shadow 0.17s,
    border-color 0.13s,
    background 0.17s,
    color 0.17s,
    transform 0.15s;
}

/* FORM ELEMENTS ------------------------------------------------------------ */
input, select, textarea {
  background: #fff;
  border: 2px solid var(--art-blue);
  padding: 11px 13px;
  font-size: 1rem;
  font-family: inherit;
  border-radius: 8px;
  margin-bottom: 16px;
  transition: border 0.17s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--art-red);
  outline: none;
}

button {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* RESPONSIVE --------------------------------------------------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 970px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 850px) {
  .footer-nav {
    gap: 10px;
  }
  header .container, footer .container {
    flex-direction: column;
    gap: 13px 0;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .features ul, .services ul, footer .container, header .container {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start;
  }
  .section, section {
    padding: 28px 7px;
    margin-bottom: 38px;
  }
  .hero {
    padding: 38px 0 20px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  h2 { font-size: 1.35rem; }
  h1 { font-size: 1.7rem; }
  .card, .service-box, .testimonial-card, .policy, .cookie-policy, .terms, .gdpr {
    padding: 18px 8px;
  }
  .mobile-menu nav {
    padding-left: 26px;
    margin-top: 16px;
  }
  .footer-nav {
    gap: 6px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.18rem; }
  h2 { font-size: 1.04rem; }
  .cta-btn, .hero .cta-btn { font-size: 0.97rem; padding: 11px 16px; }
  .card, .service-box { padding: 10px 4vw; }
  .main-nav a { font-size: 0.98rem; padding: 7px 8px; }
}

/* COOKIE BANNER ------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff6cf;
  color: var(--primary);
  box-shadow: 0px -4px 24px rgba(39,66,93,0.11);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1999;
  padding: 23px 32px 18px 19px;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.29s cubic-bezier(.68,-0.19,.27,1.25);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-settings-btn {
  background: var(--art-blue);
  color: var(--text-light);
  border: none;
  border-radius: 18px;
  padding: 11px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-left: 10px;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(61,191,242,0.08);
  transition: background 0.18s, color 0.15s, transform 0.13s;
}
.cookie-btn.accept {
  background: var(--art-green);
}
.cookie-btn.reject {
  background: var(--art-red);
}
.cookie-settings-btn {
  background: var(--art-yellow);
  color: var(--primary);
}
.cookie-btn:focus, .cookie-btn:hover, .cookie-settings-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

/* COOKIE PREFERENCES MODAL ------------------------------------------------- */
.cookie-modal {
  position: fixed;
  z-index: 2999;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.95);
  background: #fff;
  box-shadow: 0 16px 60px rgba(39,66,93,0.30);
  border-radius: 20px;
  width: 98vw;
  max-width: 420px;
  padding: 38px 26px 23px 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(.77,0,.18,1), transform 0.23s cubic-bezier(.82,0,.13,1), box-shadow 0.14s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
  color: var(--art-blue);
  font-weight: 800;
  font-size: 1.27rem;
  margin-bottom: 14px;
}
.cookie-modal ul {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 9px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal label {
  font-weight: 500;
  color: var(--primary);
  margin-left: 1px;
}
.cookie-modal input[type='checkbox'] {
  width: 17px;
  height: 17px;
}
.cookie-modal .cookie-category-ess {
  color: var(--art-green);
  font-weight: 700;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 19px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 1.35rem;
  color: var(--art-red);
  cursor: pointer;
  transition: color 0.13s, transform 0.09s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  color: var(--art-blue);
  transform: scale(1.2) rotate(-17deg);
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 13px;
  margin-top: 10px;
}

/* ANIMATIONS FOR BANNER & MODAL--------------------------------------------- */
.cookie-banner, .cookie-modal {
  will-change: transform, opacity;
}

/* MISC FLEX LAYOUTS -------------------------------------------------------- */
.how-to-find-us ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 12px;
}

/* *** NO GRID USED, ONLY FLEXBOX! *** */

/******************************************************************************
   CREATIVE ARTISTIC DECORATIVE EFFECTS
******************************************************************************/
/* Artistic brush shape for headlines underlining (pseudo deco): */
.section h2::after, .hero h1::after, .content-wrapper > h2::after {
  content: '';
  display: block;
  margin: 9px auto 0 auto;
  width: 84px;
  height: 14px;
  border-radius: 20px 60px 7px 45px/15px 25px 15px 13px;
  background: var(--art-yellow);
  mix-blend-mode: multiply;
  opacity: .43;
}
.hero h1::after {
  background: var(--art-blue);
  opacity: .26;
  width: 70px;
  height: 9px;
  border-radius: 19px 21px 9px 15px/10px 11px 7px 9px;
}
.features ul li::before, .services ul li::before, .how-to-find-us ul li::before {
  content: '';
  display: inline-block;
  width: 19px;
  height: 19px;
  margin: 0 10px 0 0;
  border-radius: 100%;
  background: var(--art-blue);
  opacity: .18;
  vertical-align: middle;
  position: absolute;
  left: 4px;
  top: 3.8px;
}
@media (max-width:768px){
  .section h2::after, .hero h1::after, .content-wrapper > h2::after {
    margin-top: 7px;
    width: 44px;
    height: 7px;
  }
}

/* Artistic circle deco in testimonials */
.testimonial-card::before {
  content:'';
  width: 27px; height: 27px;
  background: var(--art-yellow);
  opacity: .19;
  position: absolute;
  left: -14px; top: -13px;
  z-index: 0;
  border-radius: 100%;
  pointer-events: none;
}

/* ARTISTIC COLOR SPRINKLES using box-shadow for .card & .service-box as fun dots */
.card, .service-box {
  box-shadow: var(--shadow-main),
    1px 1.5px 0 0 var(--art-yellow),
    23px 11px 0 -10px var(--art-blue),
    12px 29px 0 -12px var(--art-red),
    13px 12px 0 -11px var(--art-green);
}
.card:hover, .service-box:hover {
  box-shadow: 0 20px 44px rgba(39,66,93,0.12),
    7px 13px 0 -8px var(--art-red),
    22px 9px 0 -11px var(--art-yellow),
    18px 37px 0 -16px var(--art-blue);
}


/* UTILITY CLASSES ---------------------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.align-center { align-items: center !important; }
.gap-20 { gap: 20px !important; }

/******************************************************************************
                       END ESTRO SIFFL CSS - CREATIVE_ARTISTIC                
******************************************************************************/