/* =============================================================
   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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}
body {
  background: #F7F7F7;
  color: #22331C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  transition: background 0.4s;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s;
}

/* ==================================================================
   NATURE ORGANIC BRAND PALETTE + ACCENTS
   earth, green, organic accents
   ================================================================== */
:root {
  --color-primary: #1A3353;
  --color-secondary: #EFB700;
  --color-accent: #F7F7F7;
  --color-earth: #BAB58B;
  --color-leaf: #2C6D38;
  --color-wood: #98755B;
  --color-dark: #22331C;
  --color-light: #FFF;
  --color-mid: #D8EAD3;
  --radius-soft: 20px;
  --shadow-card: 0 6px 32px 0 rgba(56,57,50,0.09);
  --shadow-hover: 0 8px 36px 0 rgba(56,57,50,0.15);
  --shadow-btn: 0 3px 10px 0 rgba(44,109,56,0.09);
}

/* ==================================================================
   TYPOGRAPHY - NATURE INSPIRED
   ================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--color-leaf);
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--color-primary);
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}

p, li, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-dark);
  font-size: 1rem;
  line-height: 1.7;
}
p {
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.15rem;
  color: var(--color-leaf);
  margin-bottom: 24px;
  font-weight: 500;
  font-style: italic;
}
strong, b {
  font-weight: 700;
}

a:hover, .button-primary:hover, .button-secondary:hover {
  color: var(--color-leaf);
}

/* ==================================================================
   COMMON LAYOUT CLASSES
   ================================================================== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 40px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--color-accent);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ==================================================================
   HEADER & NAVIGATION   (fluid + organic + flex)
   ================================================================== */
header {
  background: var(--color-earth);
  box-shadow: 0 2px 14px 0 rgba(34,51,28,0.04);
  padding: 0;
  z-index: 1002;
  position: relative;
}
header .container {
  padding-top: 16px;
  padding-bottom: 16px;
}
header .content-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
header nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 14px;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.25s, color 0.18s;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.02em;
}
header nav a:hover, header nav a:focus {
  background: var(--color-mid);
  color: var(--color-leaf);
}
.button-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-leaf);
  color: var(--color-light);
  border: none;
  padding: 10px 26px;
  border-radius: 999px;
  margin-left: 14px;
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: background 0.15s, transform 0.2s, box-shadow 0.2s;
  outline: none;
  display: inline-block;
}
.button-primary:hover, .button-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: var(--shadow-hover);
}
.button-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: transparent;
  color: var(--color-leaf);
  border: 2px solid var(--color-leaf);
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s;
  margin-left: 0;
  outline: none;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--color-leaf);
  color: var(--color-light);
  border-color: var(--color-secondary);
}

header img {
  height: 44px;
  width: auto;
  border-radius: 14px;
  margin-right: 0;
  margin-bottom: 0;
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 18px;
  right: 22px;
  background: var(--color-leaf);
  color: var(--color-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  z-index: 1020;
  box-shadow: 0 5px 18px 0 rgba(44,109,56,0.10);
  transition: background 0.18s, box-shadow 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: var(--shadow-hover);
}

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

/* ========== FLEX NAV HIDE/SHOW FOR MOBILE ========== */
header nav {
  display: none;
}
@media (min-width: 900px) {
  header nav {
    display: flex;
  }
}


/* ==================================================================
   MOBILE MENU OVERLAY - SLIDE/FLEX ONLY
   ================================================================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-light);
  box-shadow: 0 0 42px 0 rgba(44,109,56,0.13);
  transform: translateX(-101vw);
  transition: transform 0.35s cubic-bezier(0.7,0.1,0.4,1);
  padding: 14px 16px 0 18px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-leaf);
  color: var(--color-light);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.55rem;
  margin-left: auto;
  margin-right: 12px;
  margin-top: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-btn);
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 30px;
}
.mobile-nav a {
  font-size: 1.19rem;
  padding: 12px 10px;
  color: var(--color-leaf);
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.19s, color 0.16s;
  font-weight: 600;
  letter-spacing: 0.025em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-mid);
  color: var(--color-primary);
}
@media (min-width:900px) {
  .mobile-menu { display: none !important; }
}

/* Ensure content not overlapped by menu toggle */
@media (max-width: 899px) {
  header .container {
    padding-right: 60px;
    min-height: 64px;
  }
}

/* ==================================================================
   FOOTER
   ================================================================== */
footer {
  background: var(--color-earth);
  box-shadow: 0 -2px 10px 0 rgba(34,51,28,0.06);
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}
footer .container {
  padding-top: 38px;
  padding-bottom: 26px;
}
footer .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
footer img {
  height: 44px;
  width: auto;
  margin-bottom: 18px;
  border-radius: 10px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: var(--color-primary);
  border-radius: 8px;
  padding: 6px 8px;
  transition: background 0.19s, color 0.14s;
  font-weight: 600;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-mid);
  color: var(--color-leaf);
}
footer .contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.98rem;
  color: var(--color-dark);
}
footer .contact-details img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: text-bottom;
}
footer .social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}
footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-leaf);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  transition: background 0.18s;
}
footer .social-links a:hover {
  background: var(--color-secondary);
}
footer .social-links img {
  height: 22px;
  width: 22px;
}
footer p {
  margin-top: 16px;
  font-size: 0.97rem;
  color: var(--color-primary);
  font-weight: 500;
}
@media (max-width:900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  footer .container {
    padding-top: 22px;
    padding-bottom: 18px;
  }
  footer .content-wrapper { gap: 14px; }
}

