/* ======================= CSS RESET & BASE ======================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F4F1E1;
  color: #295B35;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #295B35;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #539E53;
}
button, input[type='button'], input[type='submit'] {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
ul, ol {
  list-style: none;
}
blockquote {
  font-style: italic;
  margin: 0 0 16px 0;
}

/* =============== BRAND & ARTISTIC STYLE VARS =============== */
:root {
  --brand-primary: #295B35;
  --brand-secondary: #B7D5A5;
  --brand-accent: #F4F1E1;
  --brand-dark: #1a3920;
  --brand-highlight: #FFD447;
  --brand-pink: #FFB7A1;
  --brand-sky: #80C7ED;
  --radius: 15px;
  --shadow: 0 3px 16px rgba(41,91,53,0.10), 0 1.5px 4px rgba(41,91,53,0.03);
  --transition: 0.24s cubic-bezier(.65,.05,.36,1);
  --section-gap: 60px;
  --container: 1200px;
}

@media (max-width: 1340px) {
  :root { --container: 97vw; }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Lato:wght@400;700&display=swap');

/* ==================== LAYOUT CONTAINERS ===================== */
.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  will-change: transform, box-shadow;
}
.card:hover, .card:focus {
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 8px 32px rgba(41,91,53,0.16);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 18px rgba(41,91,53,0.07);
  min-width: 260px;
  max-width: 430px;
  margin-right: 20px;
  margin-bottom: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 32px rgba(41,91,53,0.13);
  transform: translateY(-5px) scale(1.015);
}
.testimonial-card blockquote {
  color: #222;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  position: relative;
  padding-left: 30px;
}
.testimonial-card blockquote:before {
  content: '“';
  color: var(--brand-primary);
  font-size: 2.3rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -10px;
  font-family: 'Montserrat', cursive;
  opacity: 0.23;
}
.testimonial-card .client-name {
  color: #295B35;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  font-family: 'Lato', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #B7D5A5;
  border-radius: var(--radius);
  padding: 28px 18px;
  box-shadow: var(--shadow);
  min-width: 220px;
  max-width: 300px;
  flex: 1 1 220px;
  transition: background 0.22s;
  margin-bottom: 20px;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.feature-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.22rem;
  color: #295B35;
  margin-bottom: 2px;
}
.feature-item p {
  font-size: 1rem;
  color: #23482B;
}
.feature-item:hover {
  background: #A3C890;
}

/********** HERO SECTION ***********/
.hero-section {
  background: linear-gradient(90deg, #B7D5A5 0%, #80C7ED 40%, #FFB7A1 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: var(--section-gap);
  width: 100vw;
  padding: 0 0 60px 0;
  overflow-x: hidden;
}
.hero-section .container {
  flex-direction: column;
}
.hero-section h1 {
  font-family: 'Montserrat', cursive, sans-serif;
  font-weight: 800;
  font-size: 2.44rem;
  letter-spacing: -0.5px;
  color: var(--brand-primary);
  text-shadow: 2px 2px 0 #FFD44722;
  margin-bottom: 14px;
  text-align: center;
}
.hero-section p {
  font-size: 1.17rem;
  color: #295B35;
  margin-bottom: 12px;
  max-width: 750px;
  text-align: center;
  font-family: 'Lato', Arial, sans-serif;
}

/********** SECTION HEADERS ***********/
.content-wrapper > h2,
.section > .container > .content-wrapper > h2,
.section > .container > h2,
.section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #295B35;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: 0.04em;
}
.content-wrapper > h3, .section h3 {
  font-family: 'Montserrat', sans-serif;
  color: #539E53;
  font-size: 1.22rem;
  font-weight: 700;
  margin: 18px 0 10px 0;
}

