/* ==================== 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, 
main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F6F8FC;
  color: #183153;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  border: none;
  background: none;
  padding: 0;
}
:focus {
  outline: none;
}

/* ================= COLOR PALETTE: soft pastel ================= */
:root {
  --primary: #183153;
  --secondary: #E8F0FE;
  --accent: #088E85;
  --pastel-blue: #E8F0FE; /* brand secondary, bg */
  --pastel-mint: #DDF4F2;
  --pastel-pink: #FFDFF6;
  --pastel-yellow: #FFFDE2;
  --pastel-lavender: #F1EDFF;
  --pastel-green: #EBFAF2;
  --pastel-base: #ffffff;

  --text-main: #183153;
  --text-muted: #386184;
  --text-light: #6A7C9B;
  --shadow: 0 4px 14px rgba(24,49,83,0.07);
  --border-radius: 18px;
  --border-radius-sm: 12px;
  --shadow-soft: 0 2px 10px rgba(22,108,109,0.09);
  --transition: all 0.27s cubic-bezier(.4,.85,.25,1);
}

/* =============== TYPOGRAPHY =============== */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.75rem;
  line-height: 1.18;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 18px;
  letter-spacing: -.5px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.24;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1.28;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -.5px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}
p, li, ul, ol, td, th, span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
strong, b {
  color: var(--text-main);
  font-weight: bold;
}

/* =============== GENERAL LAYOUT =============== */
.container {
  width: 100%;
  max-width: 1192px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* =============== HEADER & NAVIGATION =============== */
header {
  background: var(--pastel-blue);
  box-shadow: 0 2px 8px rgba(75,100,160,0.05);
  border-bottom: 1.5px solid #edeef0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
}
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 10px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--pastel-pink);
  color: var(--accent);
}
.main-nav a.btn-primary {
  padding: 9px 22px;
  border-radius: 24px;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-left: 18px;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.main-nav a.btn-primary:hover, .main-nav a.btn-primary:focus {
  background: #04615b;
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  font-size: 2rem;
  color: var(--primary);
  border: none;
  cursor: pointer;
  margin-left: 16px;
  line-height: 1;
  transition: var(--transition);
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  color: var(--accent);
}

/* =============== MOBILE NAVIGATION =============== */
.mobile-menu {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: linear-gradient(120deg, var(--pastel-blue), var(--pastel-mint));
  box-shadow: 0 8px 22px rgba(24,49,83,0.09);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.4,.85,.25,1);
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  margin: 24px 28px 10px 0;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.27s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 24px 36px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: var(--primary);
  padding: 16px 8px 16px 0px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: var(--pastel-pink);
}

@media (max-width: 1150px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 950px) {
  .main-nav a {
    font-size: 0.96rem;
  }
}
@media (max-width: 820px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 870px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}


/* =============== SECTION & SPACING PATTERNS =============== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--pastel-base);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  padding: 32px 26px;
  min-width: 250px;
  transition: box-shadow 0.23s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(8,142,133,0.11);
}
.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;
  background: var(--pastel-lavender);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 22px rgba(24,49,83,0.06);
  padding: 20px 26px;
  margin-bottom: 24px;
  min-width: 260px;
  max-width: 430px;
  transition: box-shadow 0.33s;
  border: 1.5px solid #ece9f9;
}
.testimonial-card p {
  color: var(--text-main);
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card strong {
  color: var(--accent);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============== CUSTOM COMPONENTS =============== */
.hero {
  background: linear-gradient(120deg, var(--pastel-blue) 63%, var(--pastel-mint) 100%);
  border-radius: 0 0 42px 42px;
  box-shadow: 0 8px 34px rgba(24,49,83,0.07);
  padding-top: 70px;
  padding-bottom: 68px;
  text-align: center;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.6rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero p {
  color: var(--accent);
  font-size: 1.18rem;
}
.hero a.btn-primary {
  margin-top: 24px;
  box-shadow: 0 4px 22px rgba(8,142,133,0.13);
}

.feature-grid, .service-highlights, .service-list, .team-list, .post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature-grid > div, .service-highlights > div, .service-list > div,
.team-list > div, .post-grid > article {
  background: var(--pastel-mint);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  padding: 32px 24px 22px 24px;
  min-width: 230px;
  flex: 1 1 calc(32% - 38px);
  max-width: 365px;
  margin-bottom: 12px;
  transition: box-shadow 0.23s;
}
.feature-grid > div:hover, .service-highlights > div:hover, .service-list > div:hover,
.team-list > div:hover, .post-grid > article:hover {
  box-shadow: 0 7px 26px rgba(6,97,91,0.12);
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  color: var(--accent);
  font-size: 1rem;
}
.quick-facts span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pastel-yellow);
  border-radius: var(--border-radius-sm);
  padding: 9px 18px;
  font-weight: 500;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 12px;
}
.trust-badges span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pastel-pink);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  font-size: 0.99rem;
}

