/* =========================
   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;
  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;
  min-height: 100vh;
  color: #19325C;
  background: #F8F9FA;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.22s;
}
button, .cta {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.12s;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
/* ===========================
    COLOR VARIABLES
=========================== */
:root {
  --primary: #19325C;
  --primary-rgb: 25, 50, 92;
  --secondary: #D9A441;
  --secondary-light: #ffe6a6;
  --accent: #F8F9FA;
  --success: #43cc89;
  --danger: #EF476F;
  --info: #0072d2;
}

/* ===========================
    TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.13;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.13rem;
}
p, li, address {
  color: #2c395a;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
p {
  margin-bottom: 14px;
}
.text-section p, .text-section ul {
  margin-bottom: 14px;
}
strong, b {
  font-weight: bold;
}

/* Playful dynamic font - add a fun handwritten font for headings */
h1, h2, h3 {
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
}

/* ===========================
    HEADER & NAVIGATION
=========================== */
header {
  background: #fff;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 3px solid var(--secondary-light);
  box-shadow: 0 5px 12px rgba(var(--primary-rgb), 0.04);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  position: relative;
}
.main-nav .logo {
  margin-right: 24px;
  display: flex;
  align-items: center;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
  border-radius: 10px;
  padding: 7px 13px;
  position: relative;
  transition: background 0.21s, color 0.21s;
}
.main-nav a:hover,
.main-nav li a:focus,
.main-nav .cta.primary-btn:hover {
  background: var(--secondary-light);
  color: var(--secondary);
}
.main-nav .cta.primary-btn {
  background: var(--secondary);
  color: #fff;
  font-weight: 800;
  font-size: 1.08rem;
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 rgba(217,164,65,0.13);
  padding: 11px 26px;
  margin-left: 12px;
  display: inline-block;
  animation: pop-in-cta 0.75s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  position: relative;
}
.main-nav .cta.primary-btn:active {
  transform: scale(0.97);
}

@keyframes pop-in-cta {
  0% { transform: scale(0.6); opacity: 0; }
  95% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary);
  color: #fff;
  border-radius: 13px;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  line-height: 1;
  border: none;
  z-index: 301;
  box-shadow: 0 2px 10px rgba(25,50,92,.13);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: #ffe6a6;
}
.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255, 0.98);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.55,0,0.2,1);
  z-index: 500;
  box-shadow: -7px 0 38px -16px rgba(25,50,92,0.25);
  overflow-y: auto;
  padding: 18px 18px 36px 31px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--danger);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  align-self: flex-end;
  margin-bottom: 13px;
  border: none;
  box-shadow: 0 2px 9px rgba(239,71,111,0.08);
  transition: background 0.18s;
}
.mobile-menu-close:hover {
  background: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.37rem;
  font-weight: 800;
  padding: 12px 8px;
  color: var(--primary);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover {
  background: var(--secondary-light);
  color: var(--secondary);
}

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

/* ===========================
         HERO SECTIONS
=========================== */
.hero {
  background: linear-gradient(90deg,#ffe6a6 0%, #fffbe5 100%);
  min-height: 310px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px 0 48px;
}
.hero .container {
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  color: var(--primary);
  font-weight: 900;
  font-size: 2.5rem;
}
.hero p {
  max-width: 600px;
  color: #2c395a;
  font-size: 1.14rem;
}
.hero .cta.primary-btn {
  background: var(--primary);
  color: var(--secondary);
  font-size: 1.14rem;
  font-weight: 800;
  padding: 11px 32px;
  border-radius: 20px;
  margin-top: 6px;
}
.hero .cta.primary-btn:hover {
  background: var(--secondary);
  color: #fff;
}

/* ===========================
    SECTIONS & CONTAINERS
=========================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===========================
    FEATURES & CARDS
=========================== */
.features-grid,
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border: 2.5px solid var(--secondary-light);
  border-radius: 18px;
  box-shadow: 0 4px 24px -6px rgba(25,50,92,0.07);
  padding: 32px 28px;
  min-width: 260px;
  flex: 1 1 220px;
  transition: box-shadow 0.22s, transform 0.22s;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.feature-item img {
  width: 48px;
  height: 48px;
  transition: transform 0.19s;
}
.feature-item:hover {
  box-shadow: 0 8px 36px -8px rgba(25,50,92,0.17);
  transform: translateY(-3px) scale(1.03);
}
.feature-item:hover img {
  transform: rotate(-12deg) scale(1.11);
}
.feature-price {
  color: var(--secondary);
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  margin-top: 6px;
  background: var(--secondary-light);
  padding: 4px 13px;
  border-radius: 11px;
  display: inline-block;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px -7px rgba(25,50,92,0.09);
  padding: 28px 22px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 7px 30px -10px rgba(25,50,92,0.19);
  transform: translateY(-4px);
}

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

/* ===========================
       USP LISTS & ICONS
=========================== */
.usp-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 12px 0;
}
.usp-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fffbe5;
  border-left: 4.5px solid var(--secondary);
  padding: 11px 20px;
  border-radius: 9px;
  font-size: 1.03rem;
  box-shadow: 0 2px 8px rgba(217,164,65,0.06);
  font-weight: 600;
  color: #112044;
}
.usp-list img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 3px #ffe6a6);
}