/********** BUTTONS & CTAS ***********/
.btn-primary, .btn-secondary {
  display: inline-block;
  border-radius: 100px;
  padding: 12px 38px;
  font-size: 1.11rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin: 14px 0;
  letter-spacing: 0.04em;
  border: none;
  outline: none;
  box-shadow: 0 2px 8px #295B3533;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.btn-primary {
  background: linear-gradient(90deg, #295B35 60%, #539E53 100%);
  color: #fff;
  text-shadow: 1px 1px 0 #295B3533;
}
.btn-primary:hover, .btn-primary:focus {
  background: #539E53;
  color: #fff;
  box-shadow: 0 4px 18px #295B355f;
  transform: scale(1.04);
}
.btn-secondary {
  background: #fff;
  color: #295B35;
  border: 2px solid #295B35;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FFD447;
  color: #233c1d;
}

/********** FEATURE GRID ***********/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  width: 100%;
}

/********** SERVICE CARDS ***********/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  width: 100%;
}
.service-card {
  background: linear-gradient(105deg, #fff 80%, #B7D5A5 100%);
  border-radius: var(--radius);
  box-shadow: 0 2px 14px #295B3512;
  padding: 28px 18px 22px 18px;
  min-width: 220px;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card img {
  width: 38px;
  height: 38px;
}
.service-card .price {
  background: #295B35;
  color: #fff;
  border-radius: 50px;
  padding: 4px 18px;
  font-size: 1rem;
  margin-top: 10px;
  font-weight: 700;
  font-family: 'Lato', Arial, sans-serif;
  letter-spacing: 0.02em;
  box-shadow: 0 1.5px 8px #B7D5A577;
}
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #295B35;
}
.service-card p {
  color: #23482B;
  font-size: 1rem;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 5px 28px rgba(41,91,53,0.11);
}

/********** TESTIMONIALS ***********/
.testimonials-section {
  background: #B7D5A5;
  border-radius: var(--radius);
  margin-bottom: 60px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}

/********** ABOUT & STORY ***********/
.about-story-section ul, .why-us-section ul {
  margin-top: 8px;
  padding-left: 18px;
  font-size: 1.04rem;
  color: #295B35;
  list-style: disc outside;
}
.about-story-section li, .why-us-section li {
  margin-bottom: 11px;
  line-height: 1.6;
}

/********** BLOG LISTS ***********/
.article-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}
.article-list li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px 16px 26px;
  font-size: 1.02rem;
  transition: box-shadow .18s;
  border-left: 7px solid #295B35;
}
.article-list li:hover {
  box-shadow: 0 6px 21px #295B3536;
}
.article-list h3 {
  color: #295B35;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.19rem;
}

.popular-posts ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 8px;
}
.popular-posts h3 {
  font-size: 1.12rem;
  color: #539E53;
  margin-top: 10px;
}

/********** TIP CARDS ***********/
.tip-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.tip-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 20px 18px 18px;
  min-width: 200px;
  max-width: 310px;
  flex: 1 1 220px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.tip-card h3 {
  color: #295B35;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}
.tip-card p {
  font-size: 0.98rem;
  color: #295B35;
}
.tip-card:before {
  content: '';
  position: absolute;
  top: -13px;
  right: -13px;
  width: 35px;
  height: 35px;
  background: var(--brand-pink);
  border-radius: 50%;
  opacity: 0.11;
  z-index: 1;
}
.tip-card:hover {
  box-shadow: 0 7px 24px #295B3537;
  transform: translateY(-6px);
}

/********* NEWSLETTER SECTION *********/
.newsletter-section {
  background: #80C7ED11;
  padding: 50px 0;
  border-radius: var(--radius);
  margin-bottom: 62px;
}

/********** FORM SECTION **********/
.form-section em {
  color: #FF4500;
  font-style: italic;
  font-size: 1.07rem;
}

/*********** TABLES (SERVICES) ***********/
.service-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 32px 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px #295B3515;
  font-size: 1.02rem;
}
.service-table th, .service-table td {
  padding: 16px 12px;
  text-align: left;
}
.service-table thead th {
  background: #B7D5A5;
  color: #295B35;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-bottom: 2px solid #295B35;
  font-size: 1.06rem;
}
.service-table tbody td {
  border-bottom: 1px solid #B7D5A5;
  color: #23482B;
}
.service-table tbody tr:last-child td {
  border-bottom: none;
}

/******** CONTACT & INFORMATION ********/
.contact-info {
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 1.06rem;
  margin-bottom: 8px;
  color: #11271b;
}
.contact-info a {
  color: #539E53;
  font-weight: 600;
}

