/* ===================================================
   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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F9F6F2;
  color: #22322b;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:focus {
  outline: 2px solid #155B4A;
  outline-offset: 1px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  box-sizing: border-box;
}

/* ===================================================
   BRAND FONTS & GEOMETRIC STRUCTURED TYPOGRAPHY
=================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --primary: #155B4A;
  --primary-dark: #124c3e;
  --secondary: #F5C97B;
  --secondary-dark: #e2b564;
  --accent: #F9F6F2;
  --gray: #e5e5e2;
  --shadow: 0 4px 24px rgba(27,42,44,0.07), 0 1.5px 5px rgba(27,42,44,0.04);
  --radius-sm: 10px;
  --radius-lg: 18px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--accent);
  color: #233c2f;
  letter-spacing: 0.03em;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.035em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

p, ul, ol {
  margin-bottom: 16px;
  color: #22322b;
}
strong {
  font-weight: 600;
}

/* For extra geometric structured look on headings */
h1, h2, h3, h4 {
  text-transform: uppercase;
  font-family: var(--font-display);
  font-feature-settings: "ss01", "ss02";
}
.subline {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: #406d5b;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 22px;
}

/* ===================================================
   BASIC STRUCTURE & GEOMETRIC/GUTTERED LAYOUT
=================================================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 38px;
}
.card {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
  padding: 32px 28px 26px 28px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.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;
  margin-bottom: 36px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--secondary);
  color: #22322b;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  box-shadow: 0 2px 16px rgba(27,42,44,0.07);
  margin-bottom: 24px;
  min-height: 90px;
  position: relative;
  flex-direction: column;
  font-size: 1.03rem;
  border: 1.5px solid #e8d098;
}
.testimonial-card strong {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 3px;
}
.testimonial-card span {
  color: #233c2f;
  font-style: italic;
}
.testimonial-card div {
  color: #ffb905;
  font-family: var(--font-display);
  font-size: 1.14em;
  letter-spacing: 0.07em;
  margin-top: 4px;
  margin-bottom: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 25px 22px;
  margin-bottom: 20px;
}

/* ---------------------------------------------
   HERO SECTIONS
---------------------------------------------- */
.hero {
  background: linear-gradient(115deg, var(--primary) 50%, var(--secondary) 100%);
  color: #fff;
  padding: 58px 0 52px 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom: 50px;
  box-shadow: 0 8px 32px rgba(27,42,44,0.06);
}
.hero h1,
.hero h2 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(21,91,74,0.10);
}
.hero p,
.hero .subline {
  color: #fff6dc;
  font-weight: 500;
}
.hero .cta {
  margin-top: 14px;
}
.hero .content-wrapper {
  gap: 18px;
}

