/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F2F2F2;
  color: #28425C;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}
img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #68963C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #28425C;
  outline: none;
}
ul, ol {
  padding-left: 1.2em;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #28425C;
  font-weight: bold;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
h1 {font-size: 2rem; margin-bottom: 20px;}
h2 {font-size: 1.5rem; margin-bottom: 16px;}
h3 {font-size: 1.125rem; margin-bottom: 12px;}
p { margin-bottom: 1em; }
strong { font-weight: 600; }

/* UTILITY & CONTAINERS */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 14px 0 rgba(40,66,92,0.09);
}
.section-cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #E2E9E1;
  border-radius: 36px 16px 32px 24px;
  box-shadow: 0 2px 14px 0 rgba(40,66,92,0.08);
}

/* FLEXBOX PATTERNS */
/* Card and content grid patterns */
.card-container,
.features-grid,
.services-list,
.case-studies-list,
.card-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.features-grid { gap: 24px; justify-content: space-between; }
.services-list, .card-grid, .content-grid { gap: 20px; }
.content-grid { justify-content: space-between; }
.card { margin-bottom: 20px; position: relative; }
.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;
  margin-bottom: 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(40,66,92,0.07);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F5F7F4;
  border-radius: 20px 8px 18px 14px;
  padding: 24px 20px 20px 20px;
  box-shadow: 0 2px 8px 0 rgba(104,150,60,0.08);
  min-width: 220px;
  flex: 1 1 220px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg,#E2E9E1 60%,#F2F2F2 100%);
  border-bottom-left-radius: 48px 36px;
  padding: 60px 0 48px 0;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.125rem;
  color: #28425C;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.hero p {
  color: #28425C;
  font-size: 1.125rem;
}

/* HEADER & NAVIGATION */
header {
  background: #ffffff;
  border-bottom: 2.5px solid #E2E9E1;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 50;
  box-shadow: 0 2px 10px 0 rgba(40,66,92,0.07);
}
.header-wrapper,
.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 14px;
  padding-bottom: 14px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a,
