/* RESET & BASE TYPOGRAPHY */
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 {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #222;
  background: linear-gradient(135deg, #F7F7F7 0%, #FFFBEA 100%);
  min-height: 100vh;
  line-height: 1.7;
  font-size: 1rem;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: #1B3D2F;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #FFA900;
}
a:hover {
  color: #FFA900;
}

/* HEADINGS & TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1B3D2F;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 { font-size: 2.25rem; line-height: 1.2; }
h2 { font-size: 1.75rem; line-height: 1.25; }
h3 { font-size: 1.25rem; line-height: 1.4; }
h4 { font-size: 1.1rem; }

p, li, ul, ol {
  color: #1B3D2F;
  font-size: 1rem;
}

strong {
  font-weight: 700;
  color: #222;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 1.2em;
}
ul ul, ul ol, ol ul, ol ol {
  margin-bottom: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 20px 0 rgba(27, 61, 47, 0.05);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.hero {
  background: linear-gradient(100deg, #F7F7F7 0%, #FFA900 80%);
  padding: 48px 0 64px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  color: #1B3D2F;
  font-size: 2.75rem;
  margin-bottom: 16px;
}
.hero p {
  color: #294639;
  font-size: 1.2rem;
  margin-bottom: 32px;
}

/* NAVIGATION & HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(27, 61, 47, 0.05);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}
.logo img { height: 42px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.main-nav a {
  padding: 8px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1B3D2F;
  transition: color 0.2s;
  border-radius: 5px;
  position: relative;
}
.main-nav a.cta-primary {
  background: linear-gradient(90deg, #FFA900 40%, #FFD35A 100%);
  color: #1B3D2F;
  border-radius: 22px;
  padding: 9px 25px;
  box-shadow: 0 2px 8px rgba(255,169,0,0.07);
  font-weight: 700;
  margin-left: 16px;
  transition: background 0.22s, box-shadow 0.2s, color 0.2s;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: linear-gradient(90deg, #FFD35A 20%, #FFA900 90%);
  color: #1B3D2F;
  box-shadow: 0 4px 16px rgba(255,169,0,0.12);
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFA900;
}

/* BURGER / MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #FFA900;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 3px solid #FFA900;
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2020;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(27,61,47,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 60px 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #1B3D2F;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  outline: 3px solid #FFA900;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 18px;
}
.mobile-nav a {
  color: #1B3D2F;
  font-size: 1.2rem;
  padding: 13px 6px;
  width: 96vw;
  max-width: 400px;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.18s, color 0.18s;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFA900;
  color: #fff;
}


/* BUTTONS & CTA */
.cta-primary {
  display: inline-block;
  background: linear-gradient(100deg, #FFA900 50%, #FFD35A 100%);
  color: #1B3D2F;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(255,169,0,0.10);
  cursor: pointer;
  margin-top: 16px;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(100deg, #FFD35A 25%, #FFA900 90%);
  color: #fff;
  box-shadow: 0 3px 16px 0 rgba(255,169,0,0.18);
}

.cta-secondary {
  display: inline-block;
  background: none;
  border: 2px solid #FFA900;
  border-radius: 24px;
  color: #1B3D2F;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 24px;
  transition: background 0.20s, color 0.20s, border-color 0.18s;
  margin-top: 10px;
  cursor: pointer;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #FFA900;
  color: #fff;
  border-color: #FFD35A;
}

/* FLEXBOX LAYOUTS & CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(27, 61, 47, 0.06);
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.18s;
  position: relative;
}
.card:hover {
  box-shadow: 0 7px 32px rgba(27,61,47,0.13);
  transform: translateY(-3px) scale(1.01);
}
.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;
  padding: 20px;
  background: #F7F7F7;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(27, 61, 47, 0.06);
  margin-bottom: 20px;
  color: #1B3D2F;
  font-size: 1rem;
  transition: box-shadow 0.2s, transform 0.18s;
  min-height: 124px;
}
.testimonial-card strong {
  color: #1B3D2F;
}
.testimonial-card p {
  color: #222;
  font-size: 1rem;
}
.testimonial-card span {
  margin-top: 6px;
  display: block;
  color: #666;
  font-size: 0.95rem;
}
.testimonial-card:hover {
  box-shadow: 0 7px 32px rgba(27,61,47,0.17);
  transform: translateY(-2px) scale(1.015);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(27, 61, 47, 0.05);
  padding: 20px 18px;
  margin-bottom: 16px;
}

/* SPECIFIC PATTERNS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.feature-grid > div {
  min-width: 220px;
  flex: 1 1 250px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(27,61,47,0.07);
  padding: 18px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.20s, transform 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 26px #FFA90033;
  transform: translateY(-2px) scale(1.01);
}
.feature-grid img { width: 45px; }

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-cards > div {
  flex: 1 1 240px;
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(27,61,47,0.07);
  padding: 20px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.20s, transform 0.18s;
}
.service-cards > div:hover {
  box-shadow: 0 6px 26px #FFA90033;
  transform: translateY(-2px) scale(1.01);
}
.service-cards img { width: 48px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(27, 61, 47, 0.06);
  padding: 18px 16px 14px 16px;
}
.faq-list h3 {
  margin-bottom: 8px;
  color: #1B3D2F;
  font-size: 1.15rem;
}

/* OL/UL inside steps/overview */
ol {
  padding-left: 1.3em;
  margin-bottom: 18px;
}
ol li {
  margin-bottom: 9px;
}
ol li img {
  width: 36px;
  margin-right: 10px;
  vertical-align: middle;
}

/* FOOTER */
footer {
  background: linear-gradient(96deg,#1B3D2F 70%, #FFA900 140%);
  color: #fff;
  margin-top: 60px;
  padding: 0 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  padding: 28px 0 12px 0;
  border-bottom: 1px solid #E5E5E5;
}
.footer-brand img {
  height: 46px;
}
.footer-nav, .footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a, .footer-links a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.95;
  transition: color 0.18s, opacity 0.18s;
}
.footer-nav a:hover, .footer-links a:hover {
  color: #FFD35A;
  opacity: 1;
}
.footer-contact {
  margin-top: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #fff;
  font-size: 0.96rem;
}
.footer-contact a {
  color: #FFD35A;
  text-decoration: underline;
}

/* COOKIE BANNER FIXED BOTTOM */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff9f3;
  color: #1B3D2F;
  box-shadow: 0 -2px 20px rgba(27,61,47,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 20px 16px;
  z-index: 3000;
  font-size: 1rem;
  gap: 16px;
  animation: cookieBannerIn 0.45s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  padding: 8px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, box-shadow 0.14s;
}
.cookie-banner .accept-all {
  background: #FFA900;
  color: #1B3D2F;
  font-weight: 700;
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: #FFD35A;
  color: #fff;
}
.cookie-banner .reject-all {
  background: #F7F7F7;
  color: #1B3D2F;
  border: 1px solid #FFA900;
  font-weight: 600;
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: #FFF2DC;
}
.cookie-banner .cookie-settings-btn {
  background: none;
  border: 1px solid #FFA900;
  color: #1B3D2F;
  font-weight: 500;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #FFF2DC;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(27,61,47,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3020;
  animation: fadeInCookieModal 0.29s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 32px 0 rgba(27,61,47,0.15);
  padding: 32px 26px;
  width: 95vw;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  animation: zoomInModal 0.33s cubic-bezier(.4,0,.2,1);
}
@keyframes zoomInModal {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 24px;
}
.cookie-modal-title {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1B3D2F;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #1B3D2F;
  font-size: 1.4rem;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.14s;
  padding: 2px 7px;
  border-radius: 14px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FFA900;
  background: #F7F7F7;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  width: 100%;
}
.cookie-category label {
  font-size: 1rem;
  color: #222;
}
.cookie-switch {
  appearance: none;
  width: 39px;
  height: 22px;
  background: #E6E6E6;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.19s;
}
.cookie-switch:checked {
  background: #FFA900;
}
.cookie-switch:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: left 0.17s, background 0.15s;
  box-shadow: 0 2px 6px 0 rgba(0,0,0,0.06);
}
.cookie-switch:checked:before {
  left: 20px;
  background: #FFFBEA;
}
.cookie-modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 10px;
}
.cookie-modal-actions button {
  padding: 7px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 17px;
  border: none;
  cursor: pointer;
  transition: background 0.19s, color 0.16s;
  font-weight: 600;
}
.cookie-modal-actions .save {
  background: #FFA900;
  color: #1B3D2F;
}
.cookie-modal-actions .save:hover {
  background: #FFD35A;
  color: #fff;
}
.cookie-modal-actions .cancel {
  background: #F7F7F7;
  color: #1B3D2F;
  border: 1px solid #FFA900;
}
.cookie-modal-actions .cancel:hover {
  background: #FFF2DC;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container {
    max-width: 990px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 730px;
  }
  .footer-main {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .feature-grid, .service-cards, .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 28px 0 36px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .main-nav {
    display: none !important;
  }
  .footer-main {
    gap: 12px;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .feature-grid, .service-cards, .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 17px;
    justify-content: flex-start;
    align-items: stretch;
  }
  .feature-grid > div, .service-cards > div, .card {
    min-width: 0;
    width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 10px;
    font-size: 0.97rem;
  }
  .footer-nav, .footer-links {
    flex-direction: column;
  }
}
@media (max-width: 498px) {
  h1 { font-size: 1.30rem; }
  h2 { font-size: 1.05rem; }
  .cookie-modal-content {
    padding: 20px 7px;
  }
  .cta-primary, .cta-secondary {
    font-size: 1rem;
    padding: 10px 12px;
  }
}

/* MICROINTERACTIONS & EFFECTS */
.card, .feature-grid > div, .service-cards > div {
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:focus-within, .feature-grid > div:focus-within, .service-cards > div:focus-within {
  box-shadow: 0 0 0 3px #FFA90044, 0 5px 25px #FFA90033;
}

.cta-primary:active, .cta-secondary:active {
  transform: scale(0.97);
}
.mobile-menu, .mobile-nav a, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.22s, color 0.19s, transform 0.17s;
}
.mobile-menu.open {
  animation: mobileSlideIn 0.39s cubic-bezier(.4,0,.2,1);
}
@keyframes mobileSlideIn {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0); }
}

/* ACCESSIBILITY */
:focus {
  outline: 2px dotted #FFA900;
  outline-offset: 2px;
}

/* VISUAL DELIMITERS & SHADOWS */
hr {
  border: none;
  border-bottom: 1px dashed #FFA90044;
  margin: 36px 0;
}

/* Hide cookie modal by default */
.cookie-modal {
  display: none;
}
.cookie-modal.open {
  display: flex;
}

/* Hide cookie banner when dismissed */
.cookie-banner.closed {
  display: none !important;
}

/* Print styles */
@media print {
  header, footer, .cookie-banner, .cookie-modal { display: none !important; }
}
