/* ========================
   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 {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  background: #F7FAF9;
  color: #234E70;
  font-family: 'Lato', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #234E70;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #82C3A6;
  outline: none;
}

ul, ol {
  list-style: none;
}

hr {
  border: none;
  border-top: 1px solid #E8F1F2;
  margin: 32px 0;
}

/* ========================
   TYPOGRAPHY
   ======================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  color: #234E70;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.4rem; line-height: 1.2;}
h2 { font-size: 1.8rem; line-height: 1.3;}
h3 { font-size: 1.2rem; line-height: 1.4;}
h4, h5, h6 { font-size: 1rem; line-height: 1.5; }
p, ul, ol, li, span {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: #234E70;
}
strong, b {
  font-weight: bold;
}

@media (min-width: 700px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.3rem; }
}

/* ========================
   LAYOUT & CONTAINER
   ======================== */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(35,78,112,0.04);
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
}


/* ========================
   HEADER & NAV
   ======================== */

header {
  background: #ffffffcc;
  box-shadow: 0 4px 16px rgba(35, 78, 112, 0.04);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  color: #234E70;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #82C3A6;
  background: #E8F1F2;
}

.btn-primary {
  background: #234E70;
  color: #fff;
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 6px rgba(35,78,112,0.07);
  border: none;
  outline: none;
  cursor: pointer;
  display: inline-block;
  margin-left: 12px;
  transition: background 0.25s, color 0.2s, box-shadow 0.2s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #82C3A6;
  color: #234E70;
  box-shadow: 0 4px 16px #234E7015;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 12px;
  }
  header .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 800px) {
  header .container {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: auto;
  }
}


/* ===========================
   MOBILE MENU & BURGER BUTTON
   =========================== */

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #234E70;
  padding: 0 16px;
  cursor: pointer;
  z-index: 55;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #82C3A6;
}

@media (min-width: 801px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(246,249,248, 0.96);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.5,.42,0,1.02);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  margin: 26px 20px 18px 0;
  font-size: 2rem;
  background: none;
  border: none;
  color: #234E70;
  cursor: pointer;
  z-index: 100;
  align-self: flex-end;
  transition: color 0.24s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #82C3A6;
}

nav.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-left: 32px;
  margin-top: 14px;
  width: 100%;
}

.mobile-nav a {
  color: #234E70;
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  font-weight: 600;
  background: none;
  border-radius: 8px;
  padding: 14px 14px 14px 0;
  width: 100%;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #82C3A6;
  background: #E8F1F2;
}

@media (min-width:801px){
  .mobile-menu {display:none;}
}

/* ========================
   HERO SECTIONS
   ======================== */
.hero {
  background: #E8F1F2;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 4px 20px 0 rgba(35, 78, 112, 0.07);
  margin-bottom: 40px;
  padding: 44px 0 50px 0;
  min-height: 220px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #234E70;
}
.hero p {
  font-size: 1.18rem;
  max-width: 48ch;
  margin-bottom: 8px;
}

@media (min-width:700px) {
  .hero h1 { font-size: 2.7rem;}
  .hero p { font-size: 1.22rem;}
}
@media (max-width: 700px) {
  .hero {
    min-height: 110px;
    margin-bottom: 24px;
    padding: 28px 0 30px 0;
  }
}

/* ========================
   FEATURES/UL SECTIONS
   ======================== */
.features {
  margin-bottom: 60px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.features .content-wrapper > h2 {
  margin-bottom: 8px;
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 10px 0;
}
.features ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-size: 1.06rem;
  color: #234E70;
  background: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow:0 1.5px 5px 0 rgba(35,78,112,0.03);
}
.features ul li img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: #E8F1F2;
  border-radius:7px;
  padding:5px;
}

@media (max-width: 700px) {
  .features ul li { font-size: 0.97rem; padding: 12px 12px;}
  .features ul li img { width: 26px; height: 26px; padding:3px;}
}