/* ==================================================================
   CARDS, TESTIMONIALS & MAIN CONTENT FLEX
   ================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-light);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-card);
  padding: 32px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 270px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s, transform 0.23s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width:768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Testimonials
--------------------------------------------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 22px 44px 30px 18px/28px 14px 36px 22px;
  background: var(--color-light);
  box-shadow: 0 4px 30px 0 rgba(34,51,28,0.14);
  margin-bottom: 20px;
  border-left: 7px solid var(--color-leaf);
  transition: box-shadow 0.16s, border-color 0.18s;
}
.testimonial-card:hover {
  border-left-color: var(--color-secondary);
  box-shadow: var(--shadow-hover);
}
.testimonial-card p {
  font-size: 1.12rem;
  color: var(--color-leaf);
  margin: 0;
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
}
.testimonial-card span {
  color: var(--color-secondary);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  margin-top: 0;
}

/* Review & test contrast enforce */
.testimonial-card, .testimonial-card p, .testimonial-card strong {
  background: var(--color-light);
  color: #212B1D;
}

/* Course-cards on kursy-online.html
--------------------------------------------------------------- */
.course-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.course-cards > div {
  background: var(--color-mid);
  border-radius: 18px 40px 19px 30px / 20px 16px 33px 22px;
  box-shadow: 0 3px 16px 0 rgba(44,109,56,0.10);
  padding: 22px 20px;
  flex: 1 1 250px;
  min-width: 260px;
  transition: box-shadow 0.23s, background 0.19s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.course-cards > div:hover {
  background: #E9F2E0;
  box-shadow: var(--shadow-hover);
}

/* Article list (blog)
--------------------------------------------------------------- */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.article-list a {
  color: var(--color-leaf);
  font-weight: 700;
  padding: 7px 9px;
  border-radius: 12px;
  background: transparent;
  transition: background 0.18s, color 0.18s;
}
.article-list a:hover, .article-list a:focus {
  background: var(--color-mid);
  color: var(--color-primary);
}

.categories-menu {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}
.categories-menu span {
  font-weight: 600;
  color: var(--color-earth);
}
.categories-menu a {
  color: var(--color-leaf);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 4px 8px;
  border-radius: 8px;
  background: var(--color-accent);
  transition: background 0.16s, color 0.16s;
}
.categories-menu a:hover {
  background: var(--color-leaf);
  color: var(--color-light);
}

/* Organic unordered list styling */
ul, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  margin-top: 6px;
  padding-left: 0;
}
ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  position: relative;
}
ul li img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-right: 4px;
}

/* ================== TABLES ================== */
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  border-radius: 16px;
  margin-bottom: 24px;
  background: var(--color-light);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
th, td {
  padding: 13px 20px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: var(--color-earth);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
}
td {
  border-bottom: 1px solid #E8ECD7;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* ================== HERO ================== */
section:first-of-type {
  background: linear-gradient(100deg, #D8EAD3 16%, var(--color-accent) 82%);
  min-height: 320px;
  display: flex;
  align-items: center;
  border-radius: 0 0 64px 0;
  box-shadow: 0 3px 24px 0 rgba(44,109,56,0.09);
}

/* ================== BUTTON ANIMATION ================== */
.button-primary, .button-secondary {
  transition: background 0.17s, color 0.18s, transform 0.20s, box-shadow 0.19s, border 0.19s;
  will-change: background, color, transform;
}
.button-primary:active {
  transform: scale(0.97);
}
.button-secondary:active {
  transform: scale(0.97);
}

/* ================== FORMS AND INPUTs  ================== */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
}
input, textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--color-earth);
  border-radius: 14px 24px 17px 10px;
  box-shadow: 0 2px 10px 0 rgba(44,109,56,0.06);
  margin-bottom: 16px;
  background: var(--color-accent);
  color: var(--color-leaf);
  transition: border 0.16s, box-shadow 0.14s;
}
input:focus, textarea:focus {
  border-color: var(--color-leaf);
  background: #F6FAF0;
  outline: none;
}

/* ================== ORGANIC BORDERS SHAPES ================== */
.section, .card, .testimonial-card {
  border-radius: 22px 44px 30px 18px/28px 14px 36px 22px;
}

