/* === 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;
}
html { scroll-behavior: smooth; }
body {
  background: #F6F5F0;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #1b3126;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
  padding: 0;
}
a {
  color: #20513B;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #68AB7C;
  outline: none;
}
button, .cta {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #20513B;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li, blockquote {
  font-size: 1rem;
  color: #1b3126;
  margin-bottom: 12px;
}
blockquote {
  border-left: 6px solid #68AB7C;
  margin: 0 0 10px 0;
  padding: 10px 0 10px 20px;
  font-style: italic;
  background: #F6F5F0;
  color: #20513B;
}
strong {
  font-weight: bold;
}

/* === CONTAINER & GRID === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* === FLEXBOX LAYOUTS === */
.card-container,
.card-grid,
.feature-grid,
.guides-grid,
.service-list,
.team {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 230px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(32,81,59,0.07);
  padding: 28px 24px 24px 24px;
  min-width: 235px;
  margin-bottom: 20px;
  border: 2.5px solid #E2E7E0;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-item:hover {
  box-shadow: 0 6px 18px 0 rgba(104,171,124,0.12);
  border-color: #68AB7C;
}
.feature-item img {
  width: 40px;
  height: 40px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(32,81,59,0.09);
  padding: 28px 24px 24px 24px;
  border: 2.5px solid #E2E7E0;
  min-width: 230px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, border-color 0.2s;
  margin-bottom: 20px;
}
.service-card:hover {
  border-color: #20513B;
  box-shadow: 0 8px 18px 0 rgba(32,81,59,0.22);
}
.service-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.service-card .price {
  color: #20513B;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
}

.guide-item {
  background: #fff;
  border-radius: 14px;
  border: 2px solid #E2E7E0;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 2px 10px 0 rgba(32,81,59,0.08);
  min-width: 155px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, border-color 0.16s;
}
.guide-item:hover {
  border-color: #68AB7C;
  box-shadow: 0 6px 18px 0 rgba(104,171,124,0.15);
}
.guide-item a {
  font-size: 1rem;
  text-transform: uppercase;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #20513B;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 10px;
  transition: color 0.18s;
}
.guide-item a:hover { color: #68AB7C; }

.team {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.team-bio {
  background: #fff;
  border-radius: 14px;
  border: 2px solid #E2E7E0;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 3px 15px 0 rgba(32,81,59,0.08);
  min-width: 190px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, border-color 0.16s;
}
.team-bio:hover {
  border-color: #68AB7C;
  box-shadow: 0 8px 18px 0 rgba(104,171,124,0.16);
}

.card { margin-bottom: 20px; position: relative; }

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.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: #20513B;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 1px 12px 0 rgba(32,81,59,0.08);
  border: 2.5px solid #E2E7E0;
  margin-bottom: 24px;
  flex: 1 1 320px;
  min-width: 220px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  border-color: #20513B;
  box-shadow: 0 8px 24px 0 rgba(32,81,59,0.20);
}
.testimonial-card blockquote {
  border: none;
  background: transparent;
  font-size: 1.08rem;
  color: #20513B;
  padding: 0;
}
.testimonial-card p {
  margin: 0 0 0 12px;
  font-size: 1rem;
  color: #20513B;
}

.highlighted-stats {
  background: #20513B;
  color: #fff;
  border-radius: 12px;
  padding: 18px 26px;
  margin-top: 20px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.12rem;
  box-shadow: 0 3px 16px 0 rgba(32,81,59,0.13);
}

/* === CTA BUTTONS === */
.primary-btn, .secondary-btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 40px;
  margin-top: 10px;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  border-width: 2px;
  border-style: solid;
  box-shadow: 0 2px 10px 0 rgba(32,81,59,0.07);
}
.primary-btn {
  background: #20513B;
  color: #fff;
  border-color: #20513B;
}
.primary-btn:hover, .primary-btn:focus {
  background: #68AB7C;
  color: #20513B;
  border-color: #20513B;
  box-shadow: 0 5px 16px 0 rgba(32,81,59,0.14);
}
.secondary-btn {
  background: #68AB7C;
  color: #20513B;
  border-color: #68AB7C;
}
.secondary-btn:hover, .secondary-btn:focus {
  background: #20513B;
  color: #fff;
  border-color: #68AB7C;
  box-shadow: 0 4px 16px 0 rgba(32,81,59,0.14);
}