.service-list {
  margin-bottom: 14px;
}

.pricing-table {
  width: 100%;
  margin: 28px 0 22px 0;
  background: var(--pastel-base);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.pricing-table thead {
  background: var(--pastel-blue);
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 15px 16px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-main);
}
.pricing-table th {
  font-weight: 600;
}
.pricing-table tbody tr:nth-child(odd) {
  background: var(--pastel-mint);
}
.pricing-table tbody tr:nth-child(even) {
  background: var(--pastel-base);
}

.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.faq-accordion > div {
  background: var(--pastel-lavender);
  border-radius: var(--border-radius-sm);
  padding: 22px 18px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 232px;
  margin-bottom: 8px;
  transition: box-shadow 0.22s;
}
.faq-accordion > div:hover {
  box-shadow: 0 4px 20px rgba(8,142,133,0.08);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 6px 0 20px 0;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pastel-mint);
  border-radius: var(--border-radius-sm);
  padding: 8px 16px;
  font-size: 0.97rem;
}
.address-information, .opening-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pastel-lavender);
  border-radius: var(--border-radius-sm);
  padding: 8px 16px;
  margin: 0 0 12px 0;
}
.cta-contact {
  margin-top: 30px;
  text-align: left;
  background: var(--pastel-yellow);
  border-radius: var(--border-radius);
  padding: 28px 20px;
  box-shadow: var(--shadow-soft);
}
.cta-contact h2 {
  margin-bottom: 8px;
}

.embedded-map {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--pastel-mint);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 24px 16px;
  margin-top: 10px;
}

/* =============== BLOG POSTS =============== */
.post-grid {
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.post-grid > article {
  background: var(--pastel-lavender);
  min-width: 260px;
  padding: 34px 22px 22px 22px;
  box-shadow: var(--shadow-soft);
  border-radius: var(--border-radius);
  transition: box-shadow 0.22s;
  margin-bottom: 12px;
}
.post-grid > article:hover,
.post-grid > article:focus-within {
  box-shadow: 0 8px 26px rgba(7,67,177,0.12);
}
.post-grid a {
  color: var(--accent);
  font-weight: 600;
  font-family: 'Roboto', Arial, sans-serif;
  transition: color 0.18s;
}
.post-grid a:hover { color: #04615b; }

/* =============== BUTTONS =============== */
a.btn-primary, button.btn-primary, .btn-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  border-radius: 28px;
  border: none;
  padding: 12px 36px;
  margin-top: 12px;
  box-shadow: var(--shadow);
  letter-spacing: 0.6px;
  cursor: pointer;
  text-align: center;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
}
a.btn-primary:hover, button.btn-primary:hover, .btn-primary:focus {
  background: #04615b;
  color: #fff;
  box-shadow: 0 8px 32px rgba(8,142,133,0.18);
}

/* =============== FOOTER =============== */
footer {
  background: linear-gradient(92deg, var(--pastel-blue), #f9f2ff);
  margin-top: 60px;
  border-top: 1.5px solid #ebf2fd;
  box-shadow: 0 -2px 8px rgba(75,100,160,0.04);
  padding: 42px 0 0 0;
  font-family: 'Roboto', Arial, sans-serif;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  min-height: 220px;
}
.footer-brand {
  flex: 0 0 96px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  min-width: 180px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  border-radius: var(--border-radius-sm);
  padding: 7px 4px 7px 0px;
  transition: background 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--pastel-mint);
  color: var(--primary);
}
.footer-contact {
  flex: 1 1 270px;
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact img {
  width: 18px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-copy {
  flex: 1 1 100%;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.96rem;
  color: #8fa7c6;
  padding: 30px 0 26px 0;
  margin-top: 10px;
  border-top: 1.5px solid #e1e7f2;
}

/* ================= COOKIE CONSENT BANNER ================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(120deg, var(--pastel-blue), var(--pastel-mint));
  box-shadow: 0 -5px 24px rgba(24,49,83,0.06);
  padding: 26px 12px 22px 12px;
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 36px;
  border-top: 2px solid #dfeaff;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: fadeInCookie 0.9s;
}
@keyframes fadeInCookie {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-text {
  color: var(--text-main);
  max-width: 480px;
  flex: 1 1 180px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
}
.cookie-banner .cookie-btn {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 9px 26px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-right: 0;
  transition: background 0.22s, color 0.22s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: var(--pastel-lavender);
  color: var(--accent);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #04615b;
  color: #fff;
}
.cookie-banner .cookie-btn.cookie-settings:hover,
.cookie-banner .cookie-btn.cookie-settings:focus {
  background: var(--pastel-pink);
  color: var(--primary);
}

/* COOKIE MODAL POPUP */
.cookie-modal-bg {
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24,49,83,0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .32s;
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--pastel-base);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(24,49,83,0.13);
  padding: 32px 22px 28px 22px;
  max-width: 420px;
  min-width: 280px;
  min-height: 140px;
  position: relative;
  z-index: 4010;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  font-size: 1.38rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--pastel-yellow);
  border-radius: var(--border-radius-sm);
  padding: 11px 12px;
}
.cookie-category label {
  font-weight: 500;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  flex: 1;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--accent);
  width: 1.2em;
  height: 1.2em;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: var(--accent);
  cursor: pointer;
  transition: color 0.20s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #04615b;
}

