/* RESET & BASE STYLES */
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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F7F8;
  color: #2A3633;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
a {
  color: #337a57;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #76B29B;
  text-decoration: underline;
  outline: none;
}
img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
ul {
  list-style-type: disc;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}
th, td {
  padding: 16px 12px;
  text-align: left;
}
th {
  background-color: #E6F6E4;
  font-weight: 600;
}
tbody tr:nth-child(even) {
  background-color: #F6F7F8;
}
tbody tr:nth-child(odd) {
  background-color: #fff;
}

/* TYPOGRAPHY */
h1, .display {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1D4632;
  margin-bottom: 20px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #47814E;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #38694A;
  margin-bottom: 12px;
  letter-spacing: 0.1px;
}
p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #38473C;
  margin-bottom: 18px;
}
strong {
  font-weight: bold;
}

/* UTILITIES */
.container {
  width: 94%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 0; /* Legacy spacing handled by section */
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(86, 145, 83, 0.08);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.24s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(86, 145, 83, 0.13);
  transform: translateY(-2px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 26px 24px 26px;
  gap: 10px;
}
.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;
  background: #fff9f9;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(34, 70, 50, 0.08);
  border: 1px solid #E8D3D9;
  max-width: 550px;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: #264029;
  font-size: 1.1rem;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  color: #688a5a;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAV */
header {
  width: 100%;
  background: linear-gradient(90deg, #ECFCF1 0%, #E5F6F8 100%);
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 2px 10px rgba(105, 145, 83, 0.09);
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.065rem;
  color: #346B4F;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background 0.19s, color 0.19s;
}
header nav a:hover, header nav a:focus {
  background: #D7F2DF;
  color: #1D4632;
}
header img {
  height: 41px;
  width: auto;
  border-radius: 8px;
}
.cta-btn {
  display: inline-block;
  background: #B2E6CE;
  color: #1D4632;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 10px 28px 10px 28px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(86, 145, 83, 0.07);
  margin-left: 14px;
  border: none;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.05em;
  transition: background 0.22s, color 0.18s, box-shadow 0.16s, transform 0.13s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #EDF5F1;
  color: #24693E;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 17px rgba(86, 145, 83, 0.15);
  outline: none;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #B2E6CE;
  border: none;
  color: #1D4632;
  font-size: 2.1rem;
  border-radius: 7px;
  padding: 4px 14px;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  outline: 2px solid #77deb7;
  background: #D3F7E0;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #F0EFE7;
  box-shadow: 0 0 60px rgba(34,70,50,0.04);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.76,0,.24,1), opacity 0.22s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #346B4F;
  font-size: 2.2rem;
  margin: 22px 25px 0 0;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #1D4632;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 36px 24px 36px;
  width: 350px;
  box-sizing: border-box;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  color: #1D4632;
  padding: 12px 8px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D7F2DF;
  color: #214D33;
  outline: none;
}

/* HERO / CTA / PREIEWS */
.hero, .cta, .about-preview, .services-preview, .galerie-hero, .contact-hero, .confirmation, .pricing-hero  {
  background: linear-gradient(135deg, #F5FDEC 0%, #E9FAF6 100%);
  border-radius: 0 0 34px 34px;
  margin-bottom: 60px;
  padding: 50px 20px 54px 20px;
  box-shadow: 0 1px 9px 0 rgba(60,135,83,0.07);
}
.cta {
  background: linear-gradient(95deg, #ECFDFB, #EFFFDF);
}
.about-preview, .services-preview {
  background: linear-gradient(90deg, #F6FFF7, #FDF9F6);
}

/* LISTS (custom design for features, etc.)*/
.features ul,
.services-preview ul,
.services-list ul,
.values ul,
.faq ul,
.about-preview ul,
.pricing-table ul,
.confirmation ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin-bottom: 22px;
  padding-left: 0;
}
.features ul li {
  background: #F5FCF3;
  border-radius: 14px;
  color: #286E47;
  padding: 12px 18px 12px 50px;
  position: relative;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 1px 7px rgba(86, 145, 83, 0.04);
  min-height: 36px;
  margin-bottom: 0;
  margin-left: 0;
}
.features ul li img {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  height: 26px;
  width: 26px;
  object-fit: contain;
  border-radius: 8px;
}
.services-preview ul li, .services-list ul li {
  background: #FCFDFB;
  border-radius: 14px;
  color: #235741;
  padding: 15px 22px;
  font-size: 1.04rem;
  box-shadow: 0 1px 6px rgba(124,176,152,0.04);
  font-family: 'Roboto', Arial, sans-serif;
}
ul li strong {
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; color: #366552;
}

/* SECTION SPACING (MANDATORY PATTERNS) */
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* PRICING TABLE */
.pricing-table table {
  border-radius: 16px;
  overflow: hidden;
  font-size: 1rem;
}
.pricing-table th {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #E2FDED;
}
.pricing-table td {
  background: #FDFDFD;
  color: #1D4632;
}

/* FAQ */
.faq ul li {
  padding: 18px 16px;
  background: #EEF6FB;
  border-radius: 13px;
  color: #236262;
  margin-bottom: 0;
  margin-left: 0;
  box-shadow: 0 1px 6px 0 rgba(45,71,105,0.06);
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
}

/* FOOTER */
footer {
  width: 100%;
  background: linear-gradient(90deg, #ECEFFE 0%, #F3F9F0 100%);
  padding: 28px 0 14px 0;
  margin-top: 48px;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -1px 10px rgba(31, 70, 60, 0.07);
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
footer nav a {
  font-size: 0.98rem;
  color: #40684C;
  opacity: 0.85;
  transition: opacity 0.16s, color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #286F56;
  opacity: 1;
  outline: none;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: #5E8B5E;
}
.footer-brand img {
  height: 36px;
  width: auto;
  border-radius: 8px;
}

/* LEGAL SECTIONS */
.legal {
  max-width: 820px;
  margin: 0 auto 38px auto;
  background: #fff;
  border-radius: 22px;
  padding: 44px 40px 38px 40px;
  box-shadow: 0 2px 14px 0 rgba(124,176,152,0.09);
}
@media (max-width: 700px) {
  .legal { padding: 24px 12px 18px 12px; }
}

/* ANIMATION UTILITIES */
@keyframes fadeInUp {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.content-wrapper > * {
  animation: fadeInUp 0.7s both;
}

/* FORM (generic, for contact/thank you)*/
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 10px;
  border: 1px solid #DCE9E0;
  padding: 12px 16px;
  font-size: 1rem;
  margin-bottom: 16px;
  background: #F9FBF6;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #76B29B;
  outline: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FDF8FC;
  color: #326353;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 260;
  box-shadow: 0 -2px 18px 0 rgba(110,140,83,.08);
  padding: 22px 8px;
  border-radius: 18px 18px 0 0;
  animation: fadeInUp 0.7s;
}
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  width: 98vw;
}
.cookie-banner p {
  font-size: 1rem;
  color: #2A4733;
  margin-bottom: 0;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.cookie-btn {
  background: #BCEBDF;
  color: #1D4632;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 20px;
  border: none;
  padding: 8px 28px;
  box-shadow: 0 1px 4px rgba(80,145,113,0.05);
  margin-right: 0;
  transition: background 0.15s, color 0.14s, box-shadow 0.13s, transform 0.13s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #D7F2DF;
  color: #24693E;
  transform: translateY(-2px) scale(1.03);
  outline: none;
}
.cookie-btn.settings {
  background: #F5ECD9;
  color: #40684C;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FFF7EE;
  color: #326353;
}

/* Cookie Banner Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 96vw;
  max-width: 420px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 60px rgba(51,102,82,0.17);
  z-index: 270;
  transform: translate(-50%, 80px) scale(0.9);
  opacity: 0;
  display: none;
  padding: 34px 24px 21px 24px;
  transition: opacity 0.25s, transform 0.22s;
}
.cookie-modal.open {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.0);
  animation: fadeInUp 0.7s;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: #1D4632;
}
.cookie-modal .category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 13px;
  padding: 11px 0;
  border-bottom: 1px solid #EDF1F5;
}
.cookie-modal .category:last-child {
  border-bottom: none;
}
.cookie-modal .category label {
  font-size: 1.035rem;
  color: #2A4733;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal .toggle {
  width: 42px;
  height: 24px;
  border-radius: 21px;
  background: #E3EFE7;
  position: relative;
  transition: background 0.19s;
}
.cookie-modal .toggle input {
  display: none;
}
.cookie-modal .toggle-switch {
  position: absolute;
  left: 4px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #95CFAB;
  border-radius: 50%;
  transition: left 0.19s, background 0.17s;
}
.cookie-modal .toggle input:checked + .toggle-switch {
  left: 20px;
  background: #6FD6B8;
}
.cookie-modal .category.essential label {
  font-weight: 700;
  color: #346B4F;
}

.cookie-modal .modal-actions {
  display: flex;
  gap: 20px;
  margin-top: 19px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 108px;
  font-size: 0.98rem;
  padding: 8px 18px;
}

/* HERO IMAGES RESPONSIVE */
.hero img, .galerie-hero img, .about-preview img, .contact-hero img {
  max-width: 420px;
  border-radius: 20px;
  margin-bottom: 24px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container { max-width: 97vw; }
}
@media (max-width: 768px) {
  .container { width: 99vw; padding: 0 6px; }
  .content-grid { flex-direction: column; align-items: stretch; }
  .section, .hero, .cta, .about-preview, .services-preview, .galerie-hero, .contact-hero, .confirmation, .pricing-hero  { padding: 30px 5px 30px 5px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.39rem; }
  header .container { flex-direction: row; flex-wrap: wrap; }
  header nav { display: none; }
  .cta-btn { margin-left: 0; margin-top: 8px; }
  .mobile-menu-toggle { display: block; }
  .footer-brand img { height: 27px; }
  .legal { padding: 16px 6px; }
  .testimonial-card { max-width: 100%; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 510px) {
  .hero img, .galerie-hero img, .about-preview img, .contact-hero img { max-width: 99vw; }
  .mobile-nav { width: 98vw; padding: 60px 6vw; }
}
@media (max-width: 395px) {
  h1, .display { font-size: 1.4rem; }
}

/* ANIMATION UTILITIES */
@keyframes slideInLeft {
  from { transform: translateX(-100vw); opacity: 0.8; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutLeft {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(-100vw); opacity: 0.8; }
}

/* Transitions for card/section hover */
section, .section, .hero, .cta, .about-preview, .services-preview{
  transition: background 0.62s;
}

/* HIDE CLUTTERED LISTS ON SMALLEST SCREENS */
@media (max-width: 400px) {
  .card-content { padding: 14px 5px; }
  .services-list ul li, .services-preview ul li, .features ul li, .faq ul li {
    font-size: 0.98rem;
    padding: 10px 9px;
  }
}

/* HELPER CLASSES */
.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
}

/* Custom scrollbars for dreamlike effect */
::-webkit-scrollbar {
  width: 9px;
  background: #e5fae7;
}
::-webkit-scrollbar-thumb {
  background: #cad7c1;
  border-radius: 5px;
}

/* FOCUS STATES accessibility */
:focus-visible {
  outline: 2px solid #77deb7;
  outline-offset: 1px;
}

/* Dreamy micro-interactions: fade card on hover, dreamy scale btns */
.card:active { transform: scale(0.98); }
.cta-btn:active, .cookie-btn:active { transform: scale(0.97); }

/* Prevent text selection on interactive elements */
.mobile-menu-toggle, .mobile-menu-close, .cta-btn, .cookie-btn {
  user-select: none;
}

/* Disable grid/columns (MANDATORY compliance) */
/* No CSS Grid or column-count/width/gap etc. anywhere. All containers use flex layouts only. */