/* ---------------------------------------------
   NAVIGATION
---------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1.5px solid #e7e9e3;
  box-shadow: 0 1px 10px rgba(27,42,44,0.02);
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  max-width: 1100px;
  margin: 0 auto;
  gap: 20px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}
.main-nav ul li a {
  font-family: var(--font-display);
  font-size: 1.03rem;
  color: #22322b;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  font-weight: 600;
  border-radius: 7px;
  padding: 6px 14px;
  transition: background 0.18s cubic-bezier(.4,0,.2,1), color 0.18s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cta.primary {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  border: none;
  border-radius: 13px;
  padding: 12px 26px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 18px rgba(21,91,74,0.07);
  transition: background 0.15s cubic-bezier(.4,0,.2,1),transform 0.13s;
  cursor: pointer;
  margin-left: 18px;
  text-transform: uppercase;
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--primary-dark);
  transform: translateY(-2px) scale(1.018);
}
.cta {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  border: none;
  border-radius: 13px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 1px 8px rgba(21,91,74,0.06);
  transition: background 0.17s cubic-bezier(.4,0,.2,1),transform 0.13s;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
}
.cta:hover,
.cta:focus {
  background: var(--secondary-dark);
  color: var(--primary);
  transform: translateY(-1.5px) scale(1.014);
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  position: relative;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  margin-left: 18px;
  cursor: pointer;
  z-index: 301;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 9px rgba(21,91,74,0.10);
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--primary);
}
.mobile-menu-toggle:hover {
  background: var(--secondary-dark);
  color: var(--primary-dark);
}

/* MOBILE NAV OVERLAY */
.mobile-menu {
  position: fixed;
  z-index: 330;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(250,248,240,0.96);
  box-shadow: 0 6px 28px 0 rgba(21,91,74,.17);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.7,.1,.3,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0%);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  margin: 20px 14px 20px auto;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 332;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--primary-dark);
}
.mobile-menu-close:hover {
  color: var(--primary-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 85vw;
  margin-top: 10vh;
  margin-left: 24px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.34rem;
  color: var(--primary);
  padding: 10px 0 6px 0;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  border-radius: 3px;
  transition: border 0.18s, background 0.16s, color 0.16s;
  width: 100%;
  display: block;
}
.mobile-nav a:focus {
  outline: 2px solid var(--secondary);
}
.mobile-nav a:hover {
  border-bottom: 2px solid var(--secondary);
  background: rgba(245,201,123,.20);
  color: var(--primary-dark);
}

/* Hide nav on mobile, show hamburger */
@media (max-width: 991px) {
  .main-nav ul,
  .main-nav .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ---------------------------------------------
   FOOTER
---------------------------------------------- */
footer {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  padding-top: 24px;
  padding-bottom: 10px;
  margin-top: 45px;
}
footer section {
  background: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
.footer-links a {
  color: var(--secondary);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  transition: color 0.17s;
}
.footer-links a:hover {
  color: #fff6dc;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.brand-info img {
  height: 40px;
  border-radius: 11px;
  background: #fff;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(21,91,74,0.06);
}
.brand-info div {
  color: #fff6dc;
  font-size: 0.96em;
}
.brand-info div a {
  color: var(--secondary);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.16s;
}
.brand-info div a:hover {
  color: #fff;
}

/* ---------------------------------------------
   ARTICLE / TEXT / LISTS / BLOCKS
---------------------------------------------- */
.content-wrapper ul,
.content-wrapper ol {
  padding-left: 19px;
  margin-bottom: 18px;
}
.content-wrapper ul li, .content-wrapper ol li {
  margin-bottom: 9px;
  font-size: 1.05em;
  line-height: 1.5;
  position: relative;
  padding-left: 17px;
}
.content-wrapper ul li:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 7px;
}
.content-wrapper ul li strong {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
}

.content-wrapper p {
  margin-bottom: 1em;
}
.content-wrapper h2 + p {
  margin-top: -12px;
}

/* ---------------------------------------------
   RESPONSIVE / FLEXBOX LAYOUTS
---------------------------------------------- */
@media (max-width: 991px) {
  .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .content-wrapper { gap: 19px; }
}
@media (max-width: 768px) {
  .main-nav {
    flex-direction: row;
    padding: 7px 0;
  }
  .hero {
    padding: 36px 0 32px 0;
    margin-bottom: 33px;
    border-radius: 0 0 11px 11px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.22rem; }
  .section {
    margin-bottom: 35px;
    padding: 23px 8px;
    border-radius: var(--radius-sm);
  }
  .card {
    padding: 21px 10px 16px 10px;
  }
  .brand-info img {
    height: 30px;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    padding: 14px;
    font-size: 0.98em;
    min-height: 70px;
  }
  .feature-item {
    padding: 16px 8px;
    border-radius: 7px;
  }
  .footer-links { gap: 14px; }
  .text-image-section {
    flex-direction: column !important;
    gap: 16px;
  }
}
@media (max-width: 580px) {
  .container { padding: 0 4px; }
  .hero { padding: 18px 0 18px 0; }
  .section { padding: 8px 2px; }
}

/* ---------------------------------------------
   BUTTONS & INTERACTIONS
---------------------------------------------- */
button,
input[type="submit"] {
  font-family: var(--font-display);
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  outline: none;
  transition: background .18s,color .15s,transform .13s;
}
button:active,
input[type="submit"]:active {
  transform: scale(.97);
}

/* ---------------------------------------------
   CARD HOVER EFFECTS
---------------------------------------------- */
.card:hover {
  box-shadow: 0 8px 32px rgba(21,91,74,0.09), 0 2px 7px rgba(21,91,74,0.06);
  transform: translateY(-2.5px) scale(1.012);
  border-color: var(--secondary);
}
.feature-item:hover {
  box-shadow: 0 6px 22px rgba(21,91,74,0.09);
  background: var(--secondary);
}
.testimonial-card {
  transition: box-shadow .18s, background .17s, transform .12s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px rgba(21,91,74,0.10);
  background: #fdeabd;
}

/* ---------------------------------------------
   COOKIES CONSENT BANNER & MODAL
---------------------------------------------- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbea;
  color: #22322b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  box-shadow: 0 -5px 26px rgba(21,91,74,0.09);
  padding: 26px 12vw 21px 12vw;
  border-radius: 18px 18px 0 0;
  z-index: 6000;
  font-size: 1.09rem;
}
#cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-left: 24px;
}
#cookie-banner button {
  font-family: var(--font-display);
  font-size: 1em;
  border-radius: 8px;
  padding: 7px 22px;
  font-weight: 600;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow .15s;
}
#cookie-banner .accept {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 14px rgba(21,91,74,0.07);
}
#cookie-banner .accept:hover {
  background: var(--primary-dark);
}
#cookie-banner .reject {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
#cookie-banner .reject:hover {
  background: var(--secondary);
  color: var(--primary-dark);
}
#cookie-banner .settings {
  background: var(--secondary);
  color: var(--primary);
}
#cookie-banner .settings:hover {
  background: var(--secondary-dark);
}
@media (max-width: 680px) {
  #cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 14px 3vw 13px 3vw;
    font-size: 0.96rem;
    border-radius: 9px 9px 0 0;
  }
  #cookie-banner .cookie-actions {
    margin-left: 0;
  }
}

/* Cookie Modal Overlay and Window */
#cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,42,44,0.32);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn .22s;
}
#cookie-modal-overlay.active {
  display: flex;
}
#cookie-modal {
  background: #fff;
  border-radius: 17px;
  padding: 38px 28px 24px 28px;
  box-shadow: 0 12px 70px rgba(21,91,74,0.13);
  min-width: 320px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: popupUp .34s cubic-bezier(.4,0,.2,1);
}
#cookie-modal h2 {
  color: var(--primary);
  font-size: 1.22rem;
  margin-bottom: 0.7em;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 10px;
}
#cookie-modal .cookie-category label {
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 1.06em;
  letter-spacing: 0.01em;
}
#cookie-modal .cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px; height: 24px;
}
#cookie-modal .cookie-switch input { display: none; }
#cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #e2e2e0;
  border-radius: 14px;
  transition: .18s;
}
#cookie-modal .slider:before {
  position: absolute;
  content: "";
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 50%;
  transition: .18s;
}
#cookie-modal .cookie-switch input:checked + .slider {
  background: var(--secondary);
}
#cookie-modal .cookie-switch input:checked + .slider:before {
  background: var(--primary);
  transform: translateX(20px);
}
#cookie-modal .description {
  font-size: 0.97em;
  color: #3b5243;
  margin-bottom: 8px;
  margin-left: 7px;
}
#cookie-modal .close-modal {
  position: absolute;
  right: 16px;
  top: 13px;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 1.45rem;
  cursor: pointer;
  transition: color .15s;
  z-index: 2;
}
#cookie-modal .close-modal:hover {
  color: var(--primary-dark);
}
#cookie-modal .modal-actions {
  margin-top: 17px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
