/* CSS RESET & NORMALIZE (MOBILE-FIRST) */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background-color: #FAF9F6;
  color: #234018;
  font-family: 'Nunito Sans', Arial, sans-serif;
  line-height: 1.5;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #25507A;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #DCA832;
  outline: none;
}
ul, ol {
  padding-left: 1.25rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-style: none;
}
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
input, textarea, select {
  font: inherit;
  border: 1px solid #CCC;
  border-radius: 7px;
  padding: 10px 14px;
  background: #FCFCF9;
  color: #234018;
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #DCA832;
  border-color: #DCA832;
}

/* COLOR PALETTE (BRAND + NATURE ORGANIC) */
:root {
  --brand-primary: #25507A;
  --brand-secondary: #DCA832;
  --brand-accent: #F5F5F5;
  --nature-green: #739B4B;
  --nature-dark-green: #234018;
  --nature-earth-brown: #675441;
  --nature-stone: #E7E2D7;
  --nature-cream: #FAF9F6;
  --nature-sand: #F2E6CE;
  --shadow-card: 0 2px 12px rgba(71, 90, 51, 0.06);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #25507A;
  letter-spacing: 0.01em;
  line-height: 1.14;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li, label {
  color: #234018;
  font-size: 1rem;
  margin-bottom: 10px;
}
strong {
  color: #25507A;
}
cite {
  font-style: normal;
  color: #675441;
  font-size: 0.92rem;
  margin-left: 10px;
}

/* GENERIC CONTAINERS & UTILITIES */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--nature-cream);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}
.section:last-child {
  margin-bottom: 0;
}

/* HEADER STYLES */
header {
  background: var(--nature-cream);
  border-bottom: 2px solid var(--nature-sand);
  box-shadow: 0 2px 8px rgba(34, 64, 24, 0.03);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  height: 49px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 14px;
  color: #25507A;
  border-radius: 9px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--nature-sand);
  color: var(--brand-secondary);
}
.button-primary {
  display: inline-block;
  background: var(--nature-green);
  color: #fff;
  border-radius: 22px 22px 18px 21px / 18px 20px 22px 19px;
  padding: 13px 26px;
  margin-left: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  box-shadow: 0 3px 14px 1px rgba(71,90,51,0.09);
  transition: background 0.19s, transform 0.19s, box-shadow 0.18s;
  border: 2px solid transparent;
  position: relative;
}
.button-primary:hover, .button-primary:focus {
  background: var(--nature-dark-green);
  color: #FFD766;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px 1px rgba(71,90,51,0.12);
  border-color: var(--brand-secondary);
}

/* MOBILE MENU BUTTONS */
.mobile-menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  background: var(--brand-secondary);
  color: #234018;
  border-radius: 50%;
  font-size: 2.1rem;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  box-shadow: 0 3px 12px rgba(220,168,50,0.06);
  transition: background 0.18s, box-shadow 0.18s;
  border: none;
  z-index: 44;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--nature-green);
  color: #fff;
  box-shadow: 0 6px 20px rgba(220,168,50,0.12);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #FFFFFFEE;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s, transform 0.2s;
  transform: translateX(100vw);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 28px 2px 0;
  background: var(--nature-earth-brown);
  color: #fff;
  font-size: 2.1rem;
  border-radius: 50%;
  min-width: 44px; min-height: 44px;
  transition: background 0.17s, color 0.17s;
  z-index: 10005;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-secondary);
  color: #234018;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  padding: 10px 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #25507A;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 13px 0;
  width: 100%;
  text-align: center;
  border-radius: 9px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--nature-sand);
  color: var(--brand-secondary);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(105deg, var(--nature-cream) 82%, var(--nature-stone) 100%);
  border-radius: 0 0 42px 42px;
  box-shadow: 0 4px 16px -10px rgba(71,90,51,0.06);
  padding: 55px 0 45px 0;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 18px;
  max-width: 640px;
  margin: 0 auto;
}
.hero h1 {
  color: var(--nature-dark-green);
}
.hero p {
  font-size: 1.19rem;
  color: #234018;
}