/* ================== GENERAL RESPONSIVE ================== */
@media (max-width: 999px) {
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  section {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 780px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  .section {
    padding: 30px 10px;
    margin-bottom: 44px;
  }
  .card {
    padding: 22px 12px;
  }
}
@media (max-width: 600px) {
  .course-cards > div, .card {
    min-width: 90vw;
    flex: 1 1 90vw;
  }
  .section { border-radius: 18px; }
  h1 { font-size: 1.45rem; }
}

/* ==================================================================
   COOKIE CONSENT BANNER + MODAL (nature organic)
   ================================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: var(--color-light);
  box-shadow: 0 -2px 24px 0 rgba(44,109,56,0.14);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 24px 30px;
  justify-content: space-between;
  border-top-left-radius: 24px;
  border-top-right-radius: 40px;
  font-size: 1rem;
  animation: slideUpConsent 0.55s;
}
@keyframes slideUpConsent { from { transform: translateY(120px); opacity:0; } to { transform: none; opacity: 1; } }

.cookie-consent-banner p {
  color: var(--color-dark);
  margin: 0;
  font-size: 1rem;
  flex: 1 1 auto;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  padding: 9px 24px;
  background: var(--color-leaf);
  color: var(--color-light);
  margin: 0 0 0 0;
  box-shadow: 0 2px 8px 0 rgba(34,51,28,0.12);
  transition: background 0.18s;
}
.cookie-btn.accept {
  background: var(--color-leaf);
  color: var(--color-light);
}
.cookie-btn.reject {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn.settings {
  background: transparent;
  color: var(--color-leaf);
  border: 2px solid var(--color-leaf);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  outline: none;
  border-color: var(--color-secondary);
}

@media (max-width:600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 8px;
    gap: 12px;
    font-size: 0.98rem;
  }
  .cookie-btns {
    gap: 7px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: flex;
  position: fixed;
  z-index: 3500;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background:rgba(44,109,56,0.18);
  backdrop-filter: blur(2px);
  animation: fadeInCookieModal 0.4s;
}
@keyframes fadeInCookieModal { from { opacity: .2; } to { opacity: 1; } }
.cookie-modal {
  background: var(--color-light);
  min-width: 325px;
  max-width: 96vw;
  box-shadow: 0 9px 40px 0 rgba(44,109,56,0.26);
  padding: 36px 32px 28px 30px;
  border-radius: 34px 11px 44px 32px/24px 30px 31px 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  animation: popInCookieModal 0.36s;
}
@keyframes popInCookieModal {
  from { opacity: 0; transform: scale(0.98) translateY(24px); }
  to { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  color: var(--color-leaf);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 6px;
  font-size: 1.04rem;
}
.cookie-cat label {
  font-weight: 500;
  color: var(--color-primary);
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 27px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-mid);
  border-radius: 18px;
  transition: background 0.15s;
}
.cookie-toggle input:checked + .cookie-switch {
  background: var(--color-leaf);
}
.cookie-switch:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 5px;
  bottom: 4.5px;
  background: var(--color-light);
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 1px 4px rgba(44,109,56,0.13);
}
.cookie-toggle input:checked + .cookie-switch:before {
  transform: translateX(15px);
}
.cookie-modal .cookie-btn {
  margin-top: 16px;
  min-width: 100px;
}
.cookie-modal .cookie-btn:last-child {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* Cookie essential is always enabled */
.cookie-cat input[disabled] + .cookie-switch {
  background: #B7C6A9;
}
.cookie-cat input[disabled] + .cookie-switch:before {
  background: #EAEAEA;
}

.cookie-modal-close {
  background: var(--color-leaf);
  color: var(--color-light);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  padding: 8px 14px;
  position: absolute;
  top: 22px;
  right: 22px;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal-close:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
@media (max-width:600px) {
  .cookie-modal {
    min-width: 0;
    padding: 18px 8px 16px 8px;
    border-radius: 19px;
    font-size: 0.96rem;
  }
}

/* ==================================================================
   ORGANIC DECORATIVE SHAPES EXAMPLES (optional)
   ================================================================== */
.organic-leaf {
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  height: 60px;
  background: var(--color-mid);
  border-radius: 60px 100px 74px 72px/44px 44px 44px 80px;
  opacity: 0.09;
  z-index: 0;
  pointer-events: none;
}

/* =============================================================
   OTHER DESIGN ENHANCEMENTS
   ============================================================= */
::-webkit-scrollbar-thumb {
  background: var(--color-leaf);
  border-radius: 14px;
}
::-webkit-scrollbar {
  width: 7px;
  background: var(--color-accent);
}
::-webkit-input-placeholder { color: #B8BDA1; }
::-moz-placeholder { color: #B8BDA1; }
:-ms-input-placeholder { color: #B8BDA1; }
::placeholder { color: #B8BDA1; }

hr {
  border: 0;
  height: 1px;
  background: #E8ECD7;
  margin: 38px 0 30px 0;
  width: 100%;
  border-radius: 2px;
}

/* ==================================================================
   ACCESSIBILITY
   ================================================================== */
:focus {
  outline: 2px solid var(--color-leaf);
  outline-offset: 2px;
}

/* ==================================================================
   PRINT OPTIMIZATION (optional)
   ================================================================== */
@media print {
  * {
    background: none !important;
    color: #212B1D !important;
    box-shadow: none !important;
  }
  .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay, .mobile-menu-toggle {
    display: none !important;
  }
}
