/* 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, main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background-color: #FBF6EC;
  color: #25334B;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nunito:400,700&display=swap');

body {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 16px;
  background-color: #FBF6EC;
  color: #25334B;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #25334B;
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.5rem; margin-bottom: 14px; }
h4 { font-size: 1.2rem; margin-bottom: 10px; }

p, ul, ol, li {
  color: #25334B;
  font-size: 1rem;
  font-family: 'Nunito', Arial, sans-serif;
}

strong { font-weight: 700; }
em, i { font-style: italic; }

/* ORGANIC LAYOUTS */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff7e8;
  border-radius: 44px 18px 44px 18px/18px 44px 18px 44px;
  box-shadow: 0 6px 24px 0 rgba(94, 81, 62, 0.07);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  align-items: flex-start;
  max-width: 790px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  background: #fff;
  border-radius: 24px 14px 24px 14px/14px 24px 14px 24px;
  box-shadow: 0 4px 16px 0 rgba(106, 87, 55, 0.09);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FBF6EC;
  color: #25334B;
  border-left: 5px solid #457749;
  border-radius: 20px 12px 20px 12px/12px 20px 12px 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(68,82,51,0.06);
  transition: box-shadow 0.22s cubic-bezier(.3,.7,.4,1);
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px 0 rgba(68, 82, 51, 0.13);
}
.testimonial-card p {
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-size: .95rem;
  color: #457749;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BUTTONS */
.cta-primary,
.cta-secondary,
button,
input[type="submit"] {
  font-family: 'Nunito', Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px 10px 28px 10px/10px 28px 10px 28px;
  text-decoration: none;
  box-shadow: none;
  border: none;
  cursor: pointer;
  padding: 14px 32px;
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: background 0.16s, color 0.16s, transform 0.16s;
  outline: none;
}
.cta-primary {
  background: #457749;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(69, 119, 73, 0.10);
}
.cta-primary:hover, .cta-primary:focus {
  background: #25334B;
  color: #DACEB2;
  transform: translateY(-2px) scale(1.03);
}
.cta-secondary {
  background: #fff;
  color: #457749;
  border: 1.5px solid #457749;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #F0E5CE;
  color: #25334B;
  transform: translateY(-1px) scale(1.03);
}

/* HEADER */
header {
  background: #fff7e8;
  box-shadow: 0 2px 14px 0 rgba(94, 81, 62, 0.10);
  border-bottom: 1.5px solid #E3E2DC;
}
header .container {
  min-height: 84px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  padding: 0 20px;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  color: #25334B;
  text-decoration: none;
  font-size: 1.07rem;
  font-weight: 500;
  letter-spacing: .01em;
  transition: color 0.13s;
  position: relative;
  padding: 7px 0;
}
.main-nav a:hover, .main-nav a.active {
  color: #457749;
}
.main-nav a.active::after,
.main-nav a:hover::after {
  content: '';
  display: block;
  width: 18px;
  height: 2.5px;
  margin: 5px auto 0 auto;
  border-radius: 2px;
  background: #457749;
  transition: width .15s;
}

/* Hide mobile nav on desktop */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #457749;
  border: 1.5px solid #457749;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.12s, color 0.15s;
  z-index: 1100;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #457749;
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #25334B;
  color: #fff;
  transform: translateX(-105%);
  transition: transform .37s cubic-bezier(.7,.2,.3,1);
  padding: 36px 24px 0 24px;
  z-index: 1210;
  min-width: 240px;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: #DACEB2;
  color: #25334B;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2000;
  box-shadow: 0 2px 10px 0 rgba(37,51,75,0.18);
}
.mobile-menu-close:hover {
  background: #25334B;
  color: #DACEB2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 70px;
  align-items: flex-start;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.22rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(220,220,211,0.12);
  width: 100%;
  transition: color .13s, background .10s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: #DACEB2;
  background: rgba(86,176,106,0.05);
}