.cta {
  text-transform: uppercase;
  text-align: center;
}

/* === MAIN NAVIGATION === */
header {
  background: #fff;
  border-bottom: 3px solid #20513B;
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 99;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  position: relative;
  gap: 24px;
}
.main-nav > a img {
  height: 36px;
  width: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  color: #20513B;
  font-weight: 600;
  border-radius: 9px;
  padding: 7px 15px;
  letter-spacing: 0.05em;
  transition: background 0.16s, color 0.16s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #68AB7C;
  color: #fff;
}
.main-nav .primary-btn {
  margin-left: 16px;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: #20513B;
  color: #fff;
  font-size: 2rem;
  border-radius: 10px;
  padding: 7px 18px 7px 15px;
  position: absolute;
  top: 12px;
  right: 20px;
  z-index: 120;
  border: none;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #68AB7C;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #20513B;
  color: #fff;
  z-index: 150;
  transform: translateX(-100vw);
  transition: transform 0.28s cubic-bezier(0.77,0,0.175,1);
  box-shadow: 0 0 64px 0 rgba(32,81,59,0.30);
  padding: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  margin: 26px 30px 0 0;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #68AB7C; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 36px 0 0 0;
  padding: 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 8px;
  padding: 11px 10px;
  letter-spacing: 0.08em;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus { background: #68AB7C; color: #20513B; }

@media (max-width: 1024px) {
  .main-nav ul {
    gap: 12px;
  }
  .main-nav {
    gap: 10px;
  }
  .card-container,
  .feature-grid,
  .service-list,
  .guides-grid,
  .team {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav ul { gap: 5px; }
  .main-nav .primary-btn { margin-left: 5px; }
  .container { padding: 0 9px; }
}
@media (max-width: 768px) {
  /* Mobile nav toggle show, nav hide */
  .main-nav ul,
  .main-nav .cta { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav {
    flex-direction: row;
    gap: 5px;
    padding: 10px 9px 10px 9px;
  }
  .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .card-container,
  .feature-grid,
  .service-list,
  .guides-grid,
  .team {
    flex-direction: column;
    gap: 17px;
  }
  .feature-item,
  .service-card,
  .guide-item,
  .team-bio,
  .testimonial-card {
    min-width: 0 !important;
    width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .section {
    padding: 28px 6px;
    margin-bottom: 30px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
  .main-nav > a img { height: 29px; }
}
@media (max-width: 400px) {
  .mobile-menu { padding-left: 0; padding-right: 0; }
  .mobile-nav { padding: 0 8px; }
}

/* === FOR TEXT-IMAGE, FLEX ON MOBILE === */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
}

/* === FOOTER === */
footer {
  background: #20513B;
  color: #fff;
  padding: 32px 0 12px 0;
  margin-top: 48px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  background: transparent;
  border-radius: 7px;
  padding: 5px 13px;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus { background: #68AB7C; color: #20513B; }
.footer-info {
  text-align: center;
  font-size: 0.95rem;
  color: #E2E7E0;
  line-height: 1.7;
}

/* === STRUCTURAL ELEMENTS SPACING & ALIGNMENT === */
ul, ol {
  margin-bottom: 14px;
  margin-left: 18px;
}
ul li, ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}
li span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #20513B;
  font-weight: 600;
}
section ul li {
  padding-left: 0.1em;
}
.section:last-child { margin-bottom: 0; }

/* === HIGHLIGHTS === */
.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 16px 0;
}

/* === MICRO-INTERACTIONS === */
button, .cta, .service-card, .feature-item, .guide-item, .testimonial-card, .team-bio {
  transition: box-shadow 0.16s, border-color 0.16s, background 0.16s, color 0.15s;
}

/* === GEOMETRIC SHAPE DECORATIONS === */
.feature-item, .service-card, .guide-item, .testimonial-card, .team-bio {
  /* Polygonal, geometric box model */
  border-radius: 18px 7px 17px 7px;
}
.primary-btn, .secondary-btn {
  border-radius: 40px 16px 28px 6px;
}

/* === MISCELLANEOUS UTILITY === */
[class*="card"]:not(.service-card):not(.feature-item):not(.guide-item):not(.testimonial-card):not(.team-bio) {
  background: #fff;
}

/* === COOKIE CONSENT BANNER COMPONENTS === */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #20513B;
  box-shadow: 0 -2px 24px 0 rgba(32,81,59,0.10);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  z-index: 1400;
  min-height: 64px;
  font-size: 1rem;
  border-top: 3px solid #20513B;
  animation: cookie-slide-up 0.4s cubic-bezier(0.22,0.6,0.4,1.21);
}
@keyframes cookie-slide-up {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  flex: 1 1 220px;
  margin-right: 12px;
  color: #20513B;
  font-size: 1rem;
}
.cookie-btns {
  display: flex;
  gap: 12px;
}
.cookie-btns button {
  padding: 7px 20px;
  border-radius: 30px 9px 18px 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid #68AB7C;
  background: #fff;
  color: #20513B;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.cookie-btns button:hover, .cookie-btns button:focus {
  background: #20513B;
  color: #fff;
  border-color: #20513B;
}
.cookie-btns .cookie-accept {
  background: #68AB7C;
  color: #20513B;
  border-color: #68AB7C;
}
.cookie-btns .cookie-accept:hover, .cookie-btns .cookie-accept:focus {
  background: #20513B;
  color: #fff;
  border-color: #20513B;
}
.cookie-btns .cookie-settings {
  background: #fff;
}

@media (max-width: 650px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 19px 10px;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1600;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(32,81,59,0.45);
  align-items: center;
  justify-content: center;
  animation: cookie-fade-in 0.25s;
}
@keyframes cookie-fade-in { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #20513B;
  border-radius: 18px 6px 18px 6px;
  box-shadow: 0 0 48px 0 rgba(32,81,59,0.17);
  padding: 36px 34px 30px 34px;
  min-width: 320px;
  max-width: 90vw;
  position: relative;
  z-index: 1700;
  text-align: left;
  animation: cookie-popup-in 0.22s cubic-bezier(0.22,0.61,0.36,1.11);
}
@keyframes cookie-popup-in {
  0% {transform: scale(0.9) translateY(30px);opacity:0;}
  100% {transform: scale(1) translateY(0);opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: #20513B;
  margin-bottom: 19px;
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 24px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  width: 36px;
  height: 20px;
  background: #E2E7E0;
  border-radius: 20px;
  position: relative;
  margin-left: 4px;
  transition: background .16s;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  outline: none;
}
.cookie-modal .cookie-toggle[data-checked="true"] {
  background: #68AB7C;
}
.cookie-modal .cookie-toggle .toggle-knob {
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform .17s cubic-bezier(0.55,0.12,0.71,1.22);
}
.cookie-modal .cookie-toggle[data-checked="true"] .toggle-knob {
  transform: translateX(16px);
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 13px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #20513B;
  cursor: pointer;
  padding: 4px;
  transition: color 0.13s;
}
.cookie-modal-close:hover { color: #68AB7C; }
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 8px 20px;
  border-radius: 26px 12px 16px 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid #68AB7C;
  background: #fff;
  color: #20513B;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, border-color 0.17s;
}
.cookie-modal .cookie-modal-actions .cookie-accept {
  background: #68AB7C;
  color: #20513B;
  border-color: #68AB7C;
}
.cookie-modal .cookie-modal-actions .cookie-accept:hover, .cookie-modal .cookie-modal-actions .cookie-accept:focus {
  background: #20513B;
  color: #fff;
  border-color: #20513B;
}
.cookie-modal .cookie-modal-actions .cookie-reject {
  border-color: #68AB7C;
  background: #fff;
  color: #20513B;
}
.cookie-modal .cookie-modal-actions .cookie-reject:hover, .cookie-modal .cookie-modal-actions .cookie-reject:focus {
  background: #68AB7C;
  color: #20513B;
  border-color: #20513B;
}

@media (max-width: 450px) {
  .cookie-modal {
    padding: 19px 7px 17px 7px;
    min-width: unset;
  }
}

/* === SELECTION COLORS === */
::selection { background: #E2E7E0; color: #20513B; }
::-moz-selection { background: #E2E7E0; color: #20513B; }


/* === SCROLLBAR (WEBKIT ONLY) === */
::-webkit-scrollbar { width: 10px; background: #F6F5F0; }
::-webkit-scrollbar-thumb { background: #E2E7E0; border-radius: 10px; }

/* === END OF FILE === */
