/* ===================================
   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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFF7F2;
  color: #222;
  min-height: 100vh;
}
img, video {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
a {
  color: #1a2536;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #6CB13F;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: #1A2536;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1a2536;
  letter-spacing: .02em;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.18;
}
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 {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #372C25;
}
body, button, input, select, textarea {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  font-family: 'Roboto', Arial, sans-serif;
}
::selection {
  background: #ffe8ca;
}
/* =============================
   COLOR SCHEME (warm, friendly)
   ============================= */
:root {
  --primary: #1a2536;
  --secondary: #6cb13f;
  --accent: #f5f7fa;
  --warm-bg: #FFF7F2;
  --warm-card: #FFF5EA;
  --warm-light: #FFFAF5;
  --warm-accent: #FDE3AC;
  --warm-deep: #E27730;
  --shadow-color: rgba(224,119,48,0.06);
  --danger: #bf360c;
}
/* =============================
   GENERAL UTILITIES & LAYOUT
   ============================= */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--warm-card);
  border-radius: 18px;
  box-shadow: 0 1px 8px var(--shadow-color);
  padding: 32px 28px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .24s, transform .24s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(224,119,48,0.14);
  transform: translateY(-3px) scale(1.01);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.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;
  padding: 20px;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(224,119,48,0.09);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 350px;
  color: #222;
  font-size: 1.06rem;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(224,119,48,0.16);
  transform: scale(1.03);
}
.testimonial-card strong {
  color: var(--primary);
  font-weight: 700;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--warm-light);
  border-radius: 15px;
  box-shadow: 0 1px 7px 0 rgba(224,119,48,0.08);
  padding: 20px;
  margin-right: 0;
  margin-bottom: 20px;
}
.accent-bg {
  background: var(--warm-accent);
}
/* =============================
   HEADER & NAVIGATION
   ============================= */
header {
  background: #fff;
  box-shadow: 0 2px 20px var(--shadow-color);
  border-bottom: 1px solid #f2e6dc;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  min-height: 68px;
}
.logo img {
  height: 42px;
  width: auto;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: 28px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  font-size: 1.01rem;
  padding: 9px 18px;
  border-radius: 9px;
  transition: background .2s, color .16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--warm-accent);
  color: var(--secondary);
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 25px;
  border: none;
  box-shadow: 0 3px 22px rgba(108,177,63,0.10);
  margin-left: auto;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background .18s, color .2s, transform .22s, box-shadow .24s;
}
.btn-primary:focus, .btn-primary:hover {
  background: #5a8e2b;
  color: #FFF;
  box-shadow: 0 5px 36px rgba(108,177,63,0.21);
  transform: translateY(-2px) scale(1.03);
}
.mobile-menu-toggle {
  background: none;
  color: var(--secondary);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  padding: 8px 16px;
  margin-left: 18px;
  cursor: pointer;
  display: none;
  transition: background .18s, color .18s, box-shadow .19s;
  line-height: 1;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--warm-accent);
  color: var(--primary);
  box-shadow: 0 1px 10px 2px var(--shadow-color);
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 4px 40px 0 rgba(224,119,48,0.19);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px 0 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: var(--primary);
  border: none;
  margin-bottom: 12px;
  padding: 6px 10px;
  align-self: flex-end;
  cursor: pointer;
  border-radius: 50%;
  transition: background .18s, color .18s, box-shadow .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--warm-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: var(--primary);
  font-weight: 500;
  background: var(--warm-accent);
  border-radius: 12px;
  padding: 14px 18px;
  margin-right: 0;
  transition: background .18s, color .16s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--secondary);
  background: #ffe3acbf;
}
/* Show hamburger on mobile, hide normal nav */
@media (max-width: 1023px) {
  .main-nav { display: none; }
  .btn-primary { margin-left: 0; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}
/* =============================
   HERO SECTION
   ============================= */
.hero {
  background: linear-gradient(95deg,var(--warm-accent) 80%,var(--warm-bg) 100%);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 4px 36px 0 var(--shadow-color);
  padding-bottom: 32px;
  margin-bottom: 38px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  max-width: 640px;
}
.hero h1 {
  color: var(--primary);
}
/* =============================
   FEATURES & GRIDS
   ============================= */
.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 4px;
}
.feature-grid li, .feature-list li, .feature-grid > div {
  background: var(--warm-card);
  border-radius: 15px;
  box-shadow: 0 1px 8px rgba(224,119,48,0.06);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 210px;
  max-width: 330px;
  transition: box-shadow .17s, transform .19s;
  margin-bottom: 12px;
}
.feature-grid li:hover, .feature-list li:hover, .feature-grid > div:hover {
  box-shadow: 0 7px 25px 0 rgba(224,119,48,0.11);
  transform: scale(1.02);
}
.feature-grid img, .feature-list img {
  height: 35px;
  margin-bottom: 7px;
}
.feature-list span, .feature-grid span {
  font-size: 1.02rem;
  color: #502f1c;
}
.service-list {
  margin-bottom: 18px;
}
.service-list li {
  padding: 17px 0;
  border-bottom: 1px solid #f2e6dc;
  font-size: 1.05rem;
  color: #402F17;
}
.service-list li:last-child{
  border-bottom: none;
}
/* =============================
   PRICING
   ============================= */
