/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.7;
  color: #145257;
  background: #FAFBF7;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
a {
  color: #22643A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F39200;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, .cta-primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
}
/* Brand Color Palette */
:root {
  --primary: #22643A;
  --secondary: #145257;
  --accent: #E6F5E6;
  --background: #FAFBF7;
  --error: #D92236;
  --yellow-soft: #FFF7E0;
  --cta: #F39200;
  --shadow: 0 2px 12px 0 rgba(34,100,58,0.12), 0 2px 4px 0 rgba(34,100,58,0.05);
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #22643A;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, li, .brand-summary, .copyright {
  color: #145257;
  font-size: 1rem;
}
.subheadline {
  font-size: 1.2rem;
  color: #338A57;
  margin-bottom: 18px;
}
strong {
  color: #22643A;
  font-weight: 700;
}
/* Container & Layout */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: none;
}
main {
  flex: 1 1 auto;
  background: none;
  width: 100%;
  display: flex;
  flex-direction: column;
}
/* Spacing and Alignment Patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(34,100,58,0.15);
  transform: translateY(-4px) scale(1.02);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  flex-direction: column;
  max-width: 600px;
  width: 100%;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 28px 22px 22px 22px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  width: 44px; height: 44px;
  margin-bottom: 8px;
}
.feature-item:hover {
  box-shadow: 0 6px 20px 0 rgba(34,100,58,0.17);
  transform: translateY(-4px) scale(1.03);
}
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin: 20px 0 0 0;
}
.benefits-list li {
  display: flex;
  align-items: center;
  background: #FFF;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px 24px;
  gap: 10px;
  min-width: 200px;
  font-size: 1rem;
  flex: 1 1 200px;
  margin-bottom: 0;
}
.benefits-list img {
  width: 32px; height: 32px;
}
/* Header & Navigation */
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 2px 10px 0 rgba(34, 100, 58, 0.06);
  padding: 0;
  position: relative;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
  min-height: 80px;
  justify-content: space-between;
}
.logo img {
  display: block;
  max-height: 56px;
  border-radius: 14px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
  font-size: 1.06rem;
  color: #145257;
  padding: 4px 10px;
  border-radius: 9px;
  transition: background 0.15s, color 0.15s;
}
nav a:hover, nav a:focus {
  background: #E6F5E6;
  color: #22643A;
}
.cta-primary {
  display: inline-block;
  color: #FFF;
  background: linear-gradient(90deg, #F5B642 0%, #F39200 100%);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  padding: 12px 34px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 2px 10px 0 rgba(226,100,58,0.16);
  margin-left: 18px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  border: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #F39200 0%, #F5B642 100%);
  box-shadow: 0 6px 24px 0 rgba(243,146,0,0.16);
  transform: translateY(-2px) scale(1.03);
  color: #FFF;
}
/* Hamburger menu (MOBILE) */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  background: #FFF;
  border: none;
  color: #145257;
  font-size: 2.2rem;
  z-index: 1001;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 1px 6px 0 rgba(34,100,58,0.15);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
}
.mobile-menu-toggle:active {
  background: #E6F5E6;
  box-shadow: 0 4px 18px rgba(34,100,58,0.16);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFF;
  z-index: 1100;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  transform: translateX(-110vw);
  transition: transform 0.32s cubic-bezier(.77,0,.18,1) 0s;
  box-shadow: 0 0 32px 0 rgba(34,100,58,0.20);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 22px;
  margin-left: 22px;
  font-size: 2.1rem;
  background: none;
  color: #145257;
  border: none;
  border-radius: 50%;
  width: 42px;height: 42px;
  align-items: center;
  justify-content: center;
  transition: background 0.12s;
  cursor: pointer;
  display: flex;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E6F5E6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
  margin-top: 48px;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #22643A;
  padding: 12px 0;
  border-radius: 8px;
  min-width: 70vw;
  transition: background 0.15s, color 0.15s;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E6F5E6;
  color: #F39200;
}
/* Main Responsive Features Grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  width: 100%;
}
/* Services List */
.services-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-item {
  background: #FFF;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 32px 24px 20px 24px;
  margin-bottom: 20px;
  flex: 1 1 320px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.18s;
  position: relative;
}
.service-item img {
  width: 44px; height: 44px;
  margin-bottom: 8px;
}
.service-item:hover {
  box-shadow: 0 12px 36px rgba(34,100,58,0.19);
  transform: translateY(-4px) scale(1.04);
}
.service-price {
  margin-top: 10px;
  font-weight: 700;
  color: #F39200;
  font-size: 1.1rem;
  border-radius: 11px;
  background: #FFF7E0;
  padding: 5px 14px;
}
/* Feature points and accordion */
.feature-points,
.accordion-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-points li {
  color: #145257;
  padding-left: 22px;
  position: relative;
}
.feature-points li:before {
  content: '\2022';
  color: #22643A;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0.2em;
}
.accordion-section {
  margin-top: 22px;
  background: #E6F5E6;
  border-radius: 15px;
  padding: 18px;
  box-shadow: 0 1px 6px 0 rgba(34,100,58,0.07);
}
/* Blog/Tip Tags */
.topic-tags {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.topic-tags span, .tag {
  display: inline-block;
  color: #FFF;
  background: #22643A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  padding: 3px 12px;
  border-radius: 9px;
  margin-left: 4px;
}
.featured-tip {
  background: #FFF7E0;
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 18px;
  color: #145257;
  font-style: italic;
}
/* Blog List */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 24px 0 0 0;
}
.blog-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.blog-list a {
  color: #22643A;
  font-weight: 700;
  transition: color 0.17s;
}
.blog-list a:hover, .blog-list a:focus {
  color: #F39200;
}
/* Case studies and articles */
.case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.case-studies article {
  background: #FFF;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px 30px 18px 22px;
  flex: 1 1 300px;
  min-width: 240px;
  margin-bottom: 0;
}
/* Stats List on About */
.stats-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin: 14px 0 0 0;
}
.stats-list li {
  background: #E6F5E6;
  color: #22643A;
  border-radius: 15px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 18px 24px;
  min-width: 120px;
  text-align: center;
}
/* Policy content */
.policy-content {
  background: #FFF7E0;
  color: #145257;
  border-radius: 16px;
  box-shadow: 0 1px 6px 0 rgba(34,100,58,0.09);
  padding: 24px 30px;
  margin: 16px 0 0 0;
}
.policy-content h2 {
  color: #145257;
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.policy-content ul {
  margin-left: 20px;
  margin-bottom: 14px;
}
.policy-content li {
  margin-bottom: 8px;
  font-size: 1rem;
}
/* Testimonials */
.testimonial-card {
  background: #FFF;
  color: #145257;
  border-radius: 22px;
  box-shadow: 0 3px 22px 0 rgba(34,100,58,0.15);
  margin-bottom: 24px;
  padding: 24px 28px;
  max-width: 500px;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.22s, transform 0.15s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(34,100,58,0.21);
  transform: translateY(-3px) scale(1.02);
}
.testimonial-author {
  color: #338A57;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 4px;
}
.star-rating {
  color: #F39200;
  font-size: 1.2em;
  letter-spacing: 0.04em;
}
/* Company Details & Contact */
.company-details {
  background: #E6F5E6;
  border-radius: 16px;
  padding: 18px 24px;
  font-size: 1rem;
  margin-bottom: 18px;
}
.company-details h2 {
  font-size: 1.13rem;
  margin-bottom: 8px;
}
.company-details ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.company-details a {
  color: #145257;
  font-weight: 700;
  text-decoration: underline;
}
.text-section {
  margin-bottom: 16px;
}
.confirmation-message {
  font-size: 1.2rem;
  color: #338A57;
  background: #E6F5E6;
  border-radius: 12px;
  padding: 10px 16px;
  margin: 22px 0;
  display: inline-block;
}
/* Footer */
footer {
  background: #145257;
  color: #FFF;
  width: 100%;
  margin-top: 60px;
  padding: 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 20px 26px 20px;
  align-items: stretch;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
}
.footer-menu a {
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  padding: 2px 8px;
  border-radius: 8px;
  background: transparent;
  transition: background 0.15s, color 0.17s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #E6F5E6;
  color: #145257;
}
.brand-summary {
  font-size: 1rem;
  color: #E6F5E6;
  margin-top: 2px;
  margin-bottom: 0;
  font-family: 'Roboto', Arial, sans-serif;
}
.copyright {
  font-size: 0.95rem;
  color: #E6F5E6;
  margin-bottom: 0;
  margin-top: 6px;
  font-family: 'Roboto', Arial, sans-serif;
}
/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #FFF7E0;
  color: #145257;
  box-shadow: 0 -2px 18px 0 rgba(243,146,0,0.07);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 20px 20px 16px 20px;
  z-index: 1300;
  font-size: 1rem;
  border-radius: 22px 22px 0 0;
  animation: bannerIn 0.65s cubic-bezier(.48,0,.32,1);
}
@keyframes bannerIn {
  from { transform: translateY(140%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1rem;
  margin-right: 10px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  padding: 9px 26px;
  border-radius: 19px;
  border: none;
  background: #F39200;
  color: #FFF;
  margin-left: 8px;
  margin-right: 4px;
  font-weight: 700;
  box-shadow: 0 1px 6px 0 rgba(34,100,58,0.09);
  transition: background 0.14s, box-shadow 0.16s, transform 0.12s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F5B642;
  color: #145257;
  transform: translateY(-1px) scale(1.04);
}
.cookie-btn.settings {
  background: #22643A;
}
.cookie-btn.reject {
  background: #FFF;
  color: #F39200;
  border: 2px solid #F39200;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFF7E0;
  color: #145257;
  transform: none;
  border-color: #F39200;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%) scale(0.95);
  min-width: 320px;
  max-width: 94vw;
  background: #FFF;
  border-radius: 24px;
  box-shadow: 0 6px 32px 0 rgba(34,100,58,0.25);
  z-index: 2000;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.18s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #22643A;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
  margin-top: 2px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1rem;
  gap: 10px;
}
.cookie-category-toggle {
  margin-left: auto;
  position: relative;
}
.cookie-toggle {
  width: 43px;
  height: 26px;
  border-radius: 16px;
  background: #E6F5E6;
  position: relative;
  transition: background 0.19s;
  cursor: pointer;
  outline: none;
  border: 1px solid #E6F5E6;
  display: inline-block;
}
.cookie-toggle[aria-checked="true"] {
  background: #F39200;
}
.cookie-toggle .slider {
  position: absolute;
  left: 4px; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #FFF;
  transition: left 0.16s cubic-bezier(.53,0,.42,1), background 0.13s;
}
.cookie-toggle[aria-checked="true"] .slider {
  left: 18px;
  background: #FFF;
}
/* Cookie modal close button */
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 1.6rem;
  background: none;
  color: #145257;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 38px;height: 38px;
  transition: background 0.11s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E6F5E6;
}
.cookie-modal-footer {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
/* Form Styles - minimal */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #E6F5E6;
  padding: 11px 14px;
  background: #FFF;
  margin-bottom: 14px;
  transition: border 0.14s;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid #F39200;
  border: 1px solid #F39200;
}
/* Utility classes */
.mt-0 { margin-top: 0!important; }
.mb-24 { margin-bottom: 24px!important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.w-100 { width: 100% !important; }
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
  .card, .service-item, .case-studies article { min-width: 170px; }
}
@media (max-width: 992px) {
  .features-grid, .services-list, .benefits-list, .case-studies, .content-grid {
    gap: 18px;
  }
  .footer-menu {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 12px; }
  header .container { flex-direction: column; min-height: 62px; gap: 8px; align-items: flex-start; }
  nav, .footer-menu {display: none;}
  .cta-primary {margin: 10px 0 0 0; min-width:160px;}
  .mobile-menu-toggle { display: flex; }
  .content-wrapper { padding-left: 0; padding-right: 0; }
  .features-grid, .services-list, .case-studies {
    flex-direction: column;
    gap: 18px;
  }
  .benefits-list, .stats-list {
    flex-direction: column;
    gap: 16px;
  }
  .section { padding: 30px 6px; margin-bottom: 40px; }
  .footer-menu { flex-direction: column; align-items: flex-start; gap: 9px; }
  .testimonial-card, .card, .service-item, .case-studies article {
    max-width: 100%;
    min-width: unset;
    width: 100%;
    padding: 18px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .company-details {padding: 12px 6px;}
}
@media (max-width: 480px) {
  h1 {font-size: 1.33rem;}
  h2 {font-size: 1.1rem;}
  .container, main, footer .container {padding: 0 3px;}
}
/*==== ANIMATIONS ====*/
.card, .service-item, .feature-item, .testimonial-card, .case-studies article {
  transition: box-shadow 0.21s, transform 0.17s;
}
.cta-primary, .cookie-btn {
  transition: background 0.16s, box-shadow 0.16s, color 0.15s, transform 0.13s;
}
@media (hover:none) {
  .cta-primary:hover, .cta-primary:focus,
  .cookie-btn:hover, .cookie-btn:focus {
    background: #F39200;
    color: #FFF;
    box-shadow: 0 1px 4px #E6F5E6;
  }
}
/* Hide visually, keep for screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  border: 0;
}
/*===== No Grid, Only Flex everywhere =====*/
/* END OF CSS */