/* CSS RESET & BASE TYPOGRAPHY */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #214276;
  font-size: 16px;
  letter-spacing: 0.02em;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
ul, ol {
  list-style-position: inside;
}
a {
  color: #214276;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F0B51C;
}
strong { font-weight: 700; }

/* BRAND FONTS (Montserrat for headings) */
h1, h2, h3, h4, h5, h6, .btn, .tagline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 2.5rem;
  color: #214276;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  color: #214276;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  color: #F0B51C;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1rem;
  color: #214276;
}
p, ul, ol, dl {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.95;
}

.tagline {
  color: #F0B51C;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* SPACING & SECTION RULES */
.section,
.hero-section,
.services-overview,
.features-section,
.services-list-section,
.process-section,
.cta-section,
.pricing-section,
.achievements-section,
.team-section,
.legal-section,
.contact-section,
.blog-listing-section,
.blog-hero-section,
.testimonials-section,
.thank-you-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

/* FLEXBOX LAYOUTS */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.footer-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  border-top: 4px solid #F0B51C;
  padding: 32px 0 16px 0;
  background: #214276;
  color: #fff;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #F0B51C; }

.company-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-size: 0.95rem;
}
.company-info img { vertical-align: middle; margin-right: 4px; }
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a img { width: 32px; height: 32px; border-radius: 50%; transition: box-shadow 0.2s; }
.footer-social a:hover img { box-shadow: 0 0 10px #F0B51C; }

/* MAIN NAVIGATION (DESKTOP) */
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  color: #214276;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 16px;
  border-radius: 24px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus { background: #F0B51C; color: #fff; }
.main-nav .btn {
  margin-left: 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo-link img { height: 44px; width: auto; }

/* BUTTONS */
.btn,
button, .btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 32px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  outline: none;
  box-shadow: 0 2px 14px 0 rgba(32,66,118,0.08);
  margin: 0;
  background: #214276;
  color: #fff;
}
.btn-primary {
  background: #F0B51C;
  color: #214276;
  border: none;
  box-shadow: 0 2px 14px 0 rgba(240,181,28,0.17);
}
.btn-secondary {
  background: #214276;
  color: #fff;
  border: 2px solid #F0B51C;
}
.btn:hover, .btn:focus, .btn-primary:hover, .btn-primary:focus {
  background: #214276;
  color: #F0B51C;
  box-shadow: 0 4px 24px 3px rgba(32,66,118,0.19);
  text-decoration: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F0B51C;
  color: #214276;
}

button {
  font-size: 1.1rem;
  background: #F0B51C;
  color: #214276;
  font-weight: 800;
}

button:active { box-shadow: 0 1px 3px #F0B51C; }

/* HERO SECTION */
.hero-section {
  background: #F6F7F9;
  border-radius: 28px;
  margin-bottom: 60px;
  box-shadow: 0 2px 30px rgba(32,66,118,0.08);
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section h1 {
  color: #214276;
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 0.015em;
}
.hero-section p {
  color: #214276;
  font-size: 1.18rem;
  max-width: 620px;
  margin-bottom: 14px;
}

.cta-section {
  background: #F6F7F9;
  border-radius: 28px;
  box-shadow: 0 2px 20px rgba(240,181,28,0.07);
}

/* FEATURES GRID */
.features-section .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  padding: 26px 26px 24px 28px;
  box-shadow: 0 3px 16px rgba(32,66,118,0.06);
  width: 240px;
  min-width: 180px;
  position: relative;
  border-left: 8px solid #F0B51C;
  transition: box-shadow 0.2s, transform 0.18s;
}
.feature-item:hover {
  box-shadow: 0 8px 28px 0 rgba(240,181,28,0.14);
  transform: translateY(-7px) scale(1.03);
}
.feature-item img {
  width: 40px;
  height: 40px;
}
.feature-item h3 {
  color: #214276;
  font-size: 1.20rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 1rem;
}

/* CARD/CONTENT GRID */
.card-container,
.team-bios,
.comparison-boxes,
.testimonial-cards,
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 12px rgba(32,66,118,0.09);
  padding: 32px 26px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 34px 0 rgba(32,66,118,0.13);
  transform: translateY(-4px) scale(1.02);
}

.team-member {
  background: #fff;
  border-radius: 14px;
  padding: 26px 18px 20px 22px;
  box-shadow: 0 2px 10px rgba(240, 181, 28, 0.10);
  flex: 1 1 260px;
  min-width: 210px;
  margin-bottom: 20px;
  border-left: 3px solid #F0B51C;
}

.comparison-box {
  background: #F6F7F9;
  border-radius: 16px;
  padding: 28px 20px 18px 20px;
  flex: 1 1 220px;
  border-left: 4px solid #214276;
  min-width: 200px;
  margin-bottom: 24px;
  box-shadow: 0 1px 8px rgba(32,66,118,0.05);
}

/* TESTIMONIALS */
.testimonials-section, .testimonial-cards {
  background: #fff;
}
.testimonial-slider,
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  min-width: 240px;
  max-width: 370px;
  background: #F6F7F9;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(32,66,118,0.07);
  font-style: italic;
  color: #214276;
  position: relative;
}
.testimonial-card p {
  color: #214276;
  font-size: 1.05rem;
  font-style: italic;
}
.testimonial-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: space-between;
  font-style: normal;
}
.testimonial-info span {
  color: #214276;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.stars img {
  width: 22px;
  height: 22px;
}