/* ========================
   SERVICES & OFFER LISTS
   ======================== */
.services ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 14px 0 0 0;
  padding:0;
  width: 100%;
}
.services ul li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(35,78,112,0.06);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
  border-left: 5px solid #82C3A6;
  transition: box-shadow 0.2s, border 0.2s;
}
.services ul li:hover,
.services ul li:focus-within {
  box-shadow: 0 7px 30px #82C3A620;
  border-left: 5px solid #234E70;
}
.services ul li strong {
  font-size: 1.12rem;
  font-weight: 600;
  color: #234E70;
}
.services ul li b {
  font-size: 1.08rem;
  color: #234E70;
}
.services ul li span {
  color: #496B87;
  font-size: 1rem;
}

.services .text-section {
  background: #fff;
  border-radius: 11px;
  box-shadow:0 1.5px 5px 0 rgba(35,78,112,0.03);
  padding: 20px 18px;
  margin-bottom:16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width:700px){
  .services ul li{padding:12px 10px;}
  .services .text-section {padding:13px 8px;}
}

/* =======================
   ABOUT, TEAM & VALUES
   ======================= */
.about, .team, .values {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(35,78,112,0.04);
}
.about .content-wrapper, .team .content-wrapper, .values .content-wrapper {
  gap: 18px;
}
.values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top:12px;
}
.values ul li {
  background: #E8F1F2;
  border-radius: 9px;
  padding: 11px 22px;
  font-weight: 600;
  color: #234E70;
  font-size:1rem;
  margin-bottom: 6px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ========================
   TESTIMONIALS & CARDS
   ======================== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #E8F1F2;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(35,78,112,0.03);
}
.testimonials .content-wrapper {
  gap: 26px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 9px 0 rgba(35,78,112,0.08);
  border-left: 5px solid #82C3A6;
  font-size: 1.05rem;
  color: #234E70;
  transition: box-shadow 0.2s, border 0.2s;
}
.testimonial-card:focus, .testimonial-card:hover {
  border-left: 5px solid #234E70;
  box-shadow: 0 6px 27px 0 #234E7012;
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #234E70;
  font-family: 'Lato', Arial, sans-serif;
  margin-bottom: 4px;
}
.testimonial-card span {
  color: #496B87;
  font-size: .97rem;
  font-style: italic;
  margin-top:4px;
}
@media (max-width:700px) {
  .testimonial-card {padding: 14px 11px;}
}

/* ==========================
   CTA SECTIONS & BUTTONS
   ========================== */
.cta {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(35,78,112,0.07);
  margin-bottom: 55px;
  padding: 40px 20px;
}
.cta .content-wrapper {
  gap: 18px;
  align-items: center;
}
.cta h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
  text-align: center;
}
.cta .btn-primary {
  margin: 0 auto;
  display: block;
}

/* ========================
   CONTACT & LEGAL PAGES
   ======================== */
.contact-infos ul {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: 18px 0 0 0;
  color: #234E70;
}
.contact-infos ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border-radius: 9px;
  padding: 13px 20px;
  box-shadow:0 1.5px 5px 0 rgba(35,78,112,0.03);
}
.contact-infos ul li img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-form a {
  color: #234E70;
  border-bottom: 1.5px solid #82C3A6;
  padding-bottom: 1px;
  transition: border-color 0.22s, color 0.22s;
}
.contact-form a:hover, .contact-form a:focus {
  color: #82C3A6;
  border-bottom: 1.5px solid #234E70;
}

.legal {
  background: #fff;
  border-radius:14px;
  padding: 40px 24px;
  margin-bottom: 60px;
  box-shadow: 0 2px 18px 0 rgba(35,78,112,0.04);
}

/* ========================
   THANK YOU PAGE
   ======================== */
