/* ========================================================
   NATURE ORGANIC BRAND THEME FOR STEADYTORQUE COURIERS
   Designed by: Senior CSS/UX Developer
   Brand: SteadyTorque Couriers – Professional, trustworthy, organic, nature-inspired
   ======================================================== */

/* 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;
  vertical-align: baseline;
  box-sizing: border-box;
  font-family: inherit;
}

html {
  font-size: 16px;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #223028;
  background-color: #F8F7F2; /* natural light oatmeal */
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #39734F;
  text-decoration: none;
  transition: color .2s ease;
}
a:hover, a:focus {
  color: #C06412;
}

strong, b {
  font-weight: 700;
}
ul, ol {
  padding-left: 1.5em;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* ORGANIC, EARTHY COLOR PALETTE */
:root {
  --color-primary: #17375E; /* Brand navy */
  --color-secondary: #F4F4F4; /* Soft warm gray */
  --color-accent: #C06412;   /* Earthy orange/brown accent */
  --color-text: #223028;     /* Deep forest green/brown for text */
  --color-bg-light: #F8F7F2; /* Light oatmeal background */
  --color-organic-green: #39734F; /* Organic green accent */
  --color-muted-brown: #A29782;   /* Subtle muted brown for backgrounds */
  --color-shadow: rgba(52, 62, 54, 0.09); /* Light organic shadow */
  --color-shadow-med: rgba(52, 62, 54, 0.15);
  --color-white: #FFF;
}

/* TYPOGRAPHY SCALE & HIERARCHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #17375E;
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
h1 { font-size: 2.25rem; margin-bottom: 18px; }
h2 { font-size: 1.8rem;  margin-bottom: 16px; }
h3 { font-size: 1.2rem;  margin-bottom: 10px; }
h4 { font-size: 1rem; margin-bottom: 8px; }
p, li, ul, ol { font-size: 1rem; }
.subheadline {
  color: #39734F;
  font-weight: 500;
  font-size: 1.18rem;
  margin-bottom: 18px;
}

/* =================== LAYOUT CONTAINERS ================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 1024px) {
  .section {
    padding: 32px 12px;
    margin-bottom: 42px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    padding: 24px 5px 24px 5px;
    margin-bottom: 30px;
  }
}

/* =============== ORGANIC HEADER & NAVIGATION ============ */
header {
  background: var(--color-white);
  box-shadow: 0 2px 16px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo img {
  height: 44px;
  width: auto;
  padding: 4px 0;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-primary);
  background: transparent;
  padding: 7px 12px;
  border-radius: 18px;
  transition: background .2s, color .2s;
  position: relative;
}
.main-nav a.cta {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 1px 6px var(--color-shadow-med);
  border-radius: 18px 36px 18px 36px / 30px 16px 30px 16px ;
  font-weight: 700;
  margin-left: 6px;
  letter-spacing: .02em;
  transition: background 0.18s, color 0.18s, box-shadow 0.14s;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #39734F;
  color: #fff;
  box-shadow: 0 3px 12px var(--color-shadow-med);
}
.main-nav a:hover, .main-nav a:focus {
  background-color: #E9E6DC;
  color: #39734F;
}

/* --- Hide main nav on mobile --- */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
}

/* --- Mobile menu toggle (burger) --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  padding: 8px;
  margin-left: 10px;
  border-radius: 40px;
  transition: background .18s;
  cursor: pointer;
  z-index: 2002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #D6DBC8;
  outline: none;
  color: #39734F;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }
}

/* ================= MOBILE MENU STYLES ================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(140deg, #F8F7F2 70%, #D6DBC8 100%);
  z-index: 2000;
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(.59,.15,.4,1.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 24px;
  box-shadow: 6px 0 36px 0 var(--color-shadow-med);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  margin-left: 16px;
  padding: 8px 12px;
  color: var(--color-primary);
  border-radius: 20px;
  align-self: flex-end;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E9E6DC;
  color: #39734F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 32px;
  padding-left: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.16rem;
  color: #17375E;
  padding: 14px 8px;
  border-radius: 14px;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D6DBC8;
  color: #39734F;
}

/* OVERLAY for mobile menu when open */
body.mobile-menu-open {
  overflow: hidden;
}