/* BLOG ARTICLE CARDS & FEATURED POST */
.article-list article {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(32,66,118,0.09);
  padding: 24px 16px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 220px;
  transition: box-shadow 0.19s, transform 0.16s;
}
.article-list article:hover {
  box-shadow:0 6px 28px 0 rgba(240,181,28,0.13);
  background: #F6F7F9;
  transform: translateY(-3px) scale(1.015);
}
.featured-post {
  background: #F0B51C;
  color: #214276;
  border-radius: 16px;
  padding: 28px 22px;
  margin-bottom: 20px;
  box-shadow: 0 3px 14px rgba(240,181,28,0.10);
}
.featured-post h3 { color: #214276; }
.featured-post a {
  color: #214276;
  font-weight: 800;
  text-decoration: underline;
  margin-top: 10px;
  display: inline-block;
}

.filters-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 15px;
}
.filters-categories a {
  background: #F6F7F9;
  color: #214276;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 20px;
  font-weight: 700;
  padding: 4px 16px;
  transition: background 0.18s, color 0.16s;
}
.filters-categories a:hover {
  background: #F0B51C;
  color: #fff;
}

/* PROCESS STEPS FLEX LAYOUTS */
.process-steps,
.process-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 18px;
}
.step {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 7px rgba(32,66,118,0.06);
  padding: 18px 20px 14px;
  flex: 1 1 200px;
  max-width: 260px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.13s, background 0.18s;
}
.step img {
  width: 34px; height: 34px;
}

.step:hover {
  background: #F0B51C;
  color: #214276;
  box-shadow: 0 4px 18px 0 rgba(240,181,28,0.15);
}
.step:hover h3, .step:hover p { color: #214276; }
.step h3 { color: #214276; font-size: 1.17rem; }

/* PRICING TABLE */
.pricing-tables {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 24px;
}
.pricing-tables table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 18px 0 rgba(32,66,118,0.05);
}
.pricing-tables th,
.pricing-tables td {
  padding: 16px 12px;
  text-align: left;
  border-bottom: 1px solid #F6F7F9;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
}
.pricing-tables th {
  color: #fff;
  background: #214276;
  font-size: 1.11rem;
}
.pricing-tables tr:last-child td { border-bottom: none; }

/* FAQ LISTS */
.faq-list, .pricing-faq dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-list dt, .pricing-faq dt {
  font-weight: 700;
  color: #214276;
  margin-top: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.faq-list dd, .pricing-faq dd {
  margin-left: 12px;
  color: #214276;
  font-size: 1rem;
}

/* CONTACT & INFO SECTIONS */
.contact-info-summary, .contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.08rem;
}
.contact-info-summary img, .contact-details-list img { vertical-align: middle; margin-right: 6px; }

/* MISCELLANEOUS */
.client-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.blog-hero-section, .blog-listing-section, .thank-you-section {
  background: #F6F7F9;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(32,66,118,0.09);
}

.next-steps {
  background: #fffbea;
  padding: 16px 18px;
  border-left: 4px solid #F0B51C;
  border-radius: 10px;
}

/* LEGAL SECTIONS */
.legal-section {
  background: #f6f7f9;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(32,66,118,0.03);
}
.legal-section h1, .legal-section h2, .legal-section h3 {
  color: #214276;
}

.legal-section ul, .legal-section .user-rights-obligations ul { padding-left: 20px; }
.user-rights-obligations {
  background: #fff;
  border-radius: 12px;
  padding: 16px 12px;
  margin-top: 14px;
}

/* RESPONSIVE ------------------------------------------------------ */
@media (max-width: 1024px) {
  .container {
    max-width: 990px;
  }
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 850px) {
  .features-section .feature-grid { flex-direction: column; gap: 22px; }
  .feature-item { width: 100%; min-width: unset; }
  .testimonial-slider, .testimonial-cards, .card-container, .team-bios, .article-list, .process-steps, .process-flow {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .header-flex { flex-direction: row; gap: 10px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .container { padding: 0 10px; }

  .hero-section .container,
  .cta-section .container,
  .section .container,
  .content-wrapper {
    padding: 0;
    max-width: 100%;
  }
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 0 12px 0;
  }
  .feature-item,
  .team-member,
  .comparison-box {
    width: 100%;
    min-width: unset;
    max-width: none;
    padding: 18px 14px;
  }
  .hero-section, .cta-section, .pricing-section, .section,
  .about-hero-section, .values-mission-section, .achievements-section,
  .services-list-section, .process-section, .thank-you-section {
    padding: 26px 5px;
    margin-bottom: 36px;
  }
  .testimonials-section .container, .testimonials-section .content-wrapper { padding: 0; }
}

@media (max-width: 500px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.28rem; }
  .hero-section h1 { font-size: 1.3rem; }
  .btn, .btn-primary, .btn-secondary, button {
    font-size: 0.98rem;
    padding: 10px 16px;
  }
  .content-wrapper { padding: 0; gap: 14px; }
}

/* FLEX: TEXT-IMAGE, CARD-CONTENT */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
}