/******** LEGAL SECTIONS ********/
.legal-section {
  background: #fff;
  padding: 40px 22px;
  border-radius: var(--radius);
  margin-bottom: 44px;
  box-shadow: 0 2px 12px #295B3511;
}
.legal-section h1 {
  font-size: 2.01rem;
  color: #295B35;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
}
.legal-section h2 {
  font-size: 1.17rem;
  color: #23482B;
  font-family: 'Montserrat', sans-serif;
  margin-top: 34px;
  margin-bottom: 8px;
}
.legal-section ul {
  margin: 8px 0 18px 21px;
  font-size: 1.03rem;
  color: #295B35;
  list-style: disc;
}

/********* CTA SECTIONS *********/
.cta-section, .action-section {
  background: #80C7ED11;
  border-radius: var(--radius);
  padding: 38px 22px 38px 22px;
  margin-bottom: 60px;
  text-align: center;
}

/********* FOOTER *********/
footer {
  background: #295B35;
  color: #fff;
  padding: 32px 0 15px 0;
  width: 100vw;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1250px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-size: 1.01rem;
  font-family: 'Lato', Arial, sans-serif;
  transition: color 0.17s;
}
.footer-nav a:hover {
  color: #FFD447;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.footer-brand img {
  width: 47px;
  margin-bottom: 6px;
}
.footer-brand p {
  color: #FFD447;
  font-size: 0.98rem;
}

/******* MOBILE FIRST & RESPONSIVE *********/
@media (max-width: 1070px) {
  .feature-grid, .testimonial-list, .service-list, .tip-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  footer .container {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container, .content-wrapper, section, .section {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .hero-section {
    min-height: 240px;
    padding: 22px 0 32px 0;
    background: linear-gradient(90deg, #B7D5A5 15%, #80C7ED 64%, #FFB7A1 100%);
  }
  .hero-section h1 {
    font-size: 1.49rem;
    line-height: 1.3;
  }
  .text-image-section {
    flex-direction: column;
    gap: 12px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .feature-item, .service-card, .testimonial-card, .tip-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 18px 12px;
  }
  .testimonial-list, .feature-grid, .service-list, .tip-cards {
    flex-direction: column;
    gap: 16px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 9px;
    align-items: center;
  }
  .footer-brand {
    margin-top: 19px;
  }
  .service-table th, .service-table td {
    padding: 10px 7px;
  }
}
@media (max-width: 490px) {
  .hero-section h1, .content-wrapper > h2, .section > .container > .content-wrapper > h2, .section h2 {
    font-size: 1.09rem;
  }
}

/********** HEADER & NAVIGATION ************/
header {
  background: #fff;
  box-shadow: 0 6px 20px #295B3515;
  position: sticky;
  top: 0;
  z-index: 22;
  width: 100vw;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 16px;
  max-width: 1333px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}
header nav a {
  color: #295B35;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.01rem;
  transition: color .13s;
}
header nav a:hover, header nav a:focus {
  color: #539E53;
  text-decoration: underline;
}
header a.btn-primary {
  margin-left: 24px;
}
header img {
  height: 44px;
  width: auto;
}

/**** Mobile Nav Button ****/
.mobile-menu-toggle {
  display: none;
  font-size: 2.15rem;
  background: #B7D5A5;
  color: #295B35;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 52;
  border: 2.5px solid #295B35;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:active {
  background: #FFD447;
  color: #fff;
}
@media (max-width: 970px) {
  header nav, header a.btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 19px;
    top: 18px;
  }
}

/**** Mobile Menu Overlay ****/
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(183,213,165,0.97);
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.63,0,.32,1);
  z-index: 111;
  padding: 40px 30px 30px 22px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.1rem;
  margin-bottom: 22px;
  background: none;
  color: #295B35;
  border: none;
  outline: none;
  width: 44px; height: 44px;
  transition: color .19s;
  z-index: 112;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #539E53;
}
.mobile-nav {
  display: flex !important;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 10px;
  width: 90vw;
  max-width: 350px;
}
.mobile-nav a {
  color: #295B35;
  font-size: 1.12rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 10px 0 10px 10px;
  border-left: 4px solid transparent;
  border-radius: 3px;
  transition: background .18s, border-color .15s, color .12s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD447;
  border-left: 4px solid #539E53;
  color: #539E53;
}

