/* --- RESET & FONT IMPORTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F6F3E7;
  color: #384B5E;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  border-radius: 16px;
}
a {
  color: #256D3C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FF892E;
}
ul, ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
strong {
  font-weight: 600;
  color: #256D3C;
}

/* --- BRAND COLORS --- */
:root {
  --primary: #256D3C;
  --secondary: #384B5E;
  --accent: #F6F3E7;
  --brand-orange: #FF892E;
  --brand-yellow: #FFD599;
  --brand-light-green: #E5F2E8;
  --brand-coral: #F8C8A2;
  --card-shadow: rgba(56, 75, 94, 0.10);
  --shadow-lg: 0 4px 35px 0 rgba(56, 75, 94, 0.14);
}

/* --- CONTAINER & UTILITY --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 16px;
  }
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 14px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1.22;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
}
h4, h5 {
  font-size: 1.15rem;
}
p, li, span, label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--secondary);
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }
  p, li, span { font-size: 0.98rem; }
}

/* --- HEADER --- */
header {
  background: #fff;
  border-bottom: 1px solid #E5F2E8;
  box-shadow: 0 2px 16px var(--card-shadow);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 18px;
}
header img {
  height: 42px;
  border-radius: 0;
  margin-right: 14px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.main-nav a {
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 12px;
  background: transparent;
  transition: background 0.15s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--brand-light-green);
  color: var(--primary);
}
.cta-btn {
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 15px;
  outline: none;
  border: none;
  box-shadow: 0 3px 16px var(--card-shadow);
  cursor: pointer;
  display: inline-block;
  transition: background 0.15s, transform 0.12s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-orange);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  background: var(--brand-light-green);
  border: none;
  padding: 8px 13px;
  border-radius: 50%;
  font-size: 1.55rem;
  color: var(--primary);
  cursor: pointer;
  display: none;
  transition: background 0.19s, color 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-orange);
  color: #fff;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: 15px;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  transform: translateX(-100vw);
  box-shadow: 0 4px 32px var(--card-shadow);
  transition: transform 0.37s cubic-bezier(0.62,0,0.3,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 16px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 0 24px 14px 0;
  background: transparent;
  border: none;
  font-size: 2.3rem;
  color: var(--primary);
  cursor: pointer;
  padding: 2px 10px;
  border-radius: 8px;
  transition: background 0.12s, color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-coral);
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding: 20px 32px 0 32px;
}
.mobile-nav a {
  padding: 13px 0 13px 10px;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  border-radius: 12px;
  transition: background 0.18s, color 0.2s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-light-green);
  color: var(--brand-orange);
}
@media (min-width: 900px) {
  .mobile-menu { display: none !important; }
}

/* --- HERO & SECTION LAYOUTS --- */
.hero {
  background: linear-gradient(100deg,#F6F3E7 93%, #FFE0B8 100%);
  border-radius: 0 0 32px 32px;
  margin-bottom: 60px;
  padding: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 780px;
  margin: 0 auto;
  padding: 50px 0 40px 0;
  gap: 18px;
}
.hero .cta-btn { margin-top: 20px; }
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 18px 18px;
    margin-bottom: 38px;
  }
  .hero .content-wrapper { padding: 32px 0 28px 0; }
}

/* --- FEATURES --- */
.features {
  background: var(--accent);
  box-shadow: 0 3px 18px var(--card-shadow);
  border-radius: 24px;
  margin-bottom: 60px;
}
.features .content-wrapper {
  gap: 26px;
}
.features ul, .features ol {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0;
}
.features ul li, .features ol li {
  display: flex;
  align-items: center;
  gap: 17px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px var(--card-shadow);
  padding: 14px 18px;
  font-size: 1.07rem;
  margin-bottom: 0; /* flex handles spacing */
  min-width: 230px;
}
.features img {
  height: 38px;
  width: 38px;
  background: var(--brand-light-green);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .features ul, .features ol {
    flex-direction: column;
    gap: 13px;
  }
  .features ul li, .features ol li {
    min-width: unset;
    padding: 12px 10px;
  }
}

