/* =================== CSS 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 { scroll-behavior: smooth; }
body {
  background: #F7F5F1;
  color: #2C3B23;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  min-width: 280px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
a { color: #1D5A41; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #6C8636; text-decoration: underline; }
ul, ol { padding-left: 24px; }
strong { font-weight: 700; }

/* =================== BRAND FONTS & COLORS =================== */
:root {
  --primary: #19344C;
  --secondary: #89AEB5;
  --accent: #F7B32B;
  --organic-green: #3C6338;
  --organic-cream: #F7F5F1;
  --earth-brown: #A58E70;
  --earth-sand: #ECE1D1;
  --nature-dark: #2C3B23;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans'), url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
  font-weight: 400 600;
  font-style: normal;
}

/* =================== GLOBAL TYPOGRAPHY =================== */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  color: var(--primary);
  letter-spacing: -1px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  color: var(--organic-green);
  font-weight: 700;
  margin-bottom: 18px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--organic-green);
  margin-bottom: 10px;
}
.subheadline {
  color: var(--organic-green);
  font-size: 1.2rem;
  margin-bottom: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.33;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--nature-dark);
}
.text-section ul li { margin-bottom: 10px; }

/* =================== CONTAINER & SECTIONS =================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--organic-cream);
  border-radius: 30px;
  box-shadow: 0 3px 16px rgba(60, 99, 56, 0.05);
  position: relative;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* =================== NAVIGATION =================== */
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
}
nav ul {
  display: flex;
  gap: 14px;
  list-style-type: none;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 16px;
  transition: background 0.18s, color 0.18s;
}
nav ul li a:hover, nav ul li a:focus {
  background: var(--secondary);
  color: #fff;
}
.cta-btn, .mobile-nav a.cta-btn {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: 25px 12px 22px 14px/16px 22px 20px 28px;
  border: none;
  box-shadow: 0 2px 8px rgba(60, 99, 56, 0.07);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.3s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--organic-green);
  color: #fff;
  box-shadow: 0 4px 18px rgba(31,60,32,0.18);
  text-decoration: none;
}

header {
  background: #fff;
  box-shadow: 0 3px 14px rgba(25, 52, 76, 0.06);
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px;
  gap: 18px;
}
nav > a {
  margin-right: 18px;
  display: flex;
  align-items: center;
}

/* =================== MOBILE MENU (BURGER NAVIGATION) =================== */
.mobile-menu-toggle {
  background: var(--organic-green);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1201;
  box-shadow: 0 2px 8px rgba(60, 99, 56, 0.12);
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--accent);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,45,34,0.98);
  z-index: 1300;
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
  transition: transform 0.4s cubic-bezier(.45,1.1,.4,1), opacity 0.3s;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-menu.open {
  display: flex;
  animation: mobilemenu-slidein 0.40s cubic-bezier(.45,1.1,.4,1) both;
}
@keyframes mobilemenu-slidein {
  from { opacity: 0; transform: translateX(100%); }
  to   { opacity: 1; transform: translateX(0); }
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2rem;
  position: absolute;
  top: 22px;
  right: 26px;
  z-index: 1302;
  cursor: pointer;
  padding: 10px;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
  padding: 110px 34px 30px 34px;
  background: none;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 14px 0 14px 0;
  transition: color 0.18s;
  border-radius: 0 30px 30px 0 / 0 13px 30px 0;
  min-width: 180px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
}
.mobile-nav a.cta-btn {
  margin-top: 16px;
  color: var(--primary);
  background: var(--accent);
}