.thank-you {
  background: #E8F1F2;
  border-radius: 14px;
  margin-bottom: 44px;
  padding: 50px 20px;
  box-shadow: 0 3px 18px 0 rgba(35,78,112,0.06);
}
.thank-you .content-wrapper {
  align-items: center;
  gap: 19px;
  text-align: center;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #234E70;
  color: #fff;
  padding: 55px 0 24px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer img {
  width: 76px;
  height: auto;
  margin-bottom: 19px;
}
.footer-menu, footer .main-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-menu a, footer .main-nav a {
  color: #fff;
  opacity: 0.92;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.2s, opacity 0.2s;
}
.footer-menu a:hover, footer .main-nav a:hover,
.footer-menu a:focus, footer .main-nav a:focus {
  color: #82C3A6;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: .96rem;
  color: #fff;
}
.footer-contact img {
  width: 21px;
  margin-right: 7px;
  vertical-align: middle;
  margin-bottom: 0;
}
.legal-disclaimer {
  margin-top: 19px;
  font-size: 0.97rem;
  width: 100%;
  text-align: center;
  color: #C7D0DB;
}
@media (max-width: 900px){
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .legal-disclaimer {text-align:left; margin-top:30px;}
}

/* =========================
   FLEXBOX LAYOUT UTILITIES
   ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 15px rgba(35,78,112,0.09);
  transition: box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 30px #234E7017;
}
.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) {
  .content-grid {flex-direction: column;}
  .text-image-section {flex-direction: column; align-items: flex-start; gap:20px;}
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =========================
   BUTTONS & MICRO-ACTIONS
   ========================= */
button, [type="button"], [type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 9px;
  padding: 10px 26px;
  background: #234E70;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
  outline: none;
}
button:hover, button:focus, .btn-primary:hover, .btn-primary:focus {
  background: #82C3A6;
  color: #234E70;
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
   ============================= */
#cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1000;
  background: #E8F1F2;
  border-top: 2px solid #82C3A6;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  padding: 18px 30px;
  box-shadow: 0 -3px 24px 0 #234E7010;
  font-family: 'Lato', Arial, sans-serif;
  animation: fadeInUp 0.5s cubic-bezier(.45,.62,.25,1.06);
}
#cookie-banner.hide {
  display: none !important;
}
#cookie-banner .cookie-text {
  flex: 1;
  font-size: 1rem;
  color: #234E70;
}
#cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 11px;
}
#cookie-banner button,
#cookie-banner .cookie-btn {
  border-radius: 8px;
  padding: 9px 19px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  outline: none;
  background: #234E70;
  color: #fff;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
#cookie-banner .cookie-btn.secondary {
  background: #fff;
  color: #234E70;
  border: 1px solid #234E70;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
#cookie-banner .cookie-btn.secondary:hover, #cookie-banner .cookie-btn.secondary:focus {
  background: #E8F1F2;
  color: #82C3A6;
  border: 1px solid #82C3A6;
}
#cookie-banner .cookie-btn.settings {
  background: #82C3A6;
  color: #234E70;
}
#cookie-banner .cookie-btn.settings:hover {
  background: #234E70;
  color: #fff;
}

@media (max-width: 690px) {
  #cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap:18px;
    padding: 13px 9px;
    font-size: .95rem;
  }
  #cookie-banner .cookie-actions {flex-direction:column;gap:6px;align-items:flex-start;}
}

/* Cookie modal overlay */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  top:0;left:0;right:0;bottom:0;
  background:rgba(35,78,112,0.20);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}
#cookie-modal-overlay.open {
  display: flex;
  animation: fadeIn 0.3s both;
}

