/* ===============================================================
   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.6;
  background: #F3F6F9;
  color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  transition: background 0.2s;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #174764;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFB300;
  outline: none;
}
ul, ol {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #174764;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  line-height: 1.15;
  transition: color 0.2s;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 18px; }
h3 { font-size: 1.125rem; margin-bottom: 12px; }
h4 { font-size: 1rem; margin-bottom: 8px; }

p, li{
  font-size: 1rem;
  color: #222;
  line-height: 1.65;
}
strong { font-weight: 700; }

/* ============================
   LAYOUT & CONTAINER
   ============================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(23,71,100,0.04);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* Header and navigation */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(23,71,100,0.07);
  position: sticky;
  top: 0;
  z-index: 1002;
  padding-bottom: 0;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 0;
}
.header-flex nav {
  display: flex;
  gap: 20px;
}
.header-flex nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #174764;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.header-flex nav a:hover, .header-flex nav a:focus {
  background: #F3F6F9;
  color: #FFB300;
}
.header-flex img {
  height: 38px;
  width: auto;
}
.header-flex .btn-primary {
  margin-left: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  box-shadow: 0 1px 3px rgba(23,71,100,0.04);
  outline: none;
  text-align: center;
  min-width: 44px;
}
.btn-primary {
  background: #174764;
  color: #fff;
  border: 1.5px solid #174764;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFB300;
  color: #174764;
  border-color: #FFB300;
  box-shadow: 0 4px 14px rgba(23,71,100,0.08);
}
.btn-secondary {
  background: #F3F6F9;
  color: #174764;
  border: 1.5px solid #174764;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #174764;
  color: #fff;
  border-color: #174764;
}
.btn-link {
  background: none;
  color: #174764;
  font-weight: 500;
  border: none;
  padding: 0 4px;
  min-width: 24px;
  box-shadow: none;
  border-radius: 4px;
  text-decoration: underline;
}
.btn-link img {
  width: 18px;
  height: 18px;
  margin-right: 4px;
}
.btn-link:hover, .btn-link:focus {
  color: #FFB300;
  background: #F3F6F9;
}

/* =========== FLEX LAYOUTS REQUIRED ============= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 8px rgba(23,71,100,0.07);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.17s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 4px 18px rgba(23,71,100,0.09);
  transform: translateY(-2px);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 24px 18px;
}

.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: 28px 26px 24px 26px;
  background: #F3F6F9;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(23,71,100,0.07);
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 440px;
  transition: box-shadow 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(23,71,100,0.14);
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #174764;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-size: 1rem;
  color: #174764;
  opacity: 0.88;
}
.star-rating img {
  width: 90px;
  height: auto;
  display: block;
}

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

/* ===== SCANDINAVIAN CARD & GRID EXTENSIONS ===== */
.feature-grid,
.team-member-list,
.service-grid,
.blog-preview-cards,
.guide-list,
.knowledge-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid li, .team-member-profile, .service-block, .blog-card, .guide-block, .knowledge-topic-list > li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 8px rgba(23,71,100,0.06);
  padding: 22px 20px 18px 20px;
  margin-bottom: 20px;
  flex: 1 1 250px;
  max-width: 320px;
  min-width: 220px;
  transition: box-shadow 0.17s, transform 0.12s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-grid li img, .service-block img, .knowledge-topic-list > li img {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}
.feature-grid li h3 {
  font-size: 1.14rem;
}
.feature-grid li p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 0;
}

/* ===== Team Members ===== */
.team-member-list {
  gap: 24px;
  flex-wrap: wrap;
}
.team-member-profile {
  min-width: 220px;
  flex: 1 1 270px;
}

/* ===== Services ===== */
.service-grid {
  gap: 24px;
}
.service-block {
  min-width: 220px;
  flex: 1 1 260px;
}
.services-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}
.services-highlights li {
  background: #F3F6F9;
  border-radius: 8px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  color: #174764;
  margin-bottom: 0;
}
.services-highlights li img {
  width: 19px;
  height: 19px;
}