/* ===========================
        TESTIMONIALS
=========================== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 26px -14px rgba(25,50,92,0.13);
}
.testimonials h2 {
  margin-bottom: 24px;
  font-size: 2rem;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  max-width: 430px;
  background: #fff;
  color: #16305c;
  gap: 20px;
  padding: 20px;
  border-radius: 17px;
  box-shadow: 0 2px 18px -4px rgba(25,50,92,0.13);
  border: 2px solid var(--secondary-light);
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
  z-index: 0;
}
.testimonial-card strong {
  color: var(--secondary);
  font-size: 1.04rem;
  font-weight: 700;
  margin-top: 5px;
}
.testimonial-card p {
  color: #16305c;
  font-size: 1.04rem;
}
.testimonial-card:hover {
  box-shadow: 0 9px 35px -14px rgba(25,50,92,0.19);
  transform: scale(1.025) rotate(-1deg);
}

/* Guarantee contrast on testimonials */
.testimonial-card, .testimonials {
  background: #fff;
  color: #2b385c;
}

/* ===========================
        FOOTER
=========================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 32px 0 20px 0;
  border-top: 5px solid var(--secondary);
}
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 17px;
}
.footer-nav a {
  color: var(--secondary);
  font-size: 1.02rem;
  background: rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 7px 15px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover {
  background: var(--secondary);
  color: #fff;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.98rem;
  color: #fff;
  opacity: 0.95;
}
.footer-info p{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.98rem;
  color: #fff;
  opacity: 0.95;
}

.footer-info address {
  font-style: normal;
  color: #ffe6a6;
  margin-top: 2px;
}

/* ===========================
         BUTTONS & CTAs
=========================== */
.cta,
.primary-btn,
.secondary-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 18px;
  background: var(--secondary);
  color: #fff;
  text-align: center;
  display: inline-block;
  margin-top: 10px;
  box-shadow: 0 2px 10px rgba(217,164,65,0.11);
  transition: background 0.15s, color 0.15s, box-shadow 0.22s, transform 0.12s;
  outline: none;
  border: none;
}
.primary-btn {
  background: var(--secondary);
  color: #fff;
}
.primary-btn:hover,
.primary-btn:focus {
  background: var(--primary);
  color: var(--secondary);
  transform: scale(1.04);
}
.secondary-btn {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.secondary-btn:hover,
.secondary-btn:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 5px 21px rgba(217,164,65,0.18);
  transform: translateY(-2px);
}

/* ===========================
        CONTACT SECTION
=========================== */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 17px 0 8px 0;
  align-items: center;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fffbe5;
  border-radius: 9px;
  padding: 8px 17px;
  box-shadow: 0 1px 8px rgba(217,164,65,0.05);
  font-size: 1.09rem;
  color: #00204a;
  font-weight: 700;
}
.contact-info img {
  width: 23px;
  height: 23px;
}
.map-snippet {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 15px;
  margin: 14px 0;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(25,50,92,0.06);
}

/* ===========================
        FORMS & INPUTS
=========================== */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 10px;
  border: 2px solid var(--secondary-light);
  padding: 10px 13px;
  background: #fff;
  color: var(--primary);
  margin-bottom: 15px;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  outline: none;
  box-shadow: 0 2px 8px rgba(25,50,92,0.07);
}

