/* --- RESET & BASE STYLES --- */
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; 
  scroll-behavior: smooth; 
}
*, *:before, *:after { 
  box-sizing: inherit; 
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #ffffff;
  background: linear-gradient(135deg, #35543F 0%, #466A51 80%);
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #B7591C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD186;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: 700;
}
em, i {
  font-style: italic;
}
hr {
  border: none;
  border-bottom: 1px solid #466A51;
  margin: 32px 0;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #FFD186;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 { font-size: 2.6rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 12px; }
h3 { font-size: 1.33rem; margin-bottom: 8px; color: #F5F2EF; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; }
p, li, blockquote {
  font-size: 1rem;
  color: #F5F2EF;
  margin-bottom: 10px;
}
blockquote {
  font-style: italic;
  color: #35543F;
  background: #FFD186;
  border-left: 4px solid #B7591C;
  padding: 12px 22px;
  margin: 0 0 16px 0;
  border-radius: 6px;
  box-shadow: 0 4px 22px 0 rgba(53,84,63,0.14);
}
cite {
  font-family: 'Open Sans', sans-serif;
  color: #35543F;
  font-size: 1rem;
  font-style: normal;
  margin-left: 10px;
  font-weight: 600;
}
.section > h1, .section > h2 { color: #FFD186; }
.text-section h2, .text-section h3 { color: #B7591C; } 

/* --- HEADER --- */
header {
  background: rgba(40, 50, 43, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 2px solid #466A51;
  position: relative;
  z-index: 100;
}
header .container,
header > nav, 
header > .cta { flex: 1; }
header img {
  height: 54px;
  margin-right: 32px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  color: #F5F2EF;
  font-weight: 600;
  padding: 8px 0 4px 0;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  transition: border 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
}
header nav a:hover, header nav a:focus {
  color: #FFD186;
  border-bottom: 2px solid #B7591C;
}
.cta.primary, .cta.secondary {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  display: inline-block;
  padding: 10px 32px;
  margin-left: 16px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px 0 rgba(31,35,33,0.08);
  position: relative;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta.primary {
  background: #B7591C;
  color: #fff;
  box-shadow: 0 0 0 0 #FFD186, 0 2px 12px 0 rgba(183,89,28,0.08);
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFD186;
  color: #35543F;
  box-shadow: 0 0 0 2px #B7591C, 0 8px 24px 0 rgba(183,89,28,0.12);
}
.cta.secondary {
  background: transparent;
  color: #FFD186;
  border: 2px solid #FFD186;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #FFD186;
  color: #35543F;
  border-color: #B7591C;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  background: none;
  color: #FFD186;
  border: none;
  font-size: 2rem;
  padding: 10px 10px 8px 10px;
  cursor: pointer;
  display: none;
  z-index: 120;
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0; top: 0; 
  width: 100vw;
  height: 100vh;
  background: rgba(53, 84, 63, 0.99);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.74,0.09,0.33,0.97);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: mobileMenuFadeIn 0.38s cubic-bezier(0.74,0.09,0.33,0.97);
}
@keyframes mobileMenuFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.mobile-menu-close {
  background: none;
  color: #FFD186;
  border: none;
  font-size: 2rem;
  margin: 22px 20px 10px 0;
  align-self: flex-end;
  cursor: pointer;
  z-index: 110;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 0 28px 28px 28px;
}
.mobile-nav a {
  color: #F5F2EF;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px;
  border-radius: 18px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD186;
  color: #35543F;
}
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta.primary {
    display: none;
  }
}
@media (max-width: 600px) {
  header img {
    height: 38px;
  }
  header {
    padding: 8px 0;
  }
}

/* --- MAIN & SECTIONS --- */
main {
  margin-top: 0;
  background: none;
  min-height: 60vh;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(70,106,81,0.25);
  border-radius: 26px;
  box-shadow: 0 4px 32px 0 rgba(44,55,48,0.10);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  background: rgba(255,255,255,0.08);
  padding: 24px 28px;
  border-radius: 18px;
  margin-bottom: 18px;
  color: #F5F2EF;
}
.text-section p, .text-section a {
  color: #F5F2EF;
}
.text-section a:hover {
  color: #B7591C;
  text-decoration: underline;
}

/* --- CARDS & FLEX UTILITY --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: rgba(245,242,239,0.05);
  border: 1.5px solid #466A51;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(70,106,81,0.10);
  padding: 24px 22px;
  flex: 1 1 310px;
  min-width: 265px;
  transition: box-shadow 0.21s, border 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 32px 0 #FFD18644;
  border: 1.5px solid #FFD186;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.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;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #35543F;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 16px 0 rgba(53,84,63,0.14);
  margin-bottom: 24px;
  min-width: 260px;
}
.testimonial-card blockquote {
  color: #35543F;
  background: transparent;
  border: none;
  font-size: 1.08rem;
  line-height: 1.5;
  padding: 0;
  margin-bottom: 4px;
  box-shadow: none;
}
.testimonial-card cite {
  color: #934C27;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Section Lists Style */
ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
ul li {
  flex: 1 1 220px;
  min-width: 180px;
  background: rgba(245,242,239,0.08);
  border-radius: 14px;
  padding: 18px 16px 18px 16px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.17s, box-shadow 0.2s;
  box-shadow: 0 2px 10px 0 rgba(53,84,63,0.07);
}
ul li:hover {
  background: #FFD18622;
  box-shadow: 0 8px 32px #FFD18633;
}
ul li img {
  margin-bottom: 7px;
  width: 36px;
  height: 36px;
}
ul li h3 {
  color: #FFD186;
}

/* --- BUTTONS --- */
button, .btn {
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 24px;
  border: none;
  padding: 10px 26px;
  background: #B7591C;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 10px 0 rgba(53,84,63,0.09);
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: #FFD186;
  color: #35543F;
  box-shadow: 0 4px 16px 0 rgba(183,89,28,0.16);
  outline: none;
}

/* --- FORMS & INPUTS --- */
input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 9px;
  outline: none;
  border: 1.5px solid #466A51;
  background: rgba(255,255,255,0.85);
  color: #35543F;
  font-size: 1rem;
  margin-bottom: 18px;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #B7591C;
}
label {
  display: block;
  margin-bottom: 6px;
  color: #FFD186;
  font-weight: 600;
}

/* --- FOOTER --- */
footer {
  background: rgba(53,84,63,0.98);
  padding: 44px 0 30px 0;
  border-top: 2px solid #466A51;
}
footer nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-bottom: 12px;
}
footer nav a {
  color: #FFD186;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #B7591C;
}
footer .text-section {
  color: #fff;
  text-align: center;
  background: none;
  padding: 0;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 1200;
  background: rgba(40,50,43,0.97);
  color: #FFD186;
  padding: 24px 16px 16px 16px;
  box-shadow: 0 -2px 22px 0 #B7591C22;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  animation: cookieBannerSlideUp 0.37s cubic-bezier(0.61,0.04,0.2,1.01);
}
@keyframes cookieBannerSlideUp {
  from { transform: translateY(128px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 20px;
}
.cookie-banner button {
  border: none;
  border-radius: 22px;
  background: #B7591C;
  color: #fff;
  font-size: 1rem;
  padding: 10px 26px;
  margin: 0;
  box-shadow: 0 2px 6px 0 #FFD18623;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .cookie-settings {
  background: #FFD186;
  color: #35543F;
  border: 1.5px solid #B7591C;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFD186;
  color: #35543F;
}

/* Cookie MODAL */
.cookie-modal {
  position: fixed;
  z-index: 1300;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-80%) scale(0.95);
  min-width: 320px;
  background: #fff;
  color: #35543F;
  box-shadow: 0 6px 56px 0 #466A5136, 0 2px 18px 0 #FFD18618;
  border-radius: 18px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.23s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-46%) scale(1);
  animation: cookieModalIn 0.34s cubic-bezier(0.62,0.26,0.18,1.1);
}
@keyframes cookieModalIn {
  from { transform: translate(-50%,-80%) scale(0.95); opacity: 0; }
  to { transform: translate(-50%,-46%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #B7591C; font-size: 1.22rem; margin-bottom: 10px;
}
.cookie-modal label { color: #35543F; font-weight: 500; }
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-modal input[type=checkbox], .cookie-modal input[type=radio] {
  width: 18px; height: 18px;
  accent-color: #B7591C;
  margin-bottom: 0;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 18px; top: 18px;
  background: none;
  color: #934C27;
  font-size: 1.45rem;
  border: none;
  cursor: pointer;
  padding: 2px 10px 2px 10px;
  border-radius: 16px;
  transition: background 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #FFD18644;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 10px;
  display: flex; gap: 18px;
  flex-wrap: wrap;
}
.cookie-modal button {
  font-size: 1rem;
}

/* --- NEON EFFECTS/ACCENTS (Tech Futuristic) --- */
.cta.primary, .cta.secondary {
  box-shadow: 0 2px 18px 0 #FFD18644, 0 0 6px 1px #934C2772 inset;
}
.cta.primary:hover, .cta.secondary:hover {
  box-shadow: 0 7px 32px #FFD18666, 0 0 12px 1px #B7591C88;
}
.header nav a, .footer nav a {
  text-shadow: 0 0 6px #FFD18650;
}

/* Subtle accent highlight on major card/section hover */
.card:hover, ul li:hover, .testimonial-card:hover {
  box-shadow: 0 7px 32px #FFD18666, 0 0 12px 1px #B7591C55;
}

/* --- MEDIA QUERIES / RESPONSIVENESS --- */
@media (max-width: 1200px) {
  .container { max-width: 980px; }
  ul { gap: 16px; }
}
@media (max-width: 992px) {
  .container { max-width: 90vw; }
  .content-wrapper { gap: 18px; }
  .section { padding: 32px 8px; }
  ul { gap: 13px; }
  .card-container, .content-grid { gap: 16px; }
}
@media (max-width: 768px) {
  .container { max-width: 98vw; }
  .section { padding: 24px 0; margin-bottom: 38px; }
  ul {
    gap: 10px;
    flex-direction: column;
  }
  ul li, .card, .testimonial-card {
    min-width: 100px;
    width: 100%;
    margin-bottom: 16px;
  }
  .content-wrapper, .card-content { gap: 14px; }
  .content-grid, .card-container {
    gap: 14px;
    flex-direction: column;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 530px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.14rem; }
  h3 { font-size: 1rem; }
  .cta.primary, .cta.secondary, .btn, button {
    width: 100%;
    margin-left: 0;
    padding: 10px 0;
    font-size: 1rem;
  }
  .cookie-banner { font-size: 0.93rem; }
  .cookie-modal { min-width: 95vw; padding: 15vw 4vw; }
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.card,
ul li,
.cta.primary,
.cta.secondary,
button,
.testimonial-card {
  transition: box-shadow 0.23s cubic-bezier(0.42,0,0.28,1),
    border 0.23s,
    background 0.16s, color 0.16s;
}

/* --- Z-INDEX MANAGEMENT --- */
header { z-index: 100; }
.mobile-menu { z-index: 999; }
.cookie-banner { z-index: 1200; }
.cookie-modal { z-index: 1300; }

/* --- FOCUS STATES --- */
a:focus, button:focus, .cta:focus {
  outline: 2px solid #FFD186;
  outline-offset: 2px;
}

/* --- UTILITY --- */
.hide { display: none !important; }

/*--- END ---*/