.pricing {
  background: var(--warm-accent);
  border-radius: 12px;
  padding: 18px 25px;
  font-size: 1.13rem;
  color: #1a2536;
  font-weight: 500;
  margin: 10px 0 23px 0;
  box-shadow: 0 2px 16px 0 rgba(224,119,48,0.08);
}
.pricing strong {
  color: var(--secondary);
  font-weight: 700;
}
/* =============================
   CTA BANNER
   ============================= */
.cta-banner {
  background: var(--warm-deep);
  color: #fff;
  border-radius: 23px;
  padding: 42px 22px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.cta-banner h2, .cta-banner p {
  color: #fff !important;
}
.cta-banner .btn-primary {
  margin-top: 12px;
  background: #fff;
  color: var(--warm-deep);
  box-shadow: 0 3px 15px rgba(224,119,48,0.09);
  border: 1.5px solid #fff4e5;
}
.cta-banner .btn-primary:hover, .cta-banner .btn-primary:focus {
  background: var(--warm-accent);
  color: var(--primary);
  border-color: var(--warm-accent);
}
/* Accent variant */
.cta-banner.accent-bg {
  background: var(--warm-accent);
  color: var(--primary);
}
.cta-banner.accent-bg h2, .cta-banner.accent-bg p {
  color: var(--primary) !important;
}
.cta-banner.accent-bg .btn-primary {
  background: var(--secondary);
  color: #fff;
  border: none;
}
/* =============================
   FAQ ACCORDION (Simple)
   ============================= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-accordion h3 {
  font-size: 1.09rem;
  margin-bottom: 0;
  cursor: pointer;
  background: var(--warm-light);
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 500;
  transition: background .17s;
}
.faq-accordion h3:hover {
  background: var(--warm-card);
}
.faq-accordion div {
  display: block;
  background: #fff;
  border-left: 4px solid var(--secondary);
  border-radius: 8px;
  margin: 2px 0 10px 0;
  padding: 10px 18px;
  color: #392f2b;
}
/* =============================
   MAP AND CONTACT INFO
   ============================= */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  color: #222;
  margin-bottom: 16px;
}
.map {
  background: var(--warm-accent);
  border-radius: 12px;
  padding: 20px;
  margin-top: 14px;
  font-size: 0.98rem;
  color: #555;
}
/* =============================
   FOOTER SECTION
   ============================= */
footer {
  background: #fcf1e7;
  border-top: 1px solid #fff4e5;
  color: var(--primary);
  margin-top: 40px;
  padding: 0 0 0 0;
}
footer .container {
  padding-top: 38px;
  padding-bottom: 22px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  align-items: flex-start;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 170px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-nav a {
  color: #573218;
  opacity: .95;
  border-radius: 7px;
  padding: 6px 9px;
  transition: background .2s, color .14s;
  display: block;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--warm-accent);
  color: var(--secondary);
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 7px;
  margin-top: 9px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px; height: 37px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.5px 5.5px 0 rgba(224,119,48,0.11);
  transition: background .17s, transform .18s;
}
.social-links a:hover, .social-links a:focus {
  background: var(--warm-accent);
  transform: scale(1.08);
}
.social-links img {
  height: 22px; width: 22px;
}
/* =============================
   COOKIE CONSENT BANNER
   ============================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: #fff7ea;
  box-shadow: 0 -2px 18px 0 rgba(224,119,48,0.13);
  padding: 24px 30px 18px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.03rem;
  color: #503218;
  animation: cookieBannerFadeIn .5s cubic-bezier(.54,.16,.19,1.12);
}
@keyframes cookieBannerFadeIn { from { opacity: 0; transform: translateY(90px);} to { opacity: 1; transform: translateY(0);} }
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  margin-top: 5px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 22px;
  margin: 0;
  border-radius: 19px;
  border: 0;
  font-weight: 500;
  cursor: pointer;
  background: var(--secondary);
  color: #fff;
  transition: background .19s, color .18s, box-shadow .18s;
}
.cookie-banner .btn-secondary {
  background: var(--primary);
}
.cookie-banner .btn-plain {
  background: var(--warm-accent);
  color: var(--primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #609929;
  color: #fff;
  box-shadow: 0 3px 17px rgba(108,177,63,0.15);
}
.cookie-banner .btn-plain:hover, .cookie-banner .btn-plain:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-banner a {
  color: var(--secondary);
  text-decoration: underline;
  transition: color .17s;
}
/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2100;
  background: rgba(90,33,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn .35s cubic-bezier(.59,.14,.27,1.2);
}
@keyframes cookieModalFadeIn { from { opacity: 0;} to { opacity: 1;} }
.cookie-modal .modal-content {
  background: #fff;
  padding: 32px 22px;
  border-radius: 20px;
  max-width: 394px;
  box-shadow: 0 8px 48px 0 rgba(224,119,48,0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.cookie-modal h2 {
  font-size: 1.2rem;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 19px; right: 22px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary);
  cursor: pointer;
  border-radius: 50%;
  transition: background .15s;
}
.cookie-modal .close-modal:hover, 
.cookie-modal .close-modal:focus {
  background: var(--warm-accent);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-size: 1.05rem;
  color: #2B1A12;
}
.cookie-switch {
  display: inline-block;
}
.cookie-switch input[type='checkbox'] {
  display: none;
}
.cookie-switch label {
  position: relative;
  display: inline-block;
  width: 38px; height: 22px;
  background: var(--warm-accent);
  border-radius: 24px;
  transition: background .13s;
  cursor: pointer;
}
.cookie-switch label::after {
  content: '';
  position: absolute;
  left: 2.5px; top: 2.5px;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(200,160,120,0.12);
  transition: left .20s cubic-bezier(.45,1.3,.55,1), background .21s;
}
.cookie-switch input[type='checkbox']:checked + label {
  background: var(--secondary);
}
.cookie-switch input[type='checkbox']:checked + label::after {
  left: 18.5px;
  background: #fff;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.cookie-modal .modal-btns button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 18px;
  border: 0;
  box-shadow: 0 3px 18px rgba(108,177,63,0.09);
  font-weight: 600;
  cursor: pointer;
  background: var(--secondary);
  color: #fff;
  transition: background .18s, transform .15s;
}
.cookie-modal .modal-btns button:hover, .cookie-modal .modal-btns button:focus {
  background: #609929;
  transform: scale(1.025);
}
/* =============================
   TEXT SECTIONS
   ============================= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.text-section a {
  color: var(--secondary);
  font-weight: 500;
}
.text-section a:hover {
  text-decoration: underline;
}
/* =============================
   MISC & UTILITIES
   ============================= */