@media (max-width: 995px) {
  nav ul {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Hide burger menu on desktop, show on mobile only */
@media (min-width: 996px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
  nav ul {
    display: flex !important;
  }
  .cta-btn {
    display: inline-block !important;
  }
}

/* Ensure mobile-nav links are easily clickable */
@media (max-width:600px) {
  .mobile-nav a {
    font-size: 1.1rem;
    min-width: 0;
    padding-left: 6px;
  }
  .mobile-nav { padding-left: 18px; }
  .mobile-menu-close{ right: 12px; top: 15px; }
}


/* =================== SECTION/CONTENT PATTERNS =================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 22px 30px 18px 28px / 30px 18px 32px 22px;
  box-shadow: 0 2px 16px rgba(169, 150, 120, 0.08);
  padding: 30px 26px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 320px;
  transition: box-shadow 0.22s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px rgba(60, 99, 56, 0.14);
  transform: translateY(-2px) scale(1.012);
}
.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;
  min-width: 275px;
  background: #FFFDF7;
  border-radius: 32px;
  box-shadow: 0 2px 16px rgba(179,181,151,0.09);
  font-size: 1.08rem;
  color: #263B29;
  margin-bottom: 20px;
  flex: 1 1 340px;
  transition: box-shadow 0.22s, transform 0.12s;
}
.testimonial-card strong {
  color: var(--organic-green);
  font-size: 1rem;
  font-weight: 600;
  margin-left: 10px;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 7px 24px rgba(140,160,55,.09);
  transform: translateY(-1px) scale(1.009);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  padding: 22px 18px;
  margin-bottom: 18px;
  min-width: 225px;
  box-shadow: 0 1px 8px rgba(169, 150, 120, 0.08);
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}

/* CUSTOM PAGE GRIDS for content (Only using Flexbox) */
.feature-grid, .team-grid, .services-grid, .property-grid, .testimonial-grid, .project-list, .investment-steps, .step-list, .faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
  align-items: stretch;
}
.feature-grid > div, .team-grid > div, .services-grid > div, .property-grid > div, .step-list > div, .project-list > div, .investment-steps > div, .faq-accordion > div {
  flex: 1 1 260px;
  min-width: 260px;
  background: #FFFFFA;
  border-radius: 20px;
  padding: 25px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(157, 183, 138, 0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.services-grid > div {
  background: #F8F5EB;
}

.testimonial-grid {
  gap: 24px;
}

.trust-badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.trust-badges span {
  background: #eff8ee;
  color: var(--organic-green);
  border-radius: 17px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-family: 'Montserrat', Arial,sans-serif;
  font-weight: 600;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(60,99,56,0.036);
}

.investment-steps > div, .step-list > div {
  align-items: center;
  text-align: center;
  background: #EEFAF1;
  box-shadow: 0 2px 16px rgba(89,174,181,0.11);
  border: 2px solid #d2e9cb;
}
.investment-steps > div img, .step-list > div img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
}
.property-grid > div {
  background: #FFF;
  border: 1.5px solid #F5F2EB;
  border-radius: 22px;
  box-shadow: 0 2px 14px rgba(89, 174, 181, 0.06);
}
.confirmation-message {
  font-size: 1.08rem;
  color: var(--organic-green);
  margin-bottom: 18px;
}

/* FAQ ACCORDION (Open by default) */
.faq-accordion > div {
  transition: box-shadow 0.18s, background 0.17s;
  border: 1.2px solid #ECE1D1;
}
.faq-accordion > div:hover, .faq-accordion > div:focus-within {
  background: #FAF8F1;
  box-shadow: 0 8px 21px rgba(157,183,138,.091);
}

/* ADDRESS and CONTACT ICONS BLOCKS */
.contact-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  margin-top: 8px;
}
.contact-icons img {
  width: 26px; height:26px;
  margin-right: 6px;
}
.address-block {
  background: #F8F5EB;
  border-radius: 28px;
  box-shadow: 0 2px 14px rgba(169,150,120,0.07);
  padding: 28px;
}
.address-block p {
  display: flex; align-items: center; gap: 7px;
  margin-bottom: 10px; font-size: 1rem;
}

/* =================== FOOTER =================== */
footer {
  background: #19344C;
  padding: 44px 0 20px 0;
  color: #F8F5EB;
  font-size: 1rem;
}
footer p {
  color: white;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav nav a {
  color: #F8F5EB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 500;
  opacity: 0.94;
}
.footer-nav nav a:hover, .footer-nav nav a:focus {
  opacity: 1;
  color: var(--accent);
}
.footer-contact {
  margin-top: 10px;
  color: #d9e7d3;
}
.footer-contact a, .footer-contact a:visited {
  color: var(--accent);
  text-decoration: underline;
}
footer img {
  height: 38px;
  border-radius: 10px;
  background: #fff;
  padding: 2px 7px;
  margin-bottom: 14px;
}

/* =================== COOKIE CONSENT BANNER + MODAL =================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #263B29;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  z-index: 2400;
  box-shadow: 0 -2px 24px rgba(42,72,41,.17);
  font-size: 1rem;
  flex-wrap: wrap;
  gap: 18px;
  animation: cookiebanner-fadein 0.49s both;
}
@keyframes cookiebanner-fadein {
  from { opacity: 0; transform: translateY(44px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner button {
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 10px 21px;
  margin-left: 13px;
  border-radius: 16px 20px 15px 30px/26px 18px 22px 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 1px 9px rgba(33, 45, 34, 0.06);
  transition: background 0.19s, color 0.22s, transform 0.12s;
  outline: none;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2500;
  background: rgba(41,65,36,0.94);
  top:0; left:0; right:0; bottom:0;
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookiemodal-fadein 0.37s both;
}
.cookie-modal-overlay.open { display: flex; }
@keyframes cookiemodal-fadein {
  from { opacity:0; }
  to   { opacity:1; }
}
.cookie-modal {
  background: #fff;
  color: var(--nature-dark);
  padding: 38px 26px;
  border-radius: 28px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 11px 42px rgba(44,99,56,.13);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  animation: cookiemodal-popin 0.32s cubic-bezier(.44,1.35,.31,.88) both;
}
@keyframes cookiemodal-popin {
  from { opacity:0; transform: scale(0.92); }
  to { opacity:1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.32rem;
  color: var(--organic-green);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
}
.cookie-category label {
  font-size: 1.06rem;
  color: var(--primary);
  margin-left: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-modal button, .cookie-modal .close-modal {
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 14px 16px 24px 15px/13px 12px 20px 22px;
  font-weight: 700;
  padding: 8px 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 11px;
  margin-top: 7px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  outline: none;
}
.cookie-modal button:hover, .cookie-modal .close-modal:hover {
  background: var(--organic-green);
  color: #fff;
}
.close-modal {
  position: absolute;
  right: 20px; top: 18px;
  background: none;
  color: var(--organic-green);
  font-size: 1.44rem;
  padding: 2px 7px;
  border-radius: 50%;
}
.close-modal:hover, .close-modal:focus { background: #f5f7f4; }
.cookie-category input[type=checkbox]:not(:checked):not(:disabled){ filter: grayscale(0.75); opacity:0.66; }
.cookie-category input[type=checkbox]:disabled + label { opacity: 0.55; font-style: italic; }

/* =============== FORMS & INPUTS (if present) =============== */
input, textarea, select {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1.5px solid #CEDFD6;
  font-size: 1rem;
  margin-bottom: 16px;
  outline: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FAFAF8;
  transition: border 0.18s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--organic-green);
  box-shadow: 0 1px 4px rgba(157,183,138,.11);
}

/* =================== BUTTONS & INTERACTIONS =================== */
button, .btn {
  background: var(--secondary);
  color: #fff;
  border: none;
  padding: 11px 23px;
  border-radius: 21px 13px 23px 17px/18px 20px 17px 23px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, transform 0.12s;
  outline: none;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-1px);
}