#cookie-modal {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 10px 50px #234E7040;
  max-width: 440px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: slideDown 0.4s cubic-bezier(.44,.8,.3,1) both;
  position:relative;
}
#cookie-modal h2 {
  font-size: 1.35rem;
}
#cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 10px 0;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.cookie-category-row label {
  font-weight: 500;
  font-size: 1.08rem;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #E8F1F2;
  border-radius: 11px;
  position: relative;
  outline: none;
  transition: background 0.15s;
  margin-left:8px;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #82C3A6;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 7px #234E7015;
  transition: left 0.15s;
}
.cookie-toggle:checked:before {
  left: 18px;
  background: #fff;
}
#cookie-modal .modal-btn-row {
  display: flex;
  flex-direction: row;
  gap: 11px;
  margin-top: 21px;
  justify-content: flex-end;
}
#cookie-modal .cookie-btn {
  padding: 9px 19px;
  border-radius: 8px;
  font-weight: 600;
}
#cookie-modal .cookie-btn.secondary {
  background: #fff;
  color: #234E70;
  border: 1px solid #234E70;
  transition:background 0.18s,color 0.18s,border 0.18s;
}
#cookie-modal .cookie-btn.secondary:hover, #cookie-modal .cookie-btn.secondary:focus {
  background: #E8F1F2;
  color: #82C3A6;
  border: 1px solid #82C3A6;
}
#cookie-modal .close-modal {
  background: none;
  color: #234E70;
  font-size: 1.7rem;
  position: absolute;
  right: 14px; top: 10px;
  border: none;
  padding: 0;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  transition: color 0.15s;
}
#cookie-modal .close-modal:focus, #cookie-modal .close-modal:hover {
  color: #82C3A6;
}

@media (max-width:430px) {
  #cookie-modal {padding:22px 6px;}
  #cookie-modal h2 {font-size:1.12rem;}
}

@keyframes fadeInUp {
  from {opacity:0;transform:translateY(40px);}
  to   {opacity:1;transform:translateY(0);}
}
@keyframes fadeIn {
  from{opacity:0;} to{opacity:1;}
}
@keyframes slideDown {
  from {transform:translateY(-60px); opacity:0;} to {transform:translateY(0); opacity:1;}
}

/* =============================
   MICRO-INTERACTIONS, HOVER FX
   ============================= */
.card, .testimonial-card, .services ul li, .features ul li, .footer-menu a, .main-nav a, .btn-primary, .mobile-nav a {
  transition: box-shadow 0.21s, color 0.18s, border 0.22s, background 0.18s;
}

.card:active, .testimonial-card:active {
  filter:brightness(0.96);
  box-shadow:0 2px 8px #234E7010;
}

input, textarea, select {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #E8F1F2;
  border-radius: 8px;
  background: #fff;
  padding: 9px 12px;
  margin-bottom: 15px;
}
input:focus, textarea:focus, select:focus {
  border-color: #82C3A6;
  outline: none;
  box-shadow:0 3px 18px 0 #234E7008;
}

::-webkit-input-placeholder {color: #A1B7CE; opacity:1;}
::-moz-placeholder {color:#A1B7CE; opacity:1;}
:-ms-input-placeholder {color:#A1B7CE; opacity:1;}
::placeholder {color:#A1B7CE; opacity:1;}

/* =========================
   RESPONSIVE FIXES
   ========================= */
@media (max-width:600px) {
  h1 {font-size:1.38rem;}
  h2 {font-size:1.07rem;}
  .section,.about,.team,.values,.cta,.testimonials,.legal,.thank-you {padding:18px 3px;}
}

@media (max-width:450px) {
  .btn-primary, button, [type=button], [type=submit] {
    padding:8px 15px;
    font-size: .97rem;
  }
  .main-nav, .footer-menu, footer .main-nav {gap:6px;}
}

/* =========================
   UTILITY CLASSES
   ========================= */
.mt-2{margin-top: 8px;}
.mt-3{margin-top: 16px;}
.mt-4{margin-top: 24px;}
.mb-2{margin-bottom: 8px;}
.mb-3{margin-bottom: 16px;}
.mb-4{margin-bottom: 24px;}
.text-center{text-align:center;}

/* =========================
   END
   ========================= */