/* FEATURES */
.features {
  background: var(--nature-sand);
  border-radius: 22px;
  padding: 40px 0;
  margin-bottom: 60px;
}
.features .content-wrapper {
  gap: 23px;
  align-items: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--nature-cream);
  border-radius: 21px;
  box-shadow: var(--shadow-card);
  padding: 22px 24px 20px 24px;
  flex: 1 1 220px;
  max-width: 270px;
  min-width: 190px;
  min-height: 218px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1.5px solid #eee;
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 5px;
}
.feature-item h3 {
  color: var(--nature-green);
}
.feature-item:hover {
  box-shadow: 0 10px 30px 2px rgba(71,90,51,0.12);
  transform: translateY(-2px) scale(1.04);
}

/* HIGHLIGHTS & QUICK NAV */
.highlights {
  background: var(--nature-cream);
  margin-bottom: 60px;
  border-radius: 21px;
}
.recipe-list-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 9px 0 24px 0;
  padding-left: 1.1em;
  list-style: disc inside none;
}
.recipe-list-preview a {
  color: var(--nature-dark-green);
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  transition: color 0.18s;
}
.recipe-list-preview a:hover {
  color: var(--nature-green);
}
.quick-nav-links {
  display: flex;
  gap: 12px;
  font-size: 1rem;
  color: #675441;
  flex-wrap: wrap;
  margin-bottom: 3px;
}
.quick-nav-links a {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.quick-nav-links a:hover { color: var(--brand-secondary); }

/* NEWSLETTER SECTION */
.newsletter {
  background: var(--nature-stone);
  border-radius: 22px;
  margin-bottom: 60px;
}
.newsletter-form-hint {
  color: #234018;
  font-size: 0.98rem;
  background: #F9FAEA;
  border-radius: 15px;
  margin-top: 12px;
  padding: 9px 14px;
}

/* CARDS & FLEX GRIDS */
.card-container, .card-grid, .recipe-cards, .team-list, .testimonial-slider, .testimonial-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
  align-items: stretch;
}
.card, .recipe-card, .team-member, .faq-item {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
  border-radius: 21px;
  box-shadow: var(--shadow-card);
  padding: 18px 20px 18px 20px;
  border: 1.5px solid #e5e3df;
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover, .recipe-card:hover, .team-member:hover {
  box-shadow: 0 9px 22px 0 rgba(50, 80, 27, 0.15);
  transform: translateY(-2px) scale(1.025);
}
.recipe-card h3 {
  color: var(--nature-green);
}
.read-more {
  margin-top: 6px;
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  background: none;
  border-bottom: 1.8px solid var(--brand-secondary);
  transition: color 0.19s, border-bottom 0.15s;
  font-size: 0.98rem;
  padding-bottom: 2px;
}
.read-more:hover {
  color: var(--nature-green);
  border-bottom: 2px solid var(--nature-green);
}

/* TESTIMONIALS */
.testimonials, .testimonial-list, .testimonial-slider {
  margin-bottom: 60px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border-radius: 17px 24px 18px 21px;
  box-shadow: 0 3px 17px -1px rgba(39,90,38,0.10);
  max-width: 400px;
  border-left: 7px solid var(--nature-green);
  border-right: 1.5px solid var(--brand-secondary);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card p {
  color: #234018;
  font-size: 1.17rem;
  font-weight: 500;
}
.testimonial-card cite {
  color: #675441;
  font-weight: 400;
}
.testimonial-card:hover {
  box-shadow: 0 10px 28px 0 rgba(71, 155, 75, 0.14);
  transform: translateY(-1.5px) scale(1.018);
}

/* TIPS & FAQS */
.tips, .faq-list {
  background: var(--nature-stone);
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 34px 20px 34px 20px;
}
.tip-list {
  margin-bottom: 22px;
  list-style: disc inside;
  color: #25507A;
  font-size: 1rem;
  font-family: 'Nunito Sans', Arial, sans-serif;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.faq-item h3 {
  color: #25507A;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.faq-item p {
  color: #234018;
  font-size: 1rem;
}

/* FILTER/SEARCH BARS */
.filter-search {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.filter-search input {
  min-width: 0;
  font-size: 1rem;
  border-radius: 14px;
  border: 1.5px solid #DCA832;
}
.recipe-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
}
.recipe-filters span {
  color: #675441;
  font-weight: 600;
}
.recipe-filters a {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 8px;
  background: var(--nature-cream);
  padding: 4px 14px 4px 14px;
  transition: background 0.19s, color 0.19s;
  border: 1.3px solid #e5e3df;
  font-size: 0.97rem;
}
.recipe-filters a:hover {
  background: var(--brand-secondary);
  color: #234018;
}

/* INFO & ABOUT SECTIONS */
.info, .about, .contact, .thanks, .legal, .map-placeholder {
  background: var(--nature-cream);
  border-radius: 19px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-card);
}
.text-section ul, .about ul {
  margin-left: 1.3em;
  margin-bottom: 12px;
}
.text-section li {
  margin-bottom: 5px;
}

/* TEAM SECTION */
.team {
  margin-bottom: 60px;
}
.team-list {
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}
.team-member {
  min-width: 200px;
  flex: 1 1 250px;
  margin-bottom: 20px;
}

/* CONTACT PAGE */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.09rem;
  color: #234018;
}
.contact-details img {
  height: 23px;
  width: 23px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 16px 0;
  padding: 12px 16px;
  background: #F5F5F5;
  border-radius: 16px;
}

/* FOOTER */
footer {
  background: var(--nature-cream);
  border-top: 2px solid var(--brand-secondary);
  padding: 42px 0 21px 0;
  color: #234018;
  font-size: 1rem;
  font-family: 'Nunito Sans', Arial, sans-serif;
  margin-top: 55px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-menu {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 7px;
}
.footer-menu a {
  color: #675441;
  font-weight: 500;
  transition: color 0.17s;
  font-size: 1rem;
}
.footer-menu a:hover {
  color: var(--brand-secondary);
}
.footer-social {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 7px;
}
.footer-social img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  transition: transform 0.17s;
}
.footer-social img:hover {
  transform: scale(1.14);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #234018;
  font-size: 0.97rem;
  align-items: center;
}
.footer-contact a {
  color: var(--brand-primary);
  font-size: 1rem;
}
.footer-contact a:hover { color: var(--brand-secondary); }

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #234018EE;
  color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 26px 16px 26px;
  z-index: 99997;
  font-size: 0.98rem;
  border-top-left-radius: 27px;
  border-top-right-radius: 27px;
  box-shadow: 0 -8px 29px rgba(39,90,38,0.10);
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.26s;
}
.cookie-consent-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 13px;
}
.cookie-consent-banner button {
  padding: 8px 15px;
  min-width: 110px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: var(--brand-secondary);
  color: #233C20;
  border: 0;
  box-shadow: 0 1px 7px 0 rgba(220,168,50,0.07);
  cursor: pointer;
  transition: background 0.19s, color 0.15s, box-shadow 0.18s;
}
.cookie-consent-banner button:hover { background: #fffbe8; color: #25507A; }
.cookie-consent-banner .button-reject {
  background: #E7E2D7;
  color: #234018;
}
.cookie-consent-banner .button-reject:hover {
  background: #eee4bd;
  color: #d06767;
}
.cookie-consent-banner .button-settings {
  background: transparent;
  color: #fff;
  border: 2px solid #DCA832;
}
.cookie-consent-banner .button-settings:hover {
  background: #FAF9F6;
  color: #25507A;
  border-color: #234018;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 99998;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #234018cc;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.23s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: #234018;
  border-radius: 28px;
  padding: 31px 24px 21px 24px;
  max-width: 430px;
  width: 94vw;
  box-shadow: 0 8px 34px 2px rgba(39,90,38,0.19);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #25507A;
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 16px;
  background: var(--brand-secondary);
  color: #fff;
  border-radius: 50%;
  min-width: 38px; min-height: 38px;
  font-size: 1.36rem;
  cursor: pointer;
  border: none;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal-close:hover {
  background: var(--brand-primary);
  color: #FFD766;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #F5F5F5;
  border-radius: 15px;
  padding: 10px 13px 10px 13px;
}
.cookie-category label {
  flex: 1;
}
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--nature-green);
  cursor: pointer;
}
.cookie-category input[type="checkbox"][disabled] {
  filter: grayscale(1);
  accent-color: #bbb;
  cursor: not-allowed;
}
.cookie-categories .essential label {
  font-weight: 700; color: #25507A;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-actions button {
  padding: 9px 18px;
  border-radius: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: var(--brand-secondary);
  color: #233C20;
  border: none;
  box-shadow: 0 1px 7px 0 rgba(220,168,50,0.07);
  cursor: pointer;
  transition: background 0.19s, color 0.15s, box-shadow 0.18s;
}
.cookie-modal-actions .button-cancel {
  background: #E7E2D7;
  color: #234018;
}
.cookie-modal-actions .button-cancel:hover {
  background: #eee4bd;
  color: #d06767;
}