/* --- SERVICES, PLANS, CARDS --- */
.services .service-cards,
.services .plans-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card, .plan-card, .category-card, .principle-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 18px 22px 18px;
  box-shadow: 0 2px 12px var(--card-shadow);
  flex: 1 1 260px;
  margin-bottom: 20px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.service-card:hover, .plan-card:hover, .category-card:hover, .principle-card:hover {
  box-shadow: 0 7px 36px var(--shadow-lg);
  transform: translateY(-4px) scale(1.04);
}
@media (max-width: 768px) {
  .services .service-cards, .services .plans-pricing {
    flex-direction: column;
    gap: 12px;
  }
  .service-card, .plan-card {
    min-width: unset;
    padding: 18px 12px 14px 12px;
  }
}
.cta-section {
  background: var(--brand-yellow);
  border-radius: 16px;
  padding: 23px 16px;
  text-align: center;
  margin: 32px 0 0 0;
  box-shadow: 0 2px 7px var(--card-shadow);
}
.cta-section .cta-btn { margin-top: 10px; }

/* --- CATEGORIES --- */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}
.category-card {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  background: #fff;
  border-radius: 18px;
  padding: 18px 17px;
  box-shadow: 0 2px 9px var(--card-shadow);
  color: var(--primary);
  min-width: 157px;
  transition: box-shadow 0.14s, background 0.17s;
  cursor: pointer;
}
.category-card:hover, .category-card:focus {
  background: var(--brand-light-green);
  box-shadow: 0 6px 18px var(--shadow-lg);
}
.category-card img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-coral);
  padding: 4px;
}
@media (max-width: 768px) {
  .category-grid {
    flex-direction: column;
    gap: 9px;
  }
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 20px var(--card-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper { gap: 32px; }
.testimonial-slider, .testimonial-list, .before-after-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 22px 16px 22px;
  background: var(--brand-light-green);
  box-shadow: 0 3px 14px var(--card-shadow);
  border-radius: 18px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 355px;
  min-width: 220px;
  transition: box-shadow 0.19s, transform 0.16s;
  color: var(--secondary);
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 10px 34px var(--shadow-lg);
  transform: translateY(-3px) scale(1.03);
}
.testimonial-author {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 2px;
}
.star-rating {
  color: #FFD700;
  font-size: 1.08rem;
  letter-spacing: 1.5px;
  font-weight: 800;
}
@media (max-width: 768px) {
  .testimonial-slider, .testimonial-list, .before-after-testimonials {
    flex-direction: column;
    gap: 13px;
  }
  .testimonials, .testimonial-card {
    padding: 18px 8px;
    min-width: unset;
    max-width: unset;
  }
}

/* --- BLOG AND LEGAL --- */
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
}
.search-bar label {
  font-weight: 600;
  color: var(--primary);
}
.search-bar input[type="text"] {
  font-family: 'Open Sans', sans-serif;
  border: 1.5px solid var(--brand-light-green);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.14s;
  outline: none;
  margin-left: 4px;
}
.search-bar input[type="text"]:focus {
  border-color: var(--brand-orange);
}
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog-list a {
  font-weight: 600;
  color: var(--primary);
  padding-right: 6px;
}
.blog-list .tag {
  background: var(--brand-coral);
  color: var(--secondary);
  font-size: 13px;
  padding: 2px 10px;
  border-radius: 8px;
  margin-left: 7px;
}
.topic-tags, .feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 7px 0 0 0;
}
.tag {
  background: var(--brand-yellow);
  color: var(--primary);
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 8px;
  font-weight: 600;
}