/* ===== Blog ===== */
.blog-preview-cards, .guide-list {
  gap: 24px;
}
.blog-card, .guide-block {
  min-width: 220px;
  flex: 1 1 270px;
}
.tags {
  display: flex;
  gap: 6px;
  font-size: 0.95rem;
  margin-top: 8px;
}
.tags span {
  background: #F3F6F9;
  padding: 2px 8px;
  border-radius: 6px;
  color: #174764;
  font-weight: 600;
}

/* ===== Knowledge ===== */
.knowledge-topic-list > li {
  min-width: 220px;
  flex: 1 1 250px;
}

/* ===== FAQ Accordion (simple style) ===== */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 8px rgba(23,71,100,0.07);
  flex: 1 1 300px;
  min-width: 220px;
}
.faq-item h3 {
  font-size: 1rem;
}

/* ========= CTA Banner ========= */
.cta-banner {
  background: #174764;
  border-radius: 18px;
  color: #fff;
  margin-bottom: 60px;
  padding: 54px 20px 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-banner h2 {
  color: #fff;
}
.cta-banner p {
  color: #fff;
}
.cta-banner .btn-primary {
  background: #FFB300;
  color: #174764;
  border-color: #FFB300;
}
.cta-banner .btn-primary:hover {
  background: #fff;
  color: #174764;
  border-color: #fff;
}

/* ========= Alert/Info Box ========= */
.alert {
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 1rem;
  margin: 24px 0;
  background: #E8F1F7;
  color: #174764;
  border-left: 4px solid #174764;
}
.alert.info {
  background: #F3F6F9;
  border-left: 4px solid #FFB300;
}

/* ========= Confirmation Block ========= */
.confirmation-block {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 13px rgba(23,71,100,0.08);
  padding: 36px 24px 32px 24px;
  margin-top: 36px;
  align-items: flex-start;
  gap: 17px;
}
.confirmation-block h1 {
  margin-bottom: 10px;
  color: #174764;
}
.confirmation-block a {
  margin-top: 14px;
}

/* ========= Contact Block ========= */
.contact-block {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 8px rgba(23,71,100,0.06);
  padding: 22px 20px 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-block p, .contact-block a {
  color: #174764;
}
.contact-block img {
  width: 19px;
  height: 19px;
  margin-right: 7px;
  vertical-align: middle;
}

/* ======= Newsletter Section ========= */
.newsletter-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.newsletter-section li {
  background: #F3F6F9;
  border-radius: 7px;
  padding: 7px 13px;
  color: #174764;
}

/* ====== Hero Section ====== */
.hero {
  background: #fff;
  border-radius: 0 0 26px 26px;
  padding: 48px 20px 38px 20px;
  margin-bottom: 45px;
  box-shadow: 0 4px 24px rgba(23,71,100,0.12);
}
.hero h1 {
  font-size: 2.4rem;
  color: #174764;
}
.hero p {
  font-size: 1.15rem;
  color: #3a3a3a;
}
.hero .btn {
  margin-top: 22px;
  font-size: 1.05rem;
}

/* ===== Map Section Styles ===== */
.map ul {
  margin-left: 18px;
  color: #174764;
  margin-bottom: 20px;
}

/* ========== Footer ========== */
footer {
  background: #174764;
  color: #fff;
  margin-top: 60px;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -2px 14px rgba(23,71,100,0.05);
  padding-top: 42px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 24px;
  padding-top: 6px;
}
.footer-flex nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-right: 28px;
}
.footer-flex nav a, .footer-flex p, .footer-flex span {
  color: #fff;
  font-size: 0.995rem;
  opacity: 0.93;
}
.footer-flex nav a:hover, .footer-flex nav a:focus {
  color: #FFB300;
  background: none;
}
.footer-flex img {
  height: 36px;
  width: auto;
  margin-bottom: 15px;
}
.footer-flex div p {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-flex div img {
  margin-bottom: 0;
  width: 16px;
  height: 16px;
}
.copyright {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 13px 0 20px 0;
  text-align: center;
  color: #fff;
  opacity: 0.74;
}
.copyright p {
  font-size: 0.95rem;
}

/* =============================================
   ============= MOBILE NAVIGATION =============
   ============================================= */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #174764;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 7px;
  margin-right: 8px;
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1003;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F3F6F9;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 36px 32px 24px 25px;
  transition: transform 0.33s cubic-bezier(0.4, 0.09, 0.3, 1), opacity 0.18s;
  box-shadow: 0 8px 48px 0 rgba(23,71,100,0.15);
  transform: translateX(100%);
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #174764;
  font-size: 1.7rem;
  position: absolute;
  right: 20px;
  top: 18px;
  cursor: pointer;
  border-radius: 7px;
  padding: 6px 9px;
  transition: background 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F3F6F9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 54px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.14rem;
  color: #174764;
  padding: 11px 0 11px 2px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3F6F9;
  color: #FFB300;
}

@media (max-width: 992px) {
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}
@media (max-width: 950px) {
  .team-member-list,.feature-grid,.service-grid,.blog-preview-cards,.guide-list,.knowledge-topic-list {
    justify-content: center;
  }
  .card-container, .content-grid {
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .header-flex nav {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  /* Hide desktop nav, show mobile menu toggle */
  .header-flex nav, .header-flex .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 19px;
  }
  .header-flex {
    padding: 12px 0;
    gap: 10px;
  }
  .section, .cta-banner, .hero {
    padding: 22px 8px;
    border-radius: 12px;
  }
  .cta-banner {
    padding: 34px 11px 31px 11px;
    border-radius: 10px;
  }
  .footer-flex {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .feature-grid, .team-member-list, .service-grid, .blog-preview-cards, .guide-list, .knowledge-topic-list, .content-grid, .card-container, .faq-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
    width: 100%;
    padding: 19px 10px 13px 10px;
  }
  .card,.team-member-profile,.service-block,.blog-card,.guide-block,.faq-item,.feature-grid li {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .about-short, .about-history-values, .process-section, .services-overview, .testimonials-section, .why-us, .newsletter-section, .contact-details, .map {
    padding-left: 2px !important; padding-right: 2px !important;
  }
  .confirmation-block {
    padding: 22px 8px 18px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 4px;
  }
  .hero h1 {
    font-size: 1.37rem;
  }
  h2 { font-size: 1.14rem; }
  h3 { font-size: 1.02rem; }
  .btn, .btn-primary, .btn-secondary {
    padding: 10px 16px;
    font-size: 0.98rem;
  }
}


/* =============== MICRO-INTERACTIONS & EFFECTS =============== */
.card, .feature-grid li, .team-member-profile, .service-block, .blog-card, .guide-block, .faq-item {
  transition: box-shadow 0.14s, transform 0.17s;
}
.card:hover, .feature-grid li:hover, .team-member-profile:hover, .service-block:hover, .blog-card:hover, .guide-block:hover, .faq-item:hover {
  box-shadow: 0 8px 26px rgba(23,71,100,0.13);
  transform: translateY(-3px) scale(1.01);
  z-index: 2;
}
.btn, .btn-primary, .btn-secondary, .btn-link {
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, border 0.17s;
}
a:active {
  opacity: 0.7;
}

input[type="search"] {
  padding: 11px 22px;
  border-radius: 8px;
  border: 1.5px solid #C9DAE3;
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-top: 20px;
  width: 100%;
  max-width: 320px;
  transition: border 0.14s, box-shadow 0.15s;
  outline: none;
  background: #F3F6F9;
  color: #174764;
}
input[type="search"]:focus {
  border: 1.5px solid #174764;
  box-shadow: 0 1.5px 9px rgba(23,71,100,0.08);
}

/* ============ COOKIE CONSENT BANNER & MODAL ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #174764;
  border-top: 1.5px solid #C9DAE3;
  box-shadow: 0 -2px 16px 0 rgba(23,71,100,0.13);
  padding: 25px 12px 18px 12px;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 1.02rem;
  animation: fadeInBanner 0.8s cubic-bezier(0.07, 0.79, 0.15, 1);
}
@keyframes fadeInBanner {
  from { opacity:0; transform:translateY(70px); } to { opacity:1; transform:translateY(0); }
}
.cookie-banner .cookie-banner-text {
  max-width: 500px;
}
.cookie-banner .cookie-button-group {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 16px;
}
.cookie-banner .btn {
  font-size: 0.99rem;
  min-width: 120px;
  padding: 8px 18px;
  border-radius: 7px;
}
.cookie-banner .btn-primary {
  background: #174764;
  color: #fff;
  border: 1.5px solid #174764;
}
.cookie-banner .btn-primary:hover {
  background: #FFB300;
  color: #174764;
}
.cookie-banner .btn-secondary {
  background: #F3F6F9;
  color: #174764;
  border: 1.5px solid #174764;
}
.cookie-banner .btn-secondary:hover {
  background: #174764;
  color: #fff;
}
.cookie-banner .btn-link {
  background: none;
  color: #174764;
  border: none;
  text-decoration: underline;
  padding: 0 4px;
}
@media (max-width: 780px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cookie-banner .cookie-button-group {
    margin-left: 0;
    gap: 12px;
  }
}

/* Cookie Consent Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3100;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(23,71,100,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  animation: cookieModalSlideIn 0.43s cubic-bezier(0.11, 0.78, 0.27, 1);
}
@keyframes cookieModalSlideIn {
  from { opacity:0; transform:translateY(80px); } to { opacity:1; transform:translateY(0); }
}
.cookie-modal-content {
  background: #fff;
  color: #174764;
  padding: 35px 32px 22px 32px;
  border-radius: 18px;
  min-width: 310px;
  max-width: 95vw;
  box-shadow: 0 5px 38px rgba(23,71,100,0.16);
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  color: #174764;
  background: none;
  border: none;
  font-size: 1.47rem;
  cursor: pointer;
  border-radius: 7px;
  padding: 3px 7px;
  transition: background 0.16s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #F3F6F9;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid #C9DAE3;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: #174764;
  margin-right: 6px;
}
.cookie-category .cookie-category-label {
  font-size: 1.05rem;
  min-width: 150px;
  color: #174764;
}
.cookie-category .cookie-category-desc {
  font-size: 0.97rem;
  color: #555;
}
.cookie-category .cookie-essential {
  color: #aaa;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 27px;
}
.cookie-modal-actions .btn {
  font-size: 0.99rem;
  padding: 10px 23px;
}
@media (max-width: 540px) {
  .cookie-modal-content {
    max-width: 98vw;
    padding: 18px 6px 10px 6px;
  }
}

/* ======= Utility/Helpers ======= */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 8px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mt-3 { margin-top: 16px !important; }
.mb-3 { margin-bottom: 16px !important; }
.d-flex { display: flex !important; }
.align-center { align-items: center !important; }
.justify-between { justify-content: space-between !important; }
.gap-1 { gap: 8px !important; }
.gap-2 { gap: 16px !important; }

::selection {
  background: #FFB300;
  color: #fff;
}
::-webkit-scrollbar {
  width: 10px;
  background: #F3F6F9;
}
::-webkit-scrollbar-thumb {
  background: #C9DAE3;
  border-radius: 7px;
}

/* RESETS FOR MODAL OVERLAY OF MOBILE MENU */
body.menu-open {
  overflow: hidden;
}
