/* 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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #254136;
  background-color: #FFFCEB;
  min-height: 100vh;
  line-height: 1.6;
}
a {
  color: #254136;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E9A915;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  background: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #254136;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, li, blockquote {
  font-size: 1rem;
}
blockquote {
  font-style: italic;
  color: #254136;
  background: #f0ecd5;
  border-left: 4px solid #E9A915;
  padding: 12px 24px;
  border-radius: 10px 24px 18px 12px;
  margin-bottom: 8px;
}

/* GENERAL CONTAINERS */
.container {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  margin-left: auto;
  margin-right: auto;
}

/* SECTIONS & LAYOUT */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #f7f4e8;
  border-radius: 32px 8px 24px 16px;
  box-shadow: 0 4px 24px rgba(60,40,0,0.07);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 40px;
    border-radius: 18px;
  }
}

/* FLEX UTILITIES & CONTENT GRIDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffefa;
  box-shadow: 0 2px 10px rgba(37,65,54,0.10);
  border-radius: 20px 12px 16px 28px;
  padding: 24px 20px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 30px rgba(37,65,54,0.15);
  transform: translateY(-2px) scale(1.015);
}
.content-grid, .feature-grid, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-grid, .feature-grid, .blog-list {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 24px 12px 28px 16px;
  box-shadow: 0 2px 14px rgba(37,65,54,0.08);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(37,65,54,0.10);
  transform: translateY(-1px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION */
header {
  background: #254136;
  box-shadow: 0 2px 16px rgba(37,65,54,0.08);
  padding: 0 0 0 0;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px 0;
}
nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: 24px;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 24px;
  transition: background 0.2s, color 0.2s;
}
nav ul li a.active, nav ul li a:hover, nav ul li a:focus {
  background: #E9A915;
  color: #254136;
}
nav > a img {
  display: block;
  height: 52px;
  border-radius: 14px;
  background: #fffbe6;
  padding: 4px 6px;
}
@media (max-width: 1000px) {
  nav ul {
    gap: 14px;
  }
}

/* HEADER BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 99px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.15s, color 0.2s, transform 0.18s;
  letter-spacing: 0.02em;
  margin: 8px 0;
}
.btn-primary {
  background: #E9A915;
  color: #254136;
  box-shadow: 0 1px 10px rgba(233,169,21,0.08);
}
.btn-primary:hover, .btn-primary:focus {
  background: #254136;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,65,54,0.11);
  transform: translateY(-2px) scale(1.02);
}
.btn-secondary {
  background: #254136;
  color: #fff;
  border: 2px solid #E9A915;
  box-shadow: 0 1px 10px rgba(37,65,54,0.07);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E9A915;
  color: #254136;
  border-color: #E9A915;
  box-shadow: 0 4px 24px rgba(233,169,21,0.08);
  transform: translateY(-2px) scale(1.02);
}

/* MOBILE MENU (responsiveness starts mobile-first) */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 2100;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  color: #E9A915;
  background: #254136;
  border-radius: 50%;
  border: 2px solid #E9A915;
  box-shadow: 0 2px 12px rgba(37,65,54,0.11);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.14s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:hover {
  background: #E9A915;
  color: #254136;
}
/* Hide on desktop, show on mobile */
@media (min-width: 1000px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 380px;
  height: 100vh;
  background: #f7f4e8;
  box-shadow: -6px 0 50px rgba(37,65,54,0.17);
  z-index: 2200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.39s cubic-bezier(.7,0,.29,1.01);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-bottom: 24px;
  font-size: 2.2rem;
  background: none;
  color: #254136;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: none;
  transition: background 0.2s;
}
.mobile-menu-close:hover {
  background: #E9A915;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #254136;
  font-size: 1.15rem;
  padding: 14px 0 14px 12px;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #E9A915;
  color: #fff;
}
@media (min-width: 1000px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Hide regular nav on mobile */
@media (max-width: 999px) {
  nav ul, nav .btn-primary {
    display: none !important;
  }
}

/* MAIN CONTENT STYLES */
main {
  min-height: 60vh;
  padding-top: 30px;
  padding-bottom: 30px;
}
.text-section {
  margin-bottom: 24px;
}
.text-section ul {
  margin-top: 12px;
  margin-bottom: 16px;
  padding-left: 20px;
}
.text-section ul li {
  font-size: 1rem;
  color: #365d49;
  position: relative;
  margin-bottom: 10px;
  padding-left: 1.2em;
}
.text-section ul li:before {
  content: '';
  display: inline-block;
  width: 0.58em;
  height: 0.58em;
  background: #E9A915;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0.68em;
  transform: translateY(-50%);
}
.text-section img {
  vertical-align: middle;
  margin-right: 8px;
}

/* Feature and Blog Cards */
.feature-grid > div, .blog-list > div {
  background: #fffefa;
  border-radius: 20px 12px 16px 18px;
  box-shadow: 0 2px 10px rgba(37,65,54,0.05);
  padding: 20px 18px;
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 320px;
  transition: box-shadow 0.21s, transform 0.15s;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-grid > div img {
  height: 36px;
  width: 36px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: #e0ecd4;
  padding: 4px;
}
.feature-grid > div:hover, .blog-list > div:hover {
  box-shadow: 0 8px 24px rgba(37,65,54,0.09);
  transform: translateY(-3px);