hr {
  border: none;
  border-bottom: 1px solid #f2e6dc;
  margin: 32px 0;
}

/* Margin & Gap correction for all main column stacks */
main > section, main > .section {
  margin-bottom: 60px;
}
.section:last-child, main > section:last-child {
  margin-bottom: 0;
}

/* =============================
   RESPONSIVE DESIGN
   ============================= */
@media (max-width: 1280px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .feature-grid, .feature-list, .testimonial-slider, .content-grid { flex-direction: column; gap: 16px; }
  .feature-grid li, .feature-list li, .feature-grid > div, .testimonial-card, .card { min-width: 0; max-width: 100%; }
  footer .content-wrapper { flex-direction: column; gap: 18px; align-items: flex-start; }
}
@media (max-width: 768px) {
  html, body { font-size: 15px; }
  .container {padding: 0 8px;}
  .hero { border-radius: 0 0 18px 18px; }
  .hero .content-wrapper { padding-left: 0; padding-right: 0; }
  .main-nav { display: none; }
  .btn-primary { font-size: 1rem; padding: 10px 16px; }
  .footer-nav { min-width: 0; }
  .cta-banner, .cta-banner.accent-bg {
    border-radius: 13px;
    padding: 28px 10px;</n    margin-bottom: 33px;
  }
  .cookie-banner { padding: 16px 12px 10px 12px; font-size: 0.98rem; }
  .cookie-modal .modal-content { padding: 18px 9px 19px 9px; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1rem; }
  .feature-grid, .feature-list, .testimonial-slider, .content-grid, .content-wrapper { gap: 11px; }
  .card, .testimonial-card, .feature-grid li, .feature-grid > div {
    padding: 16px 10px;
  }
}
@media (max-width: 480px) {
  .content-wrapper, .footer .content-wrapper, .container {
    padding-left: 2px;
    padding-right: 2px;
  }
}
/* =============================
   FLEX DIRECTION SWITCH RULES
   ============================= */
/* For .text-image-section and similar flex layouts: flex-col on mobile */
@media (max-width: 900px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
}
/* =============================
   MICROINTERACTIONS (HOVER, FOCUS)
   ============================= */
button, .btn-primary, .main-nav a, .footer-nav a, .mobile-nav a {
  outline: none;
}
button:focus-visible, .btn-primary:focus-visible, .main-nav a:focus-visible, .footer-nav a:focus-visible, .mobile-nav a:focus-visible {
  box-shadow: 0 0 1px 3px #FDE3AC, 0 1px 8px 0 var(--shadow-color);
}
.card:active, .testimonial-card:active, .feature-grid li:active, .feature-list li:active {
  transform: scale(.99);
}

/* =============================
   PRINT OPTIMIZATION
   ============================= */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cta-banner, .accent-bg { display: none !important; }
  main { color: #000 !important; }
}