/* Animations */
@keyframes mobileMenuIn {
  from { transform: translateX(100vw); opacity: 0.2; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes mobileMenuOut {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(100vw); opacity: 0.2; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.section, .card, .recipe-card, .testimonial-card, .feature-item, .team-member, .faq-item {
  animation: fadeInUp 0.63s cubic-bezier(.33,.69,.41,1.01) both;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .main-nav { gap: 16px; }
  .feature-grid { gap: 17px; }
  .card-container, .card-grid, .recipe-cards, .team-list, .testimonial-slider, .testimonial-list { gap: 14px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section, .info, .about, .contact, .thanks, .legal, .tips, .faq-list {
    padding: 24px 8px;
    margin-bottom: 34px;
    border-radius: 13px;
  }
  .hero { padding: 34px 0 25px 0; border-radius: 0 0 19px 19px; }
  header .container {
    flex-direction: row;
    gap: 7px;
    padding: 11px 8px 11px 8px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-contact { flex-direction: column; gap: 4px; align-items: flex-start; }
  .footer-menu, .footer-social {
    justify-content: flex-start;
    gap: 14px;
  }
  .feature-grid, .card-container, .card-grid, .recipe-cards, .team-list, .testimonial-slider, .testimonial-list {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .testimonial-card, .recipe-card, .feature-item, .team-member { max-width: none; }
  .text-image-section, .how-to-guides { flex-direction: column !important; gap: 14px !important; }
}
@media (max-width: 570px) {
  html { font-size: 14px; }
  .container { padding: 0 7px; }
  header img { height: 36px; }
  .button-primary,
  .main-nav a,
  .cookie-consent-banner button,
  .cookie-modal-actions button,
  .cookie-modal-close {
    font-size: 0.98rem;
    min-width: 84px;
    padding: 9px 11px;
  }
  .footer-social img { width: 28px; height: 28px; }
  .cookie-modal-content {
    padding: 13px 7px 12px 7px;
    max-width: 96vw;
  }
}

/* VISUAL ORGANIC ACCENTS */
.section, .card, .recipe-card, .testimonial-card, .feature-item, .team-member, .newsletter, .info,
.tips, .faq-list, .about, .legal, .contact, .thanks {
  border-bottom-right-radius: 31px 40px;
  border-bottom-left-radius: 22px 26px;
}

/* MICRO-INTERACTIONS */
.button-primary:active,
.cookie-consent-banner button:active,
.cookie-modal-actions button:active {
  transform: scale(0.97);
}

/* FORMS (if used) */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}
input[type="text"], input[type="email"], textarea {
  width: 100%;
  border-radius: 14px;
  border: 1.5px solid #DCA832;
  background: #F5F5F5;
  color: #233C20;
  font-size: 1rem;
  padding: 10px;
  transition: border-color 0.18s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #25507A;
}
label {
  font-size: 1rem;
  font-weight: 500;
  color: #234018;
  margin-bottom: 6px;
}

/* Z-INDEX LAYERS */
header { z-index: 30; }
.mobile-menu { z-index: 9999; }
.cookie-consent-banner { z-index: 99997; }
.cookie-modal { z-index: 99998; }

/* MANDATORY FLEX SPACING CLASSES (see mission requirements) */
/* .section, .card-container, .card, .content-grid, .text-image-section, .testimonial-card, .feature-item already styled above in context. */

/* ENSURE NO OVERLAPPING; WHITE SPACE USAGE */
main > section { margin-bottom: 60px; }
main > section:last-child { margin-bottom: 0; }

/* HIDE scrollbars on Mobile menu for clean look */
.mobile-menu::-webkit-scrollbar { display: none; }

/* ACCESSIBILITY IMPROVEMENTS */
:focus {
  outline: 2px solid var(--brand-secondary); outline-offset: 0.5px;
}

/* ---------- END OF ORGANIC NATURE THEME CSS ---------- */