#cookie-modal .modal-actions button {
  padding: 8px 18px;
  border-radius: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1em;
  transition: background .18s, color .16s;
}
#cookie-modal .modal-actions .accept {
  background: var(--primary);
  color: #fff;
}
#cookie-modal .modal-actions .accept:hover {
  background: var(--primary-dark);
}
#cookie-modal .modal-actions .cancel {
  background: var(--secondary);
  color: var(--primary);
}
#cookie-modal .modal-actions .cancel:hover {
  background: var(--secondary-dark);
}
@keyframes popupUp {
  0% { transform: scale(0.81) translateY(54px); opacity: 0; } 
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------------------------------------------
   FINE TUNING: MARGINS, GAPS, MIN SIZES
---------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { gap: 24px; }
.card { margin-bottom: 20px; }
.content-grid { gap: 20px; }
.text-image-section { gap: 30px; }
.testimonial-card { gap: 20px; padding: 20px; }
.feature-item { gap: 15px; }
section + section { margin-top: 0; }
.content-wrapper > * + * {
  margin-top: 0;
}

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

/* HTML defaults for common elements */
ahref, a:visited {
  color: var(--primary);
}
hr {
  border: none;
  border-top: 1.5px solid #e9e7e2;
  margin: 23px 0;
}

/* Hide elements by utility class */
.hidden { display: none!important; }

/* --- END OF FILE --- */
