/* === 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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  line-height: 1.5;
  background: #F5F3EE;
  color: #2B5F3A;
}
a {
  color: #2B5F3A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A67E51;
  text-decoration: underline;
}

/* === BRAND FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F5F3EE;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #2B5F3A;
  letter-spacing: -1.5px;
  line-height: 1.11;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #A67E51;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2B5F3A;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #A67E51;
}
p, ul, ol, li, table {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #2B5F3A;
}
ul, ol {
  margin-left: 30px;
  margin-bottom: 18px;
  margin-top: 2px;
  padding-left: 0;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* === CONTAINER PATTERNS === */
.container {
  width: 100%;
  max-width: 1170px;
  padding: 0 16px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* === SECTIONS & SPACING === */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

.section {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 24px rgba(43,95,58, 0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

/* === HERO SECTION === */
.hero {
  background-color: #A67E51;
  color: #fff;
  border-radius: 0 0 32px 32px;
  position: relative;
  margin-bottom: 44px;
  padding: 60px 0 50px 0;
  box-shadow: 0 6px 32px rgba(166,126,81, 0.10);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero h1, .hero p {
  color: #fff;
  text-shadow: 0 3px 18px rgba(43,95,58, 0.09);
}
.hero h1 {
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 28px;
}

/* === NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(43,95,58, 0.045);
  position: relative;
  z-index: 99;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  justify-content: flex-start;
  position: relative;
}
.main-nav img {
  width: 44px;
  height: auto;
  margin-right: 18px;
  vertical-align: middle;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #2B5F3A;
  padding: 4px 10px;
  border-radius: 10px;
  transition: background 0.19s, color 0.18s;
  position: relative;
}
.main-nav a.btn-primary {
  background: #2B5F3A;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  padding: 8px 20px;
  border-radius: 18px;
  margin-left: 10px;
  box-shadow: 0 2px 16px rgba(43,95,58, 0.08);
  letter-spacing: 0.3px;
}
.main-nav a.btn-primary:hover {
  background: #A67E51;
  color: #fff;
}
.main-nav a:hover:not(.btn-primary), .main-nav a:focus:not(.btn-primary) {
  background: #A67E51;
  color: #fff;
}

/* === BURGER & MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #2B5F3A;
  cursor: pointer;
  z-index: 120;
  padding: 8px 12px;
  border-radius: 13px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #A67E51;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0; 
  background: #2B5F3A;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.37,1.29,.74,1);
  z-index: 200;
  padding: 0 0 0 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 24px 32px 0 0;
  align-self: flex-end;
  background: none;
  font-size: 2.2rem;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 212;
  padding: 8px 12px;
  border-radius: 13px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background-color: #A67E51;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 40px;
  margin-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A67E51;
  border-bottom: 2px solid #A67E51;
}

/* === FEATURE BLOCKS, CARDS & SERVICES === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-block, .service-block, .tip-block, .card {
  background: #fff;
  border-radius: 20px 50px 28px 40px;
  box-shadow: 0 4px 24px rgba(43,95,58, 0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 28px 24px;
  min-width: 240px;
  flex: 1 0 265px;
  margin-bottom: 20px;
  border-left: 5px solid #A67E51;
  transition: box-shadow 0.23s, border-color 0.18s, transform 0.17s;
  position: relative;
}
.feature-block img, .service-block img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.feature-block:hover, .service-block:hover, .tip-block:hover {
  box-shadow: 0 8px 32px rgba(43,95,58, 0.12);
  transform: translateY(-5px) scale(1.025) rotate(-1.2deg);
  border-left: 5px solid #2B5F3A;
  z-index: 2;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-block span {
  color: #A67E51;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 6px;
  background: #F5F3EE;
  padding: 3px 12px;
  border-radius: 10px;
  font-size: 1.10rem;
}
.tips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.tip-block {
  background: #fff;
  border-left: 6px solid #2B5F3A;
}

/* === TABLES (PRICES) === */
table {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(43,95,58, 0.07);
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 1rem;
}
thead tr {
  background: #A67E51;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
th, td {
  padding: 18px 14px;
  text-align: left;
  border-bottom: 1px solid #F5F3EE;
}
th {
  font-size: 1.07rem;
}
tbody tr:nth-child(even) {
  background: #F5F3EE;
}
.details-notice {
  font-size: 0.97rem;
  color: #A67E51;
  margin-top: 5px;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: #2B5F3A;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.14rem;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 26px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.19s, transform 0.16s;
  box-shadow: 0 6px 24px rgba(43,95,58,0.10);
}
.btn-primary:hover, .btn-primary:focus {
  background: #A67E51;
  color: #fff;
  box-shadow: 0 8px 32px rgba(166,126,81, 0.12);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}

/* === TESTIMONIALS === */
.testimonial-card {
  background: #F5F3EE;
  border-left: 8px solid #A67E51;
  border-radius: 16px 38px 18px 30px;
  box-shadow: 0 3px 18px rgba(43,95,58, 0.07);
  margin-bottom: 20px;
  padding: 28px 34px 26px 28px;
  gap: 18px;
  color: #2B5F3A;
  font-size: 1.15rem;
  position: relative;
}
.testimonial-card p {
  font-style: italic;
  font-weight: 500;
  font-size: 1.12rem;
  color: #2B5F3A;
  margin-bottom: 10px;
}
.testimonial-card span {
  color: #2B5F3A;
  font-size: 0.98rem;
  font-weight: 400;
}
.rating-stars {
  font-size: 1.16rem;
  color: #A67E51;
  letter-spacing: 2px;
  font-weight: 900;
}

/* === FOOTER === */
footer {
  background: #2B5F3A;
  padding: 30px 0 0 0;
}
footer .container {
  padding-top: 0;
  padding-bottom: 0;
}
footer .content-wrapper {
  flex-direction: row;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 0;
  color: #fff;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  opacity: 0.88;
  padding: 3px 0;
  margin-bottom: 2px;
  transition: color 0.18s, opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #A67E51;
  opacity: 1;
}
.mini-address {
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
  opacity: 0.92;
  line-height: 1.8;
  margin-bottom: 8px;
}
footer .btn-primary {
  font-size: 1rem;
  background: #A67E51;
  font-weight: 900;
  color: #2B5F3A !important;
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px 23px;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(166,126,81,0.07);
}
footer .btn-primary:hover {
  background: #fff;
  color: #A67E51 !important;
}

/* === TEXT SECTIONS & FLEX LAYOUTS === */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}
.content-wrapper.text-section {
  gap: 12px;
}

/* === GENERAL FLEXBOX ALIGNMENTS === */
@media (max-width: 1024px) {
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .service-list, .tips-list, .card-container {
    flex-direction: column;
    gap: 24px;
  }
  .footer .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    padding: 15px 0;
    align-items: flex-start;
  }
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  table thead {
    display: none;
  }
  table tr {
    display: flex;
    flex-direction: column;
    gap: 3px;
    border: none;
    border-bottom: 1px solid #A67E51;
    margin-bottom: 10px;
    background: #fff;
  }
  table td, table th {
    padding: 10px 10px;
    font-size: 1rem;
    border-bottom: none;
    border: none;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1rem; }
  .btn-primary { font-size: 0.98rem; padding: 10px 15px; }
  .section { padding: 24px 7px; }
}

.text-image-section {
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* === MICRO-INTERACTIONS, ANIMATIONS === */
.feature-block, .service-block, .tip-block, .card, .btn-primary, .testimonial-card {
  transition: box-shadow 0.24s, border-color 0.19s, transform 0.18s;
}
.btn-primary {
  transition: background 0.2s, box-shadow 0.22s, color 0.17s;
}
.btn-primary:active {
  transform: scale(0.98);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #2B5F3A;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  z-index: 10000;
  padding: 22px 24px 18px 24px;
  box-shadow: 0 -2px 16px rgba(43,95,58,0.15);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: center;
  animation: cookieAppear 0.4s cubic-bezier(.34,1.8,.68,1) 1;
}
@keyframes cookieAppear {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  flex: 1 1 250px;
  margin-bottom: 0;
  margin-right: 12px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 20px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  margin-right: 0;
  transition: background 0.17s, color 0.17s;
}
.cookie-banner .cookie-accept {
  background: #A67E51;
  color: #fff;
  font-weight: 700;
}
.cookie-banner .cookie-accept:hover { background: #fff; color: #A67E51; }
.cookie-banner .cookie-reject {
  background: #F5F3EE;
  color: #A67E51;
  border: 1px solid #A67E51;
  font-weight: 700;
}
.cookie-banner .cookie-reject:hover {
  background: #A67E51;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: none;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 700;
}
.cookie-banner .cookie-settings:hover {
  background: #fff;
  color: #2B5F3A;
}

/* === COOKIE MODAL === */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(43,95,58, 0.56);
  z-index: 10001;
  animation: cookieBackdrop 0.32s cubic-bezier(.34,1.49,.68,1) 1;
}
@keyframes cookieBackdrop {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 53%;
  transform: translate(-50%, -50%) scale(1);
  background: #fff;
  padding: 36px 28px 32px 28px;
  border-radius: 22px;
  box-shadow: 0 8px 56px rgba(43,95,58, 0.13);
  z-index: 10010;
  min-width: 320px;
  max-width: 96vw;
  min-height: 280px;
  animation: cookieModalIn 0.45s cubic-bezier(.24,1.29,.62,1);
}
@keyframes cookieModalIn {
  from { transform: translate(-50%, 60%) scale(0.97); opacity: 0; }
  to   { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #2B5F3A;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  margin-bottom: 16px;
  display: flex; flex-direction: row; align-items: center; gap: 18px;
}
.cookie-modal .cookie-category label {
  flex: 1 1 160px;
  color: #2B5F3A;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.cookie-modal .cookie-toggle {
  margin-left: 16px;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  accent-color: #A67E51;
  width: 21px; height: 21px;
  vertical-align: middle;
}
.cookie-modal .category-disabled {
  color: #AAA;
  font-size: 0.98rem;
}
.cookie-modal .cookie-modal-actions {
  display: flex; gap: 14px; margin-top: 20px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 22px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
}
.cookie-modal .cookie-save {
  background: #2B5F3A; color: #fff; font-weight: 700;
}
.cookie-modal .cookie-save:hover { background: #A67E51; color: #fff; }
.cookie-modal .cookie-cancel {
  background: #F5F3EE; color: #A67E51; font-weight: 700; border: 1px solid #A67E51;
}
.cookie-modal .cookie-cancel:hover { background: #A67E51; color: #fff; }
.cookie-modal-close {
  position: absolute; right: 18px; top: 17px;
  background: none; border: none; color: #A67E51;
  font-size: 1.48rem;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 9px;
  transition: background 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F5F3EE;
}

/* === MISC FORMS, LINKS, EMPHASIS === */
input, textarea, select {
  border-radius: 13px;
  border: 1.3px solid #A67E51;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 13px;
  margin-bottom: 12px;
}
input:focus, textarea:focus, select:focus {
  border-color: #2B5F3A;
  outline: none;
}

strong { font-weight: bold; color: #A67E51; }

/* === SEPARATORS, BORDERS, ACCENTS === */
hr {
  border: 0; border-top: 1.8px dashed #A67E51;
  margin: 32px 0;
  opacity: 0.17;
}

/* === UTILITY CLASSES === */
.mt-0 { margin-top: 0 !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.text-center { text-align: center !important; }

/* === END === */