/* =============== FORMS, INPUTS (if any for future) =============== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border: 1.5px solid #e2eaec;
  border-radius: var(--border-radius-sm);
  padding: 13px 14px;
  background: #FFF;
  color: var(--text-main);
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  background: #f5fcfa;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 7px;
  display: block;
}

/* =============== UTILITIES, MICRO-INTERACTIONS, ANIMATION =============== */
.card, .service-list > div, .team-list > div, .feature-grid > div, .testimonial-card, .faq-accordion > div, .post-grid > article {
  transition: box-shadow 0.22s, transform 0.14s;
}
.card:hover, .feature-grid > div:hover, .service-list > div:hover, .post-grid > article:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.016);
  box-shadow: 0 10px 32px rgba(8,142,133,0.13);
}

button:active, a.btn-primary:active {
  transform: scale(0.98);
}

::-webkit-scrollbar {
  width: 13px;
  background: var(--pastel-blue);
}
::-webkit-scrollbar-thumb {
  background: var(--pastel-mint);
  border-radius: 8px;
}

/* =============== RESPONSIVE DESIGN =============== */
@media (max-width: 1020px) {
  .container { max-width: 94vw; }
  .footer-nav { min-width: 135px; }
}
@media (max-width: 900px) {
  .feature-grid > div, .service-highlights > div, .service-list > div, .team-list > div, .post-grid > article {
    flex: 1 1 calc(48% - 28px);
    min-width: 200px;
    max-width: 312px;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.29rem; }
  h3, .h3 { font-size: 1.1rem; }
  .hero {
    padding-top: 44px;
    padding-bottom: 36px;
  }
  .container { padding-left: 10px; padding-right: 10px; }
  .footer-contact { min-width: initial; }
  .feature-grid, .service-highlights, .service-list, .team-list, .post-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .service-highlights > div, .service-list > div,
  .team-list > div, .post-grid > article {
    min-width: 0; max-width: 100%;
    padding: 22px 11px 21px 12px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 18px 7px;
  }
  .footer-nav { flex-direction: row; gap: 10px; flex-wrap: wrap; min-width: 0; margin-top: 22px; }
  .footer-contact { padding-bottom: 12px; }
}
@media (max-width: 570px) {
  h1, .h1 { font-size: 1.42rem; }
  h2, .h2 { font-size: 1.08rem; }
  h3, .h3 { font-size: 0.99rem; }
  .footer-copy { padding: 16px 0 12px 0; font-size: 0.93rem; }
  .footer-brand img { max-width: 70px; }
  .container { max-width: 99vw; padding-left: 3vw; padding-right: 3vw; }
  .hero { padding: 22px 3vw 18px 3vw; }
  .main-nav a.btn-primary { padding: 8px 11px; min-width: 120px; font-size: 0.97rem; }
}
@media (max-width: 768px) {
  .content-grid, .testimonial-slider, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .section {
    padding: 22px 7px;
    margin-bottom: 34px;
  }
  section {
    padding: 22px 7px;
    margin-bottom: 34px;
  }
}

/* =============== MISCELLANEOUS =============== */
blockquote {
  border-left: 3px solid var(--accent);
  background: var(--pastel-mint);
  padding: 14px 18px;
  margin-bottom: 16px;
  border-radius: var(--border-radius-sm);
  font-style: italic;
}
hr {
  border: none;
  border-top: 1.5px solid #ddeef8;
  margin: 36px 0 20px 0;
}

/* Prevent content overlap with mobile menu and banner */
body.menu-open, html.menu-open {
  overflow: hidden;
}