/* ===========================
         SPECIAL PAGES
=========================== */
.data-privacy, .gdpr-info, .terms-of-use, .cookie-policy {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 4px 18px -8px rgba(25,50,92,0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section ul {
  list-style: disc inside;
  margin-left: 17px;
  margin-bottom: 13px;
}
.text-section ul li {
  margin-bottom: 6px;
  color: #2c395a;
  font-weight: 400;
  padding-left: 2px;
}
.text-section h2 {
  font-size: 1.18rem;
  color: var(--secondary);
  margin-top: 16px;
}

/* ===========================
   COOKIE CONSENT BANNER + MODAL
=========================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: #ffe6a6;
  color: #19325c;
  border-top: 4px solid var(--secondary);
  box-shadow: 0 -4px 21px rgba(217,164,65,0.10);
  padding: 21px 16px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 1rem;
  animation: slideUpBanner 0.77s cubic-bezier(.67,0,.28,1.3);
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 13px;
  margin-left: 7px;
  margin-right: 7px;
  padding: 10px 20px;
  min-width: 100px;
  transition: background 0.2s, color 0.2s, box-shadow 0.17s;
}
.cookie-btn.accept-all {
  background: var(--success);
  color: #fff;
}
.cookie-btn.reject-all {
  background: var(--danger);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 3px 13px rgba(25,50,92,0.09);
  outline: none;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(25,50,92,0.34);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeModalIn 0.22s;
}
@keyframes fadeModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffbe5;
  border: 2px solid var(--secondary);
  border-radius: 23px;
  max-width: 410px;
  width: 95vw;
  padding: 36px 28px 22px 28px;
  box-shadow: 0 8px 55px -17px rgba(25,50,92,0.25);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: bounceInModal 0.4s cubic-bezier(.49, 1.8, .27, 1.03);
}
@keyframes bounceInModal {
  0% { transform: scale(0.7); opacity: 0; }
  75% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.24rem;
  font-weight: bold;
  margin-bottom: 7px;
  color: var(--primary);
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
}
.cookie-modal .category .switch {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 40px;
  height: 22px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #d3d3d3;
  border-radius: 22px;
  transition: background 0.23s;
}
.cookie-modal .switch input:checked + .slider {
  background: var(--success);
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.23s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(15px);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 9px;
}
.cookie-modal .modal-actions button {
  padding: 9px 17px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
}
.cookie-modal .close-modal {
  background: var(--danger);
  color: #fff;
}
.cookie-modal .close-modal:hover { background: var(--secondary); color: #fff; }

/* ===========================
      PLAYFUL ANIMATIONS
=========================== */
@keyframes bob {
  0% { transform: translateY(0px); }
  44% { transform: translateY(-8px); }
  68% { transform: translateY(2px); }
  100% { transform: translateY(0px); }
}
.feature-item img, .usp-list img {
  animation: bob 2.7s ease-in-out infinite;
  animation-delay: 0.3s;
}
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.23s, transform 0.17s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 35px -10px rgba(217,164,65,0.19);
  transform: scale(1.025) rotate(-2.2deg);
}

/* ===========================
      RESPONSIVE DESIGN
=========================== */
@media (max-width: 1023px) {
  .features-grid, .card-container, .content-grid, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .card, .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .usp-list {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
    padding: 0 12px;
  }
  header, .footer-info, .footer-nav {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.0rem;
  }
  h2 {
    font-size: 1.39rem;
  }
  .main-nav .logo img {
    height: 34px;
    width: auto;
  }
  .section,
  .testimonials,
  .data-privacy, .gdpr-info, .terms-of-use, .cookie-policy {
    padding: 26px 7px;
    margin-bottom: 32px;
  }
  .hero {
    padding: 24px 0 28px 0;
    min-height: 180px;
    margin-bottom: 26px;
  }
  .feature-item {
    padding: 18px 13px;
  }
  .footer-nav {
    gap: 15px;
    font-size: 0.97rem;
  }
  .contact-info > div {
    font-size: 0.97rem;
    padding: 8px 8px;
  }
  .map-snippet {
    padding: 7px 8px;
    font-size: 0.97rem;
    gap: 11px;
  }
  .testimonial-card {
    padding: 15px 7px;
    font-size: 0.99rem;
  }
  .mobile-nav a {
    font-size: 1.13rem;
  }
}
@media (max-width: 540px) {
  .container {
    max-width: 100vw;
    padding: 0 3vw;
  }
  .hero {
    padding: 12px 0 16px 0;
    min-height: 135px;
  }
  .footer-info {
    font-size: 0.88rem;
  }
  .footer-nav {
    font-size: 0.95rem;
    gap: 9px;
  }
}
/* ===========================
   ACCESSIBILITY/FOCUS STYLES
=========================== */
a:focus-visible, .cta:focus-visible {
  outline: 2.5px dashed var(--secondary);
  outline-offset: 2px;
}
button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2.5px solid var(--secondary);
  outline-offset: 2px;
}

/* ===========================
      UTILITIES & SPACING
=========================== */
.mb-0 { margin-bottom: 0!important; }
.mb-24 { margin-bottom: 24px!important; }
.gap-12 { gap: 12px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.w-100 { width: 100%; }
.text-center { text-align: center!important; }

/* ===========================
    PRINT BRAND FONTS
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Open+Sans:wght@400;700&display=swap');

/* ===========================
      END OF STYLE.CSS
=========================== */