/* =============== ECOSYSTEM/ORGANIC SHAPES & TEXTURES =============== */
.section {
  border-radius: 30px 24px 48px 32px/22px 38px 36px 37px;
  box-shadow: 0 4px 21px rgba(44, 99, 56, 0.13);
  background: linear-gradient(113deg, #f7f7ed 60%, rgba(217,235,214,0.1));
}
.card, .feature-grid > div, .property-grid > div, .testimonial-card, .services-grid > div, .team-grid > div, .faq-accordion > div, .step-list > div, .investment-steps > div {
  border-radius: 20px 32px 27px 19px / 24px 22px 34px 18px;
}

/* Optional: Subtle organic texture overlay effect using pseudo element */
.section:before {
  content:'';
  display:block;
  position: absolute;
  z-index: 0;
  top: 0; bottom: 0; left: 0; right: 0;
  pointer-events: none;
  opacity: 0.09;
  border-radius: inherit;
  background: url('data:image/svg+xml;utf8,<svg width="29" height="31" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse opacity=".11" cx="15" cy="15" rx="12" ry="14" fill="%239fafaa"/></svg>') right bottom/180px 160px repeat;
}
.section > * { position: relative; z-index: 2; }

/* =================== RESPONSIVE DESIGN =================== */
@media (max-width: 1100px) {
  .feature-grid > div, .team-grid > div, .services-grid > div, .property-grid > div, .step-list > div, .project-list > div, .testimonial-card, .investment-steps > div, .faq-accordion > div {
    min-width: 190px;
    flex: 1 1 40%;
    padding: 18px 12px;
  }
}
@media (max-width: 850px) {
  .container { padding-left: 9px; padding-right: 9px; }
  .footer-nav { flex-direction: column; gap: 22px; }
  .section {
    padding: 30px 7px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid, .team-grid, .services-grid, .property-grid, .testimonial-grid, .step-list, .project-list, .faq-accordion, .investment-steps {
    flex-direction: column !important;
    gap: 17px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-wrapper {
    gap: 12px;
    padding-left: 0; padding-right: 0;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.23rem;
  }
  h3 {
    font-size: 1.01rem;
  }
  .cta-btn, .cookie-banner button, .cookie-modal button {
    font-size: 0.99rem;
    padding: 10px 14px;
  }
  .footer-nav nav a {
    font-size: 1rem;
  }
  .section {
    padding: 20px 3px;
  }
  .cookie-banner { flex-direction: column; padding: 17px 2vw; }
  .address-block { padding: 14px 6px; }
}
@media (max-width: 550px) {
  h1 { font-size: 1.22rem; }
  .footer-nav nav a { font-size: 0.97rem; }
  .footer-contact { font-size: 0.97rem; }
  .card, .feature-grid > div, .property-grid > div, .testimonial-card, .services-grid > div, .faq-accordion > div, .step-list > div, .investment-steps > div {
    min-width: 0;
    padding-left: 8px; padding-right: 8px;
  }
  .cookie-modal {
    padding: 22px 7px; max-width: 98vw;
  }
  .footer-nav nav { gap: 4px; }
}

/* =================== ANIMATIONS =================== */
.card, .feature-grid > div, .property-grid > div, .testimonial-card, .services-grid > div, .team-grid > div, .faq-accordion > div, .step-list > div, .investment-steps > div, .cookie-modal, .cookie-banner {
  transition: box-shadow 0.19s, transform 0.13s, background 0.15s;
}

/* =================== ACCESSIBILITY =================== */
:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
nav a, .mobile-nav a, .footer-nav nav a {
  outline: none;
}

/* =================== SPACING & GAPS =================== */
.card, .feature-grid > div, .property-grid > div, .testimonial-card, .services-grid > div, .team-grid > div, .faq-accordion > div, .step-list > div, .investment-steps > div {
  margin-bottom: 20px;
}
.section { margin-bottom: 60px; }

/* = Only organic, nature-themed color schemes and accents = */
body, html {
  background: var(--organic-cream);
}

/* ================ END OF NATURE ORGANIC THEME CSS ================ */