/* ================= ORGANIC HERO STYLES ================ */
.hero {
  background: linear-gradient(120deg, #EEF3E7 55%, #EAE2D4 100%);
  min-height: 380px;
  border-radius: 0 0 64px 32px / 0 0 34px 48px ;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 48px;
  box-shadow: 0 4px 32px var(--color-shadow);
}
.hero .container {
  display: flex;
  align-items: center;
  height: 100%;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 520px;
  padding: 60px 0 52px 0;
}
.hero h1 {
  color: #17375E;
  font-size: 2.7rem;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

@media (max-width: 900px) {
  .hero {
    border-radius: 0 0 36px 20px / 0 0 24px 30px ;
    min-height: 260px;
    margin-bottom: 28px;
  }
  .hero .content-wrapper {
    padding: 36px 0 34px 0;
    max-width: 98vw;
  }
}
@media (max-width: 600px) {
  .hero {
    border-radius: 0 0 20px 16px / 0 0 12px 20px ;
    min-height: unset;
  }
  .hero .content-wrapper {
    padding: 20px 0 20px 0;
  }
  .hero h1 { font-size: 1.45rem; }
}

/* ============= FEATURE & SERVICE LAYOUTS (FLEX) ============= */
.feature-grid, .service-list, .service-grid, .process-grid, .pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 24px;
}
.feature-item, .service-item, .process-step, .pricing-plan {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-white);
  box-shadow: 0 1.5px 18px var(--color-shadow);
  border-radius: 38px 24px 32px 24px / 22px 38px 24px 30px;
  padding: 28px 26px 22px 26px;
  margin-bottom: 20px;
  min-width: 250px;
  min-height: 190px;
  flex: 1 1 245px;
  transition: box-shadow .2s, transform .18s;
  position: relative;
  border: 1.5px solid #EEF3E7;
}
.feature-item img, .service-item img, .process-step img {
  height: 32px;
  width: 32px;
  margin-bottom: 8px;
  filter: drop-shadow(0 1px 4px #A2978222);
}
.feature-item:hover, .service-item:hover, .process-step:hover, .pricing-plan:hover {
  box-shadow: 0 2.5px 32px var(--color-shadow-med);
  transform: translateY(-4px) scale(1.015);
}

@media (max-width: 768px) {
  .feature-grid, .service-list, .service-grid, .process-grid, .pricing-table {
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
  }
  .feature-item, .service-item, .process-step, .pricing-plan {
    min-width: 0;
    width: 100%;
    padding: 20px 14px 16px 14px;
  }
}

/* PRICING CARDS EXTRAS */
.pricing-table {
  margin-bottom: 28px;
}
.pricing-plan {
  border: 2px solid #EAE2D4;
  background: #FFFDF9;
  margin-right: 0;
  margin-left: 0;
}
.pricing-plan h3 {
  font-size: 1.1rem;
  color: #39734F;
}
.pricing-plan strong {
  color: #17375E;
  font-weight: 700;
}

/* ==================== SPECIAL SECTION / CARD DESIGN ============ */
.cta-box {
  background: #E4EEE3;
  border-radius: 36px 20px 30px 36px / 38px 32px 32px 18px;
  box-shadow: 0 4px 32px var(--color-shadow-med);
  padding: 38px 32px 32px 32px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border: 1.5px solid #D6DBC8;
  max-width: 520px;
}
.cta-box h2 { color: #17375E; font-size: 1.5rem; }

@media (max-width: 680px) {
  .cta-box {
    padding: 18px 9px 16px 12px;
    border-radius: 22px 14px 20px 22px/14px 21px 11px 12px;
    max-width: 99vw;
  }
}

/* ==================== TESTIMONIALS & CARDS ================ */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.testimonial-card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 30px 24px 26px 31px / 21px 38px 28px 23px;
  box-shadow: 0 2.5px 18px var(--color-shadow);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 230px;
  border: 1.2px solid #D6DBC8;
  color: #223028;    /* guarantee dark text on light bg for accessibility */
}
.testimonial-card b { color: #39734F; font-weight: 600; font-size: 1rem; }

@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 100%;
    padding: 14px;
  }
}