.section, .card-container > *, .card, .feature-item, .testimonial-card,
.comparison-box, .team-member, .step, .article-list > * {
  margin-bottom: 20px;
}
/* END CRITICAL SPACING */

/* MOBILE NAVIGATION ------------------------------------------------------ */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  font-size: 2rem;
  border: none;
  color: #214276;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 102;
  box-shadow: 0 1.5px 7px #F0B51C44;
  transition: background 0.17s, color 0.14s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F0B51C;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: #214276;
  color: #fff;
  z-index: 1100;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.83,.01,.47,1.02);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 0 24px 0;
  visibility: hidden;
}
.mobile-menu.opened {
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(.83,.01,.47,1.02);
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 20px 4px 0;
  font-size: 2.4rem;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1110;
  transition: color 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #F0B51C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  width: 100%;
  margin-top: 28px;
  padding-left: 28px;
  padding-right: 24px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.23rem;
  padding: 8px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 18px;
  width: 100%;
  display: block;
  transition: background 0.15s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F0B51C;
  color: #214276;
}

@media (max-width: 850px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
/* Hide mobile menu by default on desktop */
@media (min-width: 851px) {
  .mobile-menu {
    display: none;
  }
}

/* COOKIE CONSENT BANNER --------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  color: #214276;
  padding: 22px 16px 18px 16px;
  box-shadow: 0 -1.5px 18px #2142761f;
  z-index: 1200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: center;
  font-size: 1rem;
  border-top: 3px solid #F0B51C;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner .cookie-text {
  flex: 1 1 180px;
  max-width: 420px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  background: #214276;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 25px;
  padding: 9px 18px;
  cursor: pointer;
  font-size: 1.02rem;
  transition: background 0.2s, color 0.14s, box-shadow 0.15s;
}
.cookie-btn.accept-all {
  background: #F0B51C;
  color: #214276;
}
.cookie-btn.reject-all {
  background: #F65C25;
  color: #fff;
}
.cookie-btn.settings {
  background: #F6F7F9;
  color: #214276;
  border: 1.5px solid #214276;
}
.cookie-btn:hover, .cookie-btn:focus {
  opacity: 0.85;
  box-shadow: 0 2px 8px 0 #21427621;
}

/* COOKIE SETTINGS MODAL --------------------------------------------------- */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(33,66,118,0.57);
  z-index: 1230;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal.open { opacity: 1; pointer-events: auto; }
.cookie-modal .modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px 30px 22px 30px;
  max-width: 370px;
  width: 90vw;
  box-shadow: 0 8px 32px #F0B51C25;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: modalPopIn 0.34s cubic-bezier(.71,-0.04,.45,.97);
}
@keyframes modalPopIn {
  from { transform: scale(0.86) translateY(28px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .modal-box h3 {
  color: #214276;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  background: #F6F7F9;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 1.01rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-category label {
  font-weight: 600;
  color: #214276;
}
.cookie-category input[type="checkbox"] {
  accent-color: #F0B51C;
  width: 18px;
  height: 18px;
}
.cookie-category .always-on {
  font-weight: 600;
  color: #F65C25;
  margin-left: 8px;
}
.modal-actions {
  margin-top: 18px;
  width: 100%;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 100px;
}
@media (max-width: 490px) {
  .cookie-modal .modal-box {
    padding: 18px 6vw 12px 6vw;
  }
}

/* ENERGETIC VIBRANT EFFECTS (Bolding, Colors, Shadows) */
.section, .hero-section, .cta-section, .features-section, .services-list-section, .process-section {
  box-shadow: 0 2px 30px 0 #F0B51C0b;
}
h1, h2 {
  text-shadow: 0 3px 24px #F0B51C1c, 0 1px 0 #fff;
}
.btn, .btn-primary, .btn-secondary, button, .cookie-btn {
  box-shadow: 0 1.5px 10px 0 #21427622;
}
.btn:active, .btn-primary:active, button:active, .btn-secondary:active, .cookie-btn:active {
  transform: scale(0.96);
}

/* UTILITIES ---------------------------------------------------------- */
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.pt-24 { padding-top: 24px; }
.pb-20 { padding-bottom: 20px; }
.text-center { text-align: center; }

/* PRINT */
@media print {
  .main-nav, .header-flex, .footer-flex, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}