/* FOOTER */
footer {
  background: #25334B;
  color: #fff;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 20px 24px 20px;
}
.footer-logo img {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #DACEB2;
  text-decoration: none;
  font-size: .98rem;
  transition: color 0.13s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-contact p {
  font-size: .96rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.footer-bottom {
  background: #c5cdda;
  text-align: center;
  color: #DACEB2;
  font-size: .92rem;
  padding: 14px 0;
}

/* LISTS */
ul, ol {
  padding-left: 24px;
  margin-bottom: 14px;
}
ul li, ol li {
  margin-bottom: 8px;
}
ul li::marker {
  color: #457749;
}

/* ORGANIC DECORATIVE EFFECTS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 44px 18px 44px 18px/18px 44px 18px 44px;
  background-color: #FFF7E8;
}
main section:last-of-type {
  margin-bottom: 0;
}

/* SPACING & FLEX PATTERNS */
.card-container, .content-grid, .mobile-nav, .footer-nav, .footer-contact {
  gap: 20px;
}
.text-image-section, .content-grid {
  gap: 30px;
}

/* IMAGES */
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

/* FORMS (for contact or future expansion) */
input, textarea, select {
  font-family: inherit;
  border-radius: 16px 6px 16px 6px/6px 16px 6px 16px;
  border: 1.2px solid #DACEB2;
  padding: 10px 16px;
  margin-bottom: 12px;
  background: #fafbf7;
  color: #25334B;
  font-size: 1rem;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #457749;
  outline: none;
}
label {
  color: #457749;
  font-size: .99rem;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

/* TABLES (for policies, etc.) */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
th, td {
  border: 1px solid #EDE6CF;
  padding: 10px 16px;
  font-size: 1rem;
}
th {
  background: #DACEB2;
  color: #25334B;
}

/* ACCENT COLOR DECORATIONS */
::-webkit-selection {
  background: #DACEB2;
  color: #25334B;
}
::selection {
  background: #DACEB2;
  color: #25334B;
}

/* MICRO-INTERACTIONS*/
a, button, .cta-primary, .cta-secondary {
  transition: color 0.13s, background 0.13s, border 0.13s, transform 0.18s;
}
@media (hover: hover) {
  a:hover {
    text-decoration: underline;
    color: #457749;
  }
}

/* ACCENT, EARTHY, AND GREEN TONES */
:root {
  --primary: #25334B;
  --secondary: #DACEB2;
  --accent: #FBF6EC;
  --earth: #BCA981;
  --green-dark: #457749;
  --green-soft: #B0CCB6;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff7e8;
  color: #25334B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 -2px 16px 0 rgba(37,51,75,0.10);
  padding: 20px 32px 20px 20px;
  z-index: 9999;
  border-top: 2.5px solid #DACEB2;
  gap: 20px;
  font-size: 1rem;
  min-height: 82px;
  animation: slideUp .5s cubic-bezier(.46,.03,.52,.96) both;
}
@keyframes slideUp {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  margin-left: 12px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 16px 6px 16px 6px/6px 16px 6px 16px;
  border: none;
  background: #457749;
  color: #fff;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: #457749;
  border: 1.5px solid #457749;
}
.cookie-banner button.cookie-reject {
  background: #fff;
  color: #aa3a2c;
  border: 1.5px solid #aa3a2c;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #25334B;
  color: #DACEB2;
}
.cookie-banner button.cookie-settings:hover {
  background: #FBF6EC;
  color: #25334B;
  border-color: #25334B;
}
.cookie-banner button.cookie-reject:hover {
  background: #FFD6D2;
  color: #aa3a2c;
  border-color: #aa3a2c;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(37,51,75,0.12);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinModal 0.35s both;
}
@keyframes fadeinModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #FFF7E8;
  border-radius: 32px 18px 32px 18px/18px 32px 18px 32px;
  box-shadow: 0 6px 24px 0 rgba(94, 81, 62, 0.18);
  padding: 32px 32px 32px 32px;
  max-width: 420px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.32rem;
  margin-bottom: 12px;
  color: #25334B;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.01rem;
  font-weight: 500;
  color: #457749;
  margin: 10px 0;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #457749;
  width: 20px;
  height: 20px;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: none;
  color: #25334B;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover {
  color: #457749;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1080px) {
  .container { max-width: 960px; }
  .footer-logo img { height: 48px; }
}

@media (max-width: 900px) {
  .container { max-width: 720px; }
  header .container { flex-direction: column; align-items: flex-start; gap: 10px; min-height: unset; }
  .main-nav { gap: 16px; }
  .footer-logo img { height: 40px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  .section, section { padding: 28px 8px; }
  .container { padding: 0 8px; }
  header .container { flex-direction: row; min-height: 70px; padding: 0 8px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .cta-primary { padding: 10px 20px; font-size: 1rem; }
  .footer-nav, .footer-contact, .footer-logo { flex: 1 1 100%; }
  footer .container { flex-direction: column; gap: 14px; align-items: flex-start; padding: 22px 10px 12px 10px; }
  .section, section { border-radius: 30px 14px 30px 14px/14px 30px 14px 30px; }
}

@media (max-width: 600px) {
  h1 { font-size: 1.41rem; }
  h2 { font-size: 1.18rem; }
  .testimonial-card { font-size: .96rem; }
  .cookie-banner { padding: 18px 8px; font-size: .97rem; flex-direction: column; }
  .cookie-modal-content { padding: 16px; }
}
@media (max-width: 480px) {
  .section, section { padding: 17px 2px; }
  .footer-bottom { font-size: .82rem; }
}

/* FLEXBOX MOBILE COLUMN DIRECTION */
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

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

/* ORGANIC SHAPE DECORATORS (can be used as .organic-shape classes for future) */
.organic-shape {
  border-radius: 42px 19px 42px 18px/19px 38px 24px 43px;
}

/* ACCESSIBILITY: FOCUS STYLES */
a:focus, button:focus, input:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2.5px solid #457749;
  outline-offset: 2px;
}

/* Z-INDEX HANDLING */
.mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 2000 !important;
}