/* ============ FAQ ACCORDION AND TEXT SECTIONS =============== */
.faq-list, .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
.faq-item {
  background: #F7F5EF;
  border: 1.3px solid #ECE6DA;
  border-radius: 22px 18px 16px 20px / 16px 24px 18px 18px;
  box-shadow: 0 .5px 8px var(--color-shadow);
  padding: 18px 18px 12px 20px;
  margin-bottom: 20px;
  transition: box-shadow .16s;
}
.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: #39734F;
  font-weight: 600;
}
.faq-item p {
  color: #223028;
}
.faq-item:hover {
  box-shadow: 0 2px 20px var(--color-shadow-med);
}

.text-section {
  margin: 18px 0 20px 0;
}
.text-section ul {
  margin-top: 10px;
  padding-left: 24px;
}
.text-section li {
  margin-bottom: 8px;
  line-height: 1.6;
  list-style-type: disc;
}
.text-section img {
  vertical-align: middle;
  width: 20px; height: 20px;
  margin-right: 8px;
}

/* ============ SPECIAL CARD/LIST CONTAINERS ================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* =============== BUTTONS & CALLS TO ACTION ================= */
.cta, button, .btn {
  display: inline-block;
  background: var(--color-accent);
  color: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 12px 28px;
  border: none;
  border-radius: 28px 36px 28px 16px/22px 24px 25px 19px;
  cursor: pointer;
  box-shadow: 0 1.5px 8px var(--color-shadow);
  margin: 10px 0 0 0;
  transition: background 0.21s, box-shadow 0.15s, color 0.14s, transform 0.11s;
  outline: none;
  letter-spacing: .013em;
}
.cta:hover, .btn:hover, .cta:focus, button:focus {
  background: #39734F;
  color: #FFF;
  box-shadow: 0 5px 24px var(--color-shadow-med);
  transform: translateY(-1.5px) scale(1.018);
}

/* --- Ensure minimum touch targets on mobile --- */
@media (max-width: 600px) {
  .cta, button, .btn {
    width: 100%;
    padding: 13px 0;
    font-size: 1rem;
  }
}