/********** COOKIE CONSENT BANNER ***********/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fffbe1;
  color: #11271b;
  box-shadow: 0 -2px 16px #295B3522;
  padding: 20px 24px 18px 24px;
  z-index: 9500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 1rem;
  transition: transform 0.33s cubic-bezier(.38,0,.36,1);
}
.cookie-consent-banner.hide {
  transform: translateY(140%);
  pointer-events: none;
}
.cookie-banner-message {
  flex: 2 1 320px;
  color: #295B35;
  font-family: 'Lato', sans-serif;
  font-size: 1.04rem;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex: 1 0 125px;
}
.cookie-btn {
  border-radius: 50px;
  border: none;
  padding: 9px 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1.02rem;
  background: var(--brand-secondary);
  color: var(--brand-dark);
  box-shadow: 0 1px 7px #B7D5A555;
  transition: background .19s, color .16s, box-shadow .14s;
}
.cookie-btn.primary {
  background: #295B35;
  color: #fff;
}
.cookie-btn.primary:hover, .cookie-btn.primary:focus {
  background: #539E53;
}
.cookie-btn.reject {
  background: #FFB7A1;
  color: #295B35;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFD447;
  color: #295B35;
}
.cookie-btn.settings {
  background: #B7D5A5;
  color: #295B35;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #80C7ED;
  color: #183524;
}
@media (max-width: 610px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.96rem;
    padding: 16px 10px 18px 11px;
  }
  .cookie-banner-actions {
    width: 100%;
    gap: 8px;
  }
}

/* =========== COOKIE MODAL (PREFERENCES) ============ */
.cookie-modal-overlay {
  position: fixed;
  z-index: 9550;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(41,91,53,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.33s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 34px #295B3536;
  min-width: 290px;
  max-width: 375px;
  padding: 32px 19px 26px 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  position: relative;
  animation: cookieModalIn 0.39s cubic-bezier(.23,.96,.46,1) both;
}
@keyframes cookieModalIn {
  0% { transform: scale(0.75) translateY(90px); opacity: 0; }
  95% { transform: scale(1.02) translateY(-10px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.18rem;
  color: #295B35;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: #295B35;
  user-select: none;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #295B35;
  width: 19px;
  height: 19px;
}
.cookie-modal-category.essential label {
  color: #295B35;
  font-weight: bold;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 13px;
  background: none;
  border: none;
  color: #295B35;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex;
  align-items: center; justify-content: center;
  transition: background 0.18s, color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFD44711;
  color: #183524;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  justify-content: flex-end;
  margin-top: 13px;
}

/******* Thank You Styling *******/
.thank-you-message {
  color: #295B35;
  font-size: 1.15rem;
  margin-bottom: 18px;
  background: #B7D5A555;
  border-radius: 12px;
  padding: 14px 19px;
  text-align: center;
}

/********** ANIMATIONS & TRANSITIONS ***********/
.card, .service-card, .feature-item, .testimonial-card, .tip-card {
  transition: box-shadow 0.19s, transform 0.19s;
}
.btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.17s, transform 0.15s;
}
section, .section {
  transition: background 0.36s;
}
.mobile-menu {
  transition: transform 0.32s cubic-bezier(.73,.06,.31,1);
}

/********* UTILITY CLASSES *********/
.bg-primary { background: #295B35; color: #fff !important; }
.bg-secondary { background: #B7D5A5; }
.bg-accent { background: #F4F1E1; }
.text-center { text-align: center; }
.text-accent { color: #80C7ED; }
.text-pink { color: #FFB7A1; }

/********* MISC/SCROLLBAR *********/
::-webkit-scrollbar {
  width: 8px;
  background: #B7D5A533;
}
::-webkit-scrollbar-thumb {
  background: #80C7EDCC;
  border-radius: var(--radius);
}

/********* PRINT SAFETY *********/
@media print {
  .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
  header, footer { color: #000 !important; background: #fff !important; }
}