.footer-nav a {
  color: #28425C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
  padding: 3px 4px;
  border-radius: 6px;
}
.main-nav a:hover, .main-nav a:focus,
.footer-nav a:hover, .footer-nav a:focus {
  color: #68963C;
  background: #E2E9E1;
}
.cta-primary {
  background: #68963C;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  outline: none;
  padding: 12px 28px;
  border-radius: 32px 20px 26px 20px;
  box-shadow: 0 2px 10px 0 rgba(104,150,60,0.13);
  transition: background 0.18s, color 0.18s, transform 0.2s;
  cursor: pointer;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #28425C;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}
.cta-secondary {
  background: transparent;
  color: #68963C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  border: 2px solid #68963C;
  border-radius: 22px 16px 20px 14px;
  padding: 10px 24px;
  margin-top: 12px;
  cursor: pointer;
  transition: border 0.18s, background 0.18s, color 0.18s;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #68963C;
  color: #fff;
  border: 2px solid #68963C;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #28425C;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  margin-left: auto;
  transition: background 0.2s;
  z-index: 110;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(242,242,242,0.97);
  backdrop-filter: blur(4px);
  z-index: 105;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.6,.34,.38,1.2);
  box-shadow: 2px 0 22px 0 rgba(104,150,60,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 0 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #28425C;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 36px;
  padding: 6px 16px;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E2E9E1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 94vw;
  max-width: 380px;
}
.mobile-nav a {
  color: #28425C;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 11px 7px;
  border-radius: 10px;
  transition: background 0.14s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #68963C;
  background: #E2E9E1;
}

/* --- HERO BUTTON BIGGER ON MOBILE --- */
.hero .cta-primary, .section-cta .cta-primary {
  font-size: 1.15rem;
  padding: 14px 36px;
  margin-top: 10px;
}

/* USPs / LISTS / SERVICES */
.usps-list, .service-categories-list,
.user-rights-list, .case-studies-list {
  margin: 20px 0 24px 0;
  color: #28425C;
  font-size: 1rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-item {
  background: #F5F7F4;
  padding: 24px 20px;
  border-radius: 22px 10px 16px 22px;
  box-shadow: 0 2px 10px 0 rgba(104,150,60,0.07);
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.14s, transform 0.19s;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 6px 22px 0 rgba(104,150,60,0.16);
  transform: translateY(-2px) scale(1.015);
}

/* CARDS & TESTIMONIALS */
.card {
  background: #fff;
  border-radius: 24px 12px 18px 20px;
  box-shadow: 0 2px 12px 0 rgba(104,150,60,0.06);
  padding: 24px 20px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  min-width: 240px;
  max-width: 400px;
  border-left: 6px solid #68963C;
  background: #fff;
  color: #28425C;
  font-size: 1.1rem;
  position: relative;
  transition: box-shadow 0.19s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px 0 rgba(104,150,60,0.10);
  transform: translateY(-2px);
}
.testimonial-author {
  color: #68963C;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 2px;
}
.star-rating {
  display: flex;
  gap: 2px;
  align-items: center;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
.faq-item {
  background: #E2E9E1;
  border-radius: 16px;
  padding: 18px 16px 14px 16px;
  box-shadow: 0 1px 5px 0 rgba(104,150,60,0.07);
}
.faq-item h2 {
  font-size: 1.14rem;
  margin-bottom: 7px;
  color: #28425C;
}
.faq-item p {
  font-size: 1rem;
  color: #28425C;
}

/* TABLES */
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  background: #fff;
  margin: 20px 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 6px 0 rgba(104,150,60,0.05);
}
thead tr {
  background: #E2E9E1;
}
th, td {
  text-align: left;
  padding: 13px 10px;
  font-size: 1rem;
  color: #28425C;
}
th {
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
}
tbody tr:nth-child(even) {
  background: #F5F7F4;
}

/* FOOTER */
footer {
  background: #28425C;
  color: #fff;
  margin-top: 60px;
  padding-top: 28px;
  padding-bottom: 20px;
}
.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 24px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B8E299;
  background: none;
}
.footer-contact {
  color: #F2F2F2;
  font-size: .97rem;
  line-height: 1.5;
  max-width: 260px;
}
.footer-contact a {
  color: #B8E299;
  text-decoration: underline;
}

/* MAP & CONTACT DETAILS */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 16px;
  background: #E2E9E1;
  border-radius: 16px;
  padding: 18px 16px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #28425C;
}
.map-location {
  background: #F5F7F4;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  color: #68963C;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* PROCESS GUIDE */
.process-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 20px 0 24px 0;
}
.process-guide li {
  background: #F5F7F4;
  border-radius: 14px;
  flex: 1 1 200px;
  padding: 18px 14px 14px 14px;
  min-width: 180px;
  box-shadow: 0 1px 5px 0 rgba(104,150,60,0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.process-guide li img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}

/* QUALITY GUARANTEES/SPECIAL BLOCKS */
.quality-guarantees {
  margin-top: 24px;
  background: #E2E9E1;
  border-radius: 14px;
  padding: 18px 18px 12px 18px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  z-index: 9999;
  bottom: 0; left: 0; right: 0;
  background: #28425C;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 18px 16px;
  box-shadow: 0 -2px 16px rgba(40,66,92,0.13);
  font-size: 1rem;
  gap: 18px;
  animation: slideUp 0.5s cubic-bezier(.77, .11, .26, .96);
}
@keyframes slideUp {
  0% { transform: translateY(120%); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  font-family: 'Montserrat',Arial,sans-serif;
  border: none;
  padding: 9px 20px;
  border-radius: 18px 13px 17px 13px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 2px;
  transition: background 0.18s,color .16s, box-shadow .13s;
}
.cookie-accept {
  background: #68963C;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #557B2F;
  color: #fff;
}
.cookie-reject {
  background: #F2F2F2;
  color: #28425C;
  border: 1px solid #B8E299;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #E2E9E1;
  color: #28425C;
}
.cookie-settings {
  background: transparent;
  color: #B8E299;
  border: 2px solid #B8E299;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #E2E9E1;
  color: #557B2F;
}

/* COOKIE PRIVACY MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10010;
  left: 0; top: 0;width: 100vw; height: 100vh;
  background: rgba(40,66,92,.75);
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: fadeIn 0.45s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #28425C;
  padding: 32px 28px 22px 28px;
  border-radius: 22px 14px 20px 14px;
  min-width: 275px; max-width: 370px;
  box-shadow: 0 8px 32px 0 rgba(40,66,92,0.15);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalIn 0.3s;
}
@keyframes modalIn {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal-content h3 {
  font-size: 1.1rem;
  font-family: 'Montserrat',Arial,sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #68963C;
  width: 18px; height: 18px;
}
.cookie-modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  background: none;
  color: #28425C;
  border: none;
  font-size: 1.65rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.16s;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E2E9E1;
}

/* --- INTERACTIVITY --- */
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
input, textarea, select {
  background: #fff;
  border: 1.5px solid #E2E9E1;
  border-radius: 8px;
  padding: 9px 14px;
  margin-bottom: 12px;
  box-shadow: none;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #68963C;
}

/****** RESPONSIVE DESIGN ******/
@media (max-width:1200px) {
  .container { max-width: 96vw; }
}
@media (max-width:950px) {
  .content-wrapper { max-width: 94vw; }
  .features-grid, .services-list, .card-grid, .content-grid {
    gap: 18px;
  }
  .card, .service-item, .feature-item {
    min-width: 180px;
    font-size: 0.98rem;
  }
}
@media (max-width: 900px) {
  .header-wrapper, .footer-wrapper, .footer-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-contact { max-width: 98vw; }
}
@media (max-width: 850px) {
  .features-grid, .services-list, .card-grid, .process-guide {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-item, .card {
    min-width: 0;
    width: 100%;
    max-width: 97vw;
  }
}
@media (max-width: 768px) {
  /* NAV: hide desktop, show mobile */
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-primary {
    font-size: 1.05rem;
    padding: 11px 19px;
  }
  .container, .content-wrapper {
    max-width: 99vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-wrapper { gap: 8px; }
  .text-image-section { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero .content-wrapper { gap: 16px; align-items: flex-start; }
  .section, .section-cta { padding: 24px 8px; margin-bottom: 42px; }
}
@media (max-width: 510px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: 1.01rem; }
  .container, .content-wrapper { padding-left: 4px; padding-right: 4px; }
  .cookie-modal-content { min-width: 100vw; max-width: unset; border-radius: 0; padding: 24px 8px 14px 8px; }
  .cookie-banner { font-size: 0.97rem; padding: 18px 8px 14px 8px; }
}

/* SHAPES, TEXTURES & ORGANIC FEEL */
.section, .section-cta, .feature-item, .service-item, .card, .testimonial-card, .faq-item,
.quality-guarantees, .cookie-banner, .cookie-modal-content {
  /* Soft organic corners - different radii */
  border-radius: 28px 18px 24px 18px;
}
.features-grid .feature-item:nth-child(odd), .services-list .service-item:nth-child(even), .testimonial-card:nth-child(2n) {
  border-radius: 20px 28px 12px 18px;
}
.section-cta, .quality-guarantees, .cookie-banner {
  border-radius: 36px 16px 32px 24px;
}

/* SHADOWS & MICRO-INTERACTIONS */
.feature-item, .service-item, .card, .testimonial-card, .faq-item,
.quality-guarantees, .cookie-modal-content, .cookie-banner {
  box-shadow: 0 2px 12px 0 rgba(104,150,60,0.07);
  transition: box-shadow 0.16s, transform 0.14s;
}
.feature-item:hover, .service-item:hover, .card:hover, .testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(104,150,60,0.14);
  transform: translateY(-2px) scale(1.01);
}

/* SELECTION COLOR */
::selection {
  background: #B8E299;
  color: #28425C;
}

/* ORGANIC DIVIDERS */
hr {
  border: 0;
  border-top: 2.5px solid #E2E9E1;
  border-radius: 1px;
  margin: 32px 0;
}

/* ACCESSIBILITY & CONTRAST FOR TESTIMONIALS */
.testimonial-card, .testimonial-slider .testimonial-card {
  background: #fff;
  color: #28425C;
  border-left: 6px solid #68963C;
}
.testimonial-author {
  color: #68963C;
}

/********* END *********/