/* ========== ORGANIC FOOTER =========== */
footer {
  background: linear-gradient(120deg, #E4EEE3 65%, #EEF3E7 100%);
  color: #17375E;
  font-size: 0.97rem;
  margin-top: 40px;
  padding: 36px 0 18px 0;
  border-radius: 38px 0 0 0 / 22px 0 0 0 ;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.footer-menu a {
  color: #17375E;
  font-weight: 600;
  background: transparent;
  border-radius: 11px;
  padding: 7px 10px;
  transition: background .18s, color .18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #E9E6DC;
  color: #39734F;
}
footer p {
  font-size: 0.95rem;
  color: #223028;
  padding-top: 6px;
}
@media (max-width: 700px) {
  footer {
    padding: 18px 0 10px 0;
    border-radius: 20px 0 0 0 / 10px 0 0 0 ;
  }
  .footer-menu {
    gap: 8px;
  }
  .footer-legal {
    gap: 10px;
  }
}

/* ========== COOKIE CONSENT BANNER AND MODAL ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(92deg, #FFFDF9 85%, #E4EEE3 100%);
  border-radius: 28px 28px 0 0 / 38px 30px 0 0 ;
  box-shadow: 0 -2px 16px var(--color-shadow);
  padding: 18px 24px 18px 18px;
  z-index: 3500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(.45,.07,.7,1.02), opacity 0.22s;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-text {
  flex: 1 1 180px;
  color: #223028;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  background: var(--color-accent);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  padding: 8px 20px;
  font-size: .95rem;
  cursor: pointer;
  box-shadow: 0 1px 6px var(--color-shadow-med);
  transition: background .19s, color .15s, box-shadow .16s;
}
.cookie-banner .cookie-btn.settings {
  background: #D6DBC8;
  color: #39734F;
}
.cookie-banner .cookie-btn.reject {
  background: #A29782;
  color: #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #39734F;
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.98em;
    padding: 14px 6px 14px 6px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    width: 100%;
  }
  .cookie-banner .cookie-btn {
    width: 100%;
    font-size: 1em;
  }
}

/* COOKIE MODAL OVERLAY & DIALOG */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(43, 40, 31, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #F7F5EF;
  min-width: 320px;
  max-width: 95vw;
  padding: 36px 32px 24px 32px;
  border-radius: 38px 19px 29px 38px / 30px 38px 22px 28px;
  box-shadow: 0 6px 48px var(--color-shadow-med);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #223028;
  animation: fadeIn .35s cubic-bezier(.5,.09,.32,1.07);
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #39734F;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  margin-bottom: 7px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #39734F;
  width: 21px;
  height: 21px;
}
.cookie-modal .toggle-label {
  font-size: 1rem;
}
.cookie-modal .cookie-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  align-items: center;
}
.cookie-modal .cookie-btn-row button {
  border-radius: 24px;
  padding: 7px 28px;
  font-weight: 600;
  color: #FFF;
}
.cookie-modal .accept {
  background: #39734F;
}
.cookie-modal .reject {
  background: #C06412;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #A29782;
  font-size: 2.1rem;
  cursor: pointer;
  transition: color .12s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #39734F;
}
@media (max-width: 500px) {
  .cookie-modal {
    min-width: unset;
    padding: 16px 7px 14px 9px;
    border-radius: 18px 11px 11px 13px / 10px 17px 11px 16px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(.93); }
  to { opacity: 1; transform: scale(1); }
}

/* ========== THANK YOU/CONFIRMATION SECTION ========== */
.thank-you-section {
  background: #EEF3E7;
  border-radius: 38px 32px 22px 22px / 30px 18px 24px 35px ;
  box-shadow: 0 2px 16px var(--color-shadow);
  padding: 44px 0 42px 0;
  margin-bottom: 60px;
}
.thank-you-section h1, .thank-you-section h2 {
  color: #17375E;
  margin-bottom: 16px;
}
.confirmation-message {
  padding: 24px 32px;
  background: #FFF;
  border-radius: 24px 24px 24px 18px;
  box-shadow: 0 2px 12px var(--color-shadow-med);
  max-width: 480px;
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.confirmation-message ul {
  margin-bottom: 14px;
}

/* ========== ANIMATIONS & MICRO-INTERACTIONS ========== */
a, .cta, .btn, button, .mobile-menu-toggle, .mobile-menu-close, .footer-menu a, .main-nav a {
  transition: background .17s, color .15s, box-shadow .15s, transform .12s;
}
.feature-item, .service-item, .pricing-plan, .testimonial-card, .faq-item {
  transition: box-shadow .18s, transform .12s;
}
.feature-item:hover, .service-item:hover, .pricing-plan:hover, .testimonial-card:hover {
  box-shadow: 0 3px 32px var(--color-shadow-med);
  transform: translateY(-2px) scale(1.012);
}

/* ========== SELECTION HIGHLIGHT ========== */
::selection {
  background: #E4EEE3;
  color: #17375E;
}

/* ========== FORMS (if used later) ========== */
input, textarea, select {
  border-radius: 14px;
  border: 1.2px solid #D6DBC8;
  padding: 8px 12px;
  background: #F8F7F2;
  font-family: inherit;
  font-size: 1rem;
  color: #223028;
  transition: border-color .17s;
  box-shadow: 0 0.5px 5px var(--color-shadow);
}
input:focus, textarea:focus, select:focus {
  border-color: #39734F;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #17375E;
  margin-bottom: 7px;
  display: block;
}

/* =================== RESPONSIVE DESIGN =================== */
/* Large desktop */
@media (min-width: 1400px) {
  .container {
    max-width: 1500px;
  }
}

/* General mobile font and button adjustment */
@media (max-width: 500px) {
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: .98rem; }
}

/* =================== UTILITY CLASSES =================== */
.mb-2 { margin-bottom: 14px; }
.mb-3 { margin-bottom: 24px; }
.mt-2 { margin-top: 14px; }
.mt-3 { margin-top: 24px; }
.d-flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-16 { gap: 16px; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }

/* Hide elements visually (for JS toggling): */
.visually-hidden { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* =================== NATURE/ORGANIC TEXTURE (OPTIONAL) ============== */
/* You can add a subtle background texture to the body or sections. This uses noise PNG/SVG background images if they are present. */
/* Example, uncomment if using a noise image: */
/*
body {
  background-image: url('../assets/textures/noise-light.png');
  background-repeat: repeat;
  background-size: 200px 200px;
  background-blend-mode: overlay;
}
*/