/* --- CTA SECTION --- */
.cta {
  background: linear-gradient(95deg,#fff 91%, #FFF5E5 100%);
  border-radius: 26px;
  box-shadow: 0 2px 11px var(--card-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
  text-align: center;
}
.cta .cta-btn {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .cta {
    padding: 25px 8px;
    border-radius: 13px;
  }
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 40px 0 0 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 12px var(--card-shadow);
  margin-top: 60px;
}
.footer-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 42px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 0 10px 0;
}
.footer-wrapper img {
  border-radius: 0;
  height: 42px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #fff;
  font-weight: 600;
  transition: color 0.16s;
}
.footer-links a:hover, .footer-links a:focus { color: #FFD599; }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.97rem;
  color: #E5F2E8;
}
.contact-info img { height: 1.1em; width: 1.1em; margin-right: 6px; vertical-align: middle; }
.social-media {
  display: flex;
  gap: 14px;
}
.social-media a img {
  height: 31px;
  width: 31px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  transition: background 0.19s, transform 0.14s;
}
.social-media a:hover img, .social-media a:focus img {
  background: var(--brand-yellow);
  transform: scale(1.12);
}
@media (max-width: 1020px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  footer {
    border-radius: 10px 10px 0 0;
    padding-top: 20px;
    margin-top: 30px;
  }
  .footer-wrapper {
    padding: 0 0 12px 0;
    gap: 15px;
  }
  .footer-links, .contact-info { font-size: 0.97rem; }
  .social-media a img { height: 25px; width: 25px; }
}

/* --- FILTERS & FAQ --- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  background: var(--brand-light-green);
  border-radius: 13px;
  padding: 10px 16px;
  margin-top: 18px;
}
.filter-bar button {
  background: var(--brand-yellow);
  color: var(--primary);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 8px 16px;
  margin: 2px 0;
  cursor: pointer;
  transition: background 0.15s, color 0.13s, transform 0.17s;
}
.filter-bar button:hover, .filter-bar button.active {
  background: var(--brand-orange);
  color: #fff;
  transform: scale(1.06);
}

.faq-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.faq-section li {
  background: var(--brand-light-green);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--secondary);
}

/* --- SPECIAL LAYOUTS --- */
.principle-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.principle-card {
  min-width: 220px;
  max-width: 350px;
  flex: 1 1 260px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .principle-cards { flex-direction: column; gap: 10px; }
}

.summary-points ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.summary-points li {
  background: var(--brand-yellow);
  border-radius: 12px;
  padding: 9px 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0;
}

.feature-comparison ul { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 11px; }
.feature-comparison li {
  background: var(--brand-light-green);
  border-radius: 12px;
  padding: 9px 16px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0;
}

.example-menus ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.example-menus li {
  background: var(--brand-coral);
  border-radius: 9px;
  padding: 7px 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0;
}

/* --- CONTACT & MAP --- */
.contact {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 16px var(--card-shadow);
  margin-bottom: 60px;
  padding: 36px 20px;
}
.contact .direct-contact-info,
.contact .hours-open {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact .map-embed {
  margin: 18px 0;
}
.address-details p {
  margin-bottom: 10px;
}

/* --- LEGAL PAGE --- */
.legal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px var(--card-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- RESPONSIVE FLEX CONTAINERS --- */
.card-container, .category-grid, .principle-cards, .service-cards, .plans-pricing, .summary-points ul, .example-menus ul, .feature-comparison ul, .topic-tags, .blog-list, .testimonial-slider, .testimonial-list, .before-after-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .card-container, .category-grid, .service-cards, .plans-pricing, .principle-cards,
  .summary-points ul, .example-menus ul, .feature-comparison ul,
  .testimonial-slider, .testimonial-list, .before-after-testimonials {
    flex-direction: column;
    gap: 13px;
  }
}

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

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

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

/* --- BUTTONS & INTERACTIONS --- */
button, input[type="button"], input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.14s, box-shadow 0.12s, transform 0.11s;
}
button:active {
  transform: scale(0.98);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff6ea;
  box-shadow: 0 -4px 28px var(--card-shadow);
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  padding: 22px 30px;
  border-radius: 18px 18px 0 0;
  font-size: 1rem;
  animation: cookieBannerIn 0.5s cubic-bezier(0.69,0,0.21,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(70%); opacity: 0; } to { transform: none; opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  color: var(--secondary);
  flex: 1;
}
.cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btns button {
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--brand-yellow);
  color: var(--primary);
  box-shadow: 0 2px 8px var(--card-shadow);
  border: none;
  transition: background 0.13s, color 0.15s;
}
.cookie-btns button:hover, .cookie-btns button:focus {
  background: var(--brand-orange);
  color: #fff;
}
.cookie-btns .cookie-settings-btn {
  background: var(--brand-light-green);
  color: var(--secondary);
}
.cookie-btns .cookie-settings-btn:hover, .cookie-btns .cookie-settings-btn:focus {
  background: var(--brand-coral);
  color: var(--primary);
}
@media (max-width:600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 15px 9px;
    font-size: .98rem;
    align-items: flex-start;
  }
  .cookie-btns { width: 100%; justify-content: flex-end; gap: 8px; }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  z-index: 3050;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(56, 75, 94, 0.27);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.32s cubic-bezier(0.7,0,0.3,1);
}
@keyframes cookieModalFadeIn {
  from { opacity:0; } to { opacity:1; }
}
.cookie-modal-content {
  background: #fffefa;
  padding: 32px 22px 22px 22px;
  border-radius: 20px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 7px 26px var(--shadow-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalSlideIn 0.4s cubic-bezier(0.78,0,0.31,1);
}
@keyframes modalSlideIn {
  from { transform: translateY(80px); opacity: 0; } to { transform: none; opacity: 1; }
}
.cookie-modal-content h3 { color: var(--primary); font-size: 1.4rem; margin-bottom: 7px; }
.cookie-modal-close {
  position: absolute;
  top: 9px; right: 17px;
  background: transparent;
  border: none;
  font-size: 1.62em;
  color: var(--primary);
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.16s, color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--brand-coral);
  color: var(--secondary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 12px 0 16px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-weight: 600;
  color: var(--secondary);
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--primary);
  width: 20px;
  height: 20px;
}
.cookie-description {
  font-size: 0.97em;
  color: #888;
  margin-left: 28px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 18px;
}
.cookie-modal-actions button {
  border-radius: 11px;
  background: var(--brand-yellow);
  color: var(--primary);
  padding: 10px 16px;
  font-weight: 700;
}
.cookie-modal-actions button:hover,.cookie-modal-actions button:focus {
  background: var(--primary);
  color: #fff;
}
@media (max-width:480px) {
  .cookie-modal-content {
    padding: 20px 5px 12px 11px;
    min-width: unset;
    font-size: .97rem;
  }
  .cookie-modal-close { font-size: 1.13em; }
}

/* --- MISC INTERACTIONS & MICRO-ANIMATIONS --- */
input, textarea {
  outline: none;
  border-radius: 8px;
  padding: 7px 12px;
  border: 1.5px solid var(--brand-light-green);
  background: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: border-color 0.15s;
}
input:focus, textarea:focus {
  border-color: var(--brand-orange);
}
::selection {
  background: var(--brand-yellow);
  color: var(--primary);
}

/* --- VISUAL SEPARATORS --- */
hr {
  border: none;
  border-top: 1.5px solid var(--brand-light-green);
  margin: 32px 0;
}

/* --- ENSURE SPACING AND NO OVERLAP --- */
.main-content > section, .main-content > .section {
  margin-bottom: 60px;
}
.card, .category-card, .plan-card, .principle-card {
  margin-bottom: 20px !important;
}

/* --- HIDE JS-ONLY ELEMENTS BY DEFAULT --- */
.mobile-menu, .cookie-banner, .cookie-modal { display: none; }

/* --- FOCUS STATES --- */
:focus {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

/* --- END OF STYLE.CSS --- */
