/* ----------------------------------------
   CSS RESET & BASELINE NORMALIZATION
----------------------------------------- */
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 { box-sizing: border-box; height: 100%; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F9F6EE;
  color: #2E4231;
  min-height: 100vh;
}
img { max-width: 100%; display: block; border: 0; }

/* FONTS */
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F9F6EE;
  color: #2E4231;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #36583C;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 12px; }
h2 { font-size: 2rem; margin-bottom: 10px; }
h3 { font-size: 1.5rem; margin-bottom: 8px; }
h4 { font-size: 1.2rem; }
p, ul, ol, li { font-family: 'Roboto', Arial, sans-serif; font-size: 1rem; line-height: 1.7; }
strong, b { color: #36583C; font-weight: 700; }
.subheadline { font-size: 1.2rem; color: #68814c; margin-bottom: 24px; font-family: 'Montserrat', 'Roboto', Arial, sans-serif; }
a { color: #36583C; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #BDD16B; text-decoration: underline; }

/* ----------------------------------------
   LAYOUT BASICS & CONTAINERS
----------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(93,117,72,0.13);
  padding: 28px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 6px 18px rgba(93,117,72,0.21); transform: translateY(-4px); }
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(54,88,60,0.09);
  margin-bottom: 20px;
  border-left: 7px solid #BDD16B;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 14px;
  background: #ffffffea;
  border-radius: 17px;
  box-shadow: 0 1px 7px 0 rgba(54,88,60,0.08);
  margin-bottom: 20px;
}

/* -------------------------------------------
   HEADER & NAVIGATION (DESKTOP & MOBILE)
-------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 18px rgba(54,88,60,0.04);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 32px;
}
.logo img { height: 48px; width: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 13px;
  transition: background 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #BDD16B55;
  color: #2E4231;
}
.main-nav .cta.primary {
  background: #36583C;
  color: #fff;
  border-radius: 20px;
  padding: 9px 23px;
  font-weight: 700;
  margin-left: 18px;
  box-shadow: 0 2px 8px rgba(180,209,107,0.14);
  letter-spacing: 0.03em;
  transition: background 0.18s, color 0.18s;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #BDD16B;
  color: #36583C;
}

.mobile-menu-toggle {
  background: #36583C;
  color: #fff;
  font-size: 1.8rem;
  border: none;
  border-radius: 8px;
  margin-left: 20px;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, box-shadow 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #BDD16B;
  color: #36583C;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw; height: 100vh;
  background: #36583CF5;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 40px;
  padding-left: 0;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4,1,.22,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.4rem;
  border: none;
  margin-left: 32px;
  margin-bottom: 12px;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #BDD16B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-left: 48px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 12px 4px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
  margin-bottom: 10px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #BDD16B;
  color: #2E4231;
}

@media (max-width: 991px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 992px) {
  .mobile-menu { display: none!important; }
  .mobile-menu-toggle { display: none!important; }
}

/* ----------------------------------------
   HERO SECTION
----------------------------------------- */
.hero {
  min-height: 390px;
  background: #36583C;
  background-image: url('../assets/hero-bg.svg'), linear-gradient(#36583C 86%, #BDD16B 100%);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 340px;
}
.hero h1, .hero .subheadline { color: #fff; }
.hero h1 {
  font-size: 2.6rem;
  letter-spacing: 0.015em;
  margin-bottom: 10px;
  font-weight: 800;
  text-shadow: 0 4px 24px rgba(54,88,60,0.20);
}
.hero .subheadline {
  color: #BDD16B;
  font-size: 1.2rem;
  margin-bottom: 22px;
  text-shadow: 0 1px 8px rgba(54,88,60,0.05);
}
.hero .cta.primary {
  background: #BDD16B;
  color: #2E4231;
  font-weight: 700;
  border-radius: 20px;
  padding: 11px 30px;
  box-shadow: 0 1px 12px rgba(189,209,107,0.22);
  font-size: 1.13rem;
  letter-spacing: 0.04em;
  transition: background 0.19s, color 0.19s, box-shadow 0.15s;
}
.hero .cta.primary:hover, .hero .cta.primary:focus {
  background: #F9F6EE;
  color: #36583C;
  box-shadow: 0 7px 22px rgba(54,88,60,0.18);
  border: 2px solid #BDD16B;
}

/* ----------------------------------------
   FEATURE/ICON GRIDS & LISTS
----------------------------------------- */
.features ul, .feature-grid, ul.icons, ul.difficulty, ul.tips, ul.example-styles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 0;
  list-style: none;
}
.feature-grid li, ul.example-styles li, ul.icons li, ul.difficulty li {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 24px 20px 18px 20px;
  min-width: 160px;
  border-bottom: 5px solid #BDD16B;
  box-shadow: 0 2px 10px rgba(54,88,60,0.09);
  transition: box-shadow 0.19s, transform 0.19s;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.02rem;
  color: #36583C;
  font-weight: 600;
  margin-bottom: 20px;
  gap: 10px;
  text-align: center;
  word-break: break-word;
}
.feature-grid li:hover, ul.example-styles li:hover, ul.icons li:hover, ul.difficulty li:hover {
  box-shadow: 0 6px 22px rgba(189,209,107,0.14);
  transform: translateY(-7px) scale(1.03) rotate(-1.5deg);
}
.feature-grid li img, ul.example-styles li img, ul.icons li img, ul.difficulty li img {
  height: 44px;
  margin-bottom: 7px;
}
.features h2, .feature-grid h2 { color: #36583C; }
ul.feature-grid span {
  color: #797979;
  font-weight: 400;
  font-size: 0.96rem;
  margin-top: 6px;
}

/* ----------------------------------------
   CONTACT + CTA BUTTONS
----------------------------------------- */
.contact-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 27px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.11rem;
  color: #36583C;
}
.contact-details img {
  height: 23px;
  margin-right: 8px;
  vertical-align: text-bottom;
}
.cta-buttons {
  display: flex;
  gap: 23px;
}
.cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  display: inline-block;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.17s, color 0.16s, box-shadow 0.19s;
  box-shadow: 0 1px 7px rgba(54, 88, 60, 0.08);
  text-align: center;
}
.cta.primary {
  background: #36583C;
  color: #fff;
  font-weight: 700;
  padding: 10px 22px;
}
.cta.primary:hover, .cta.primary:focus {
  background: #BDD16B;
  color: #36583C;
}
.cta.secondary {
  background: #fff;
  color: #36583C;
  border: 2px solid #BDD16B;
  font-weight: 600;
  padding: 10px 22px;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #BDD16B;
  color: #fff;
}

/* Highlight box for text */
.highlight {
  background: #BDD16B2C;
  color: #36583C;
  border-left: 7px solid #36583C;
  padding: 18px 20px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  margin: 20px 0 18px 0;
}

.personalization {
  background: #fff5ef;
  border-radius: 15px;
  padding: 16px 25px 12px 25px;
  box-shadow: 0 1px 6px rgba(231,161,76,0.086);
  border-left: 9px solid #BDD16B;
  font-family: 'Montserrat', sans-serif;
  margin-top: 20px;
  color: #36583C;
}

/* ----------------------------------------
   TESTIMONIALS
----------------------------------------- */
.testimonials {
  background: #F9F6EE;
  border-top: 2px solid #bdd16b29;
  border-bottom: 2px solid #bdd16b29;
  padding-bottom: 30px;
}
.testimonials h2 { color: #36583C; }
.testimonial-card {
  min-width: 220px;
  background: #fff;
  color: #2E4231;
  border-radius: 18px;
  box-shadow: 0 3px 11px 0 rgba(189,209,107,0.13);
  margin-bottom: 20px;
  padding: 20px 22px 19px 18px;
  border-left: 7px solid #BDD16B;
  font-size: 1.08rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  transition: box-shadow 0.17s, transform 0.16s;
}
.testimonial-card p {
  margin-bottom: 8px;
  font-style: italic;
  color: #2E4231;
  font-weight: 500;
}
.testimonial-card span:last-child { color: #BDD16B; font-size: 1.2em; }
.testimonial-card:hover {
  box-shadow: 0 7px 32px rgba(54,88,60,0.10);
  transform: translateY(-5px);
}

/* ----------------------------------------
   FOOTER
----------------------------------------- */
footer {
  background: #36583C;
  color: #fff;
  padding: 38px 0 16px 0;
  text-align: center;
  font-size: 1rem;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 13px;
}
.footer-nav a {
  color: #BDD16B;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: 7px;
  transition: background 0.14s, color 0.14s;
  margin-bottom: 10px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #BDD16B;
  color: #36583C;
}
.copyright {
  color: #fff;
  margin-top: 9px;
  font-size: 0.97rem;
}

/* ----------------------------------------
   FORMS, LISTS, AND TEXT SECTIONS
----------------------------------------- */
ul, ol {
  margin: 0 0 14px 0;
  padding-left: 21px;
}
ul li, ol li {
  margin-bottom: 9px;
  font-size: 1.01rem;
}
.text-section {
  background: #fff;
  border-radius: 17px;
  padding: 21px 24px 15px 25px;
  box-shadow: 0 1px 7px 0 rgba(54,88,60,0.05);
  margin-bottom: 20px;
  color: #36583C;
}

/* --------------------------------------
   RESPONSIVE MEDIA QUERIES
---------------------------------------- */
@media (max-width: 991px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.45rem; }
  .hero .container { min-height: 220px; }
  .container { max-width: 99vw; padding-left: 16px; padding-right: 16px; }
  footer { border-radius: 20px 20px 0 0; padding: 24px 0 11px 0; font-size: 0.98rem; }
}
@media (max-width: 768px) {
  .container { padding-left: 8px; padding-right: 8px; }
  .section, section { margin-bottom: 36px; padding: 27px 8px; }
  .content-wrapper, .features ul, .feature-grid, .card-container, .content-grid,
  ul.icons, ul.difficulty, ul.example-styles, ul.tips { flex-direction: column; gap: 16px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .testimonial-card { padding: 17px 10px; font-size: 1rem; border-radius: 14px; }
  .feature-grid li, ul.example-styles li, ul.icons li, ul.difficulty li { min-width: 120px; padding: 15px 8px; border-radius: 10px; font-size: 0.99rem; }
  .footer-nav { flex-direction: column; gap: 7px; }
  .about .content-wrapper ul li img, .about ul li img { display: inline-block; margin-right: 5px; height: 22px; vertical-align: middle; }
  .highlight { padding: 12px 10px; font-size: 0.97rem; border-radius: 8px; border-left-width: 5px; }
  .personalization { padding: 10px 9px; border-radius: 8px; margin-top: 10px; border-left-width: 6px; }
}

/* --------------------------------------
   MICRO-INTERACTIONS & ANIMATION
---------------------------------------- */
.card, .testimonial-card, .feature-grid li, .cta, .mobile-menu, .cookie-banner, .cookie-modal, .cta.primary {
  transition: box-shadow 0.2s, transform 0.2s, background 0.17s, color 0.17s;
}

/* -------------------------------------------
   COOKIE CONSENT BANNER & MODAL
-------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #2E4231;
  box-shadow: 0 -2px 18px rgba(54,88,60,0.09);
  padding: 24px 17px 24px 17px;
  width: 100vw;
  z-index: 3500;
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  animation: slideupbanner 0.36s cubic-bezier(.23,1.07,.32,.99);
}
@keyframes slideupbanner {
  0% { transform: translateY(100%); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p { flex: 1 1 200px; margin: 0; }
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', sans-serif;
  border: none;
  border-radius: 12px;
  padding: 9px 18px;
  margin-left: 0;
  background: #BDD16B;
  color: #36583C;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.1s, box-shadow 0.16s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #36583C;
  color: #fff;
}
.cookie-banner .cookie-btn.secondary {
  background: #fff;
  color: #36583C;
  border: 1.5px solid #BDD16B;
}
.cookie-banner .cookie-btn.secondary:hover, .cookie-banner .cookie-btn.secondary:focus {
  background: #BDD16B;
  color: #2E4231;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(54,88,60,0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  animation: fadeInModal 0.28s;
  pointer-events: auto;
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #36583C;
  border-radius: 22px;
  padding: 34px 32px 24px 32px;
  max-width: 430px;
  box-shadow: 0 6px 40px rgba(54,88,60,0.22);
  font-family: 'Montserrat', sans-serif;
  min-width: 270px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: slideInModal 0.27s;
}
@keyframes slideInModal {
  0% { transform: scale(0.91) translateY(18px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #36583C;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 8px;
  cursor: pointer;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  gap: 9px;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #36583C;
  width: 20px; height: 20px;
  margin-right: 9px;
}
.cookie-modal-content .btn-group {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal-content .cookie-close {
  position: absolute;
  top: 16px; right: 21px;
  background: transparent;
  border: none;
  color: #36583C;
  font-size: 1.65rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-content .cookie-close:hover, .cookie-modal-content .cookie-close:focus {
  color: #BDD16B;
}

@media (max-width: 520px) {
  .cookie-modal-content {
    max-width: 97vw;
    padding: 14px 3vw 10px 3vw;
    border-radius: 13px;
    gap: 14px;
  }
}

/* --------------------------------------------------
   CREATIVE ARTISTIC DECORATIVE ASPECTS
--------------------------------------------------- */
.hero, .features, .about, .services, .contact, .testimonials {
  position: relative;
}
.hero:before, .features:before, .about:before, .services:before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 78px; height: 78px;
  background: #BDD16BCC;
  border-radius: 40% 58% 59% 41% / 48% 42% 58% 52%;
  z-index: 0;
  filter: blur(10px);
  opacity: 0.35;
}
.hero:after, .about:after, .contact:after, .services:after {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  width: 90px; height: 80px;
  background: #FDF5B7AA;
  border-radius: 80% 50% 50% 90% / 82% 54% 46% 78%;
  z-index: 0;
  filter: blur(14px);
  opacity: 0.26;
}
.hero *, .features *, .about *, .services *, .contact *, .testimonials * {
  position: relative;
  z-index: 1;
}

/* HAND-DRAWN ACCENT LINES */
h2, h3 {
  position: relative;
  display: inline-block;
}
h2::after, h3::after {
  content: '';
  display: block;
  height: 6px;
  width: 56px;
  background: #BDD16B;
  border-radius: 5px;
  margin-top: 2px;
  opacity: 0.65;
  margin-left: 0px;
}

/* -----------------------------------------
   SCROLLBAR STYLING
------------------------------------------ */
::-webkit-scrollbar { width: 11px; background: #F9F6EE; }
::-webkit-scrollbar-thumb { background: #BDD16B; border-radius: 7px; }
::-webkit-scrollbar-thumb:hover { background: #8ba857; }

/* ---------------------------
   SELECTION COLOR
---------------------------- */
::selection {
  background: #BDD16B;
  color: #fff;
}

/* --------------------------------------
   ACCESSIBILITY & MISC
---------------------------------------- */
:focus {
  outline: 2px solid #BDD16B;
  outline-offset: 2px;
}
.visually-hidden { position: absolute!important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); padding: 0; margin: -1px; border: 0; }

/* END OF STYLE */
