/* ===============================================================
   Xyria Volt - NATURE_ORGANIC FLEXBOX CSS THEME
   Modern, organic, responsive nature-inspired web design
   =============================================================== */

/* RESET & BASELINE NORMALIZATION */
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;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; background: #f9f8f6; }
img { max-width: 100%; display: block; border: 0; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }

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

:root {
  --brand-primary: #265589;
  --brand-secondary: #F2C84B;
  --brand-accent: #FFFFFF;
  --nature-green: #4F9255;
  --nature-brown: #91705C;
  --nature-sand: #F8E6D0;
  --nature-gray: #ECEDE6;
  --dark-earth: #363528;
  --shadow-lg: 0 8px 24px rgba(49, 65, 56, 0.09);
  --shadow-card: 0 2px 13px rgba(80, 110, 80, 0.13);
  --card-radius: 24px;
  --section-radius: 36px;
  --focus-outline: 2px solid var(--nature-green);
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--dark-earth);
  background: var(--nature-sand);
  font-size: 16px;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.45rem; margin-bottom: 12px; }
h4 { font-size: 1.15rem; margin-bottom: 12px; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

strong, b {
  font-weight: 700;
  color: var(--nature-green);
}

p {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #4F4F41;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/*------------------------------------------
     HEADER & MAIN TOP BAR
  ------------------------------------------*/
header {
  background: var(--brand-accent);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--section-radius) var(--section-radius);
  margin-bottom: 24px;
  position: relative;
  z-index: 200;
}
header .container { flex-direction: row; align-items: center; justify-content: space-between; padding: 18px 20px; }
@media (max-width: 900px){
  header .container { flex-direction: row; flex-wrap: wrap; gap: 12px; }
}
header img { height: 50px; border-radius: 10px; }
@media (max-width: 600px){
  header img { height: 38px; }
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin-left: 32px;
}
@media (max-width: 1020px){.main-nav{ gap:14px; margin-left:10px;}}
@media (max-width: 768px) {
  .main-nav { display: none; }
}
.main-nav a {
  font-size: 1rem;
  color: var(--brand-primary);
  padding: 6px 8px;
  border-radius: 8px;
  font-weight: 500;
  background: none;
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--nature-gray);
  color: var(--nature-green);
}

.cta.primary {
  background: var(--nature-green);
  color: var(--brand-accent);
  padding: 12px 28px;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  border-radius: 99px;
  box-shadow: var(--shadow-card);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-left: 28px;
  outline: none;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  box-shadow: 0 6px 24px rgba(70, 90, 79, 0.15);
}
@media (max-width: 900px){
  .cta.primary { margin-left: 10px; }
}
@media (max-width: 768px){
  .cta.primary { margin-left: 0; margin-top: 10px; }
}

.mobile-menu-toggle {
  display: none;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.18s, box-shadow 0.18s;
  outline: none;
  z-index: 1001;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--nature-green);
  color: var(--brand-accent);
  box-shadow: 0 2px 8px rgba(76,125,80,0.16);
}
@media (max-width: 768px){
  .mobile-menu-toggle { display: flex; }
}

/* -----------------------------------------
     MOBILE MENU OVERLAY
   ----------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(240,243,234, 0.96);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 24px;
  padding-left: 0; 
  transform: translateX(-110%);
  transition: transform 0.33s cubic-bezier(.67,.06,.48,1.43);
  box-shadow: 2px 0 20px rgba(76, 125, 80, 0.07);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: none;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-self: flex-end;
  margin: 10px 18px 10px 0;
  cursor: pointer;
  outline: none;
  z-index: 10002;
  transition: background 0.18s;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  background: var(--nature-green);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
  padding-left: 36px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--brand-primary);
  font-weight: 600;
  padding: 14px 0;
  border-radius: 16px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--nature-green);
  color: #fff;
}
@media (min-width: 769px){
  .mobile-menu { display: none !important; }
}

/*---------------------------------------
  LAYOUT SPACING & SECTION BASE PATTERNS
-----------------------------------------*/
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-accent);
  border-radius: var(--section-radius);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 700px){
  .section, section { padding: 28px 8px; margin-bottom: 40px; border-radius: 20px; }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

.card-container {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-card);
  border-radius: var(--card-radius);
  background: #fff;
  overflow: hidden;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  color: #223010;
  min-width: 220px;
  max-width: 400px;
  margin-bottom: 20px;
  margin-right: 20px; /* For horizontal flex layout */
  transition: box-shadow 0.2s, transform 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 32px rgba(75, 118, 110, 0.125);
  transform: translateY(-4px);
}
.testimonial-card strong {
  color: var(--nature-green);
  font-size: 1rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 18px 24px;
  margin-bottom: 20px;
}

/* -------------------------------------
  HERO BANNERS
---------------------------------------*/
.hero {
  padding: 60px 0 60px 0;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #f8efd5 54%, #E8F6E0 100%);
  border-radius: 0 0 var(--section-radius) var(--section-radius);
  box-shadow: 0 8px 42px rgba(87,118,71,0.09);
  display: flex;
  align-items: center;
}
.hero .container {
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper{
  align-items: center;
}
.hero h1 {
  color: var(--nature-green);
  font-size: 2.5rem;
  text-align: center;
  font-weight: 900;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px #f7f5ec;
}
.hero p {
  color: var(--dark-earth);
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width:650px){
  .hero { padding: 36px 0; }
  .hero h1 { font-size: 1.5rem; }
  .hero p { font-size: 1rem; }
}

/* ----------------------------------------------
     FEATURES & SERVICE CARDS ORGANIC FLEX LAYOUTS
------------------------------------------------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 14px;
}
.feature{
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 220px;
  min-width: 180px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 24px 16px 28px 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.15s;
  border-bottom: 4px solid var(--nature-green);
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 30px rgba(76, 125, 80, 0.15);
  transform: translateY(-3px) scale(1.025);
}
.feature img{
  height: 48px; width:48px;
  object-fit: contain;
  margin-bottom: 14px;
}
.feature h3{
  font-size: 1.18rem;
  margin-bottom: 7px;
  color: var(--nature-green);
}
.feature p { font-size: 1rem; color: #605e4a; text-align: center; }

@media (max-width: 1050px) { .feature-grid {gap:12px;} .feature{flex:1 1 180px;} }
@media (max-width:670px) {
  .feature-grid { flex-direction: column; align-items: stretch; gap:14px; }
  .feature{min-width:0;}
}

/* ------------ SERVICES FLEXBOX CARDS ------------- */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 230px; max-width: 320px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 28px 22px 24px 22px;
  margin-bottom: 20px;
  position: relative;
  border-left: 6px solid var(--brand-primary);
  transition: box-shadow 0.18s, border-color 0.22s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 14px 32px rgba(70,104,84,0.15);
  border-color: var(--nature-green);
}
.service-card .price {
  color: var(--brand-secondary);
  font-size: 1.15rem;
  font-weight: bold;
  margin-top: 8px;
  letter-spacing: 0.03em;
}
.service-card h3{
  margin-bottom:8px;
}

@media (max-width:900px) {
  .service-cards {
    gap: 10px;
  }
  .service-card { padding:18px 13px 14px 13px; }
}
@media (max-width:520px) {
  .service-cards {
    flex-direction: column;
    gap:18px;
  }
}

/* ------------ TESTIMONIALS SLIDER ----------- */
.testimonials {
  background: #edf5ea;
  border-radius: var(--section-radius);
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 6px 18px rgba(44,60,33,.07);
}
.testimonials h2 {
  color: var(--nature-green); margin-bottom: 24px; text-align: center;
}
.testimonial-slider {
  display: flex;
  flex-direction: row;
  gap: 24px;
  overflow-x: auto;
  padding-bottom:12px;
}
@media(max-width:800px){
  .testimonial-slider { gap:10px; }
  .testimonials { padding: 30px 8px;}
}
@media (max-width:700px) {
  .testimonial-slider { flex-direction: column; gap: 16px; padding-bottom:0; }
}

/*---------------
  FOOTER
  --------------*/
footer {
  background: #e6e6dd;
  color: var(--dark-earth);
  border-radius: var(--section-radius) var(--section-radius) 0 0;
  box-shadow: 0 -2px 20px rgba(70,104,84,0.04);
  margin-top: 40px;
  padding: 48px 0 14px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
footer .content-wrapper {
  flex-direction: row;
  gap: 42px;
  width:100%;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: var(--nature-green);
  font-weight: 600;
  font-size: 1rem;
  padding: 4px 0;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-primary);
}
.company-address {
  font-size: 0.98rem;
  color: #504f3c;
  margin-bottom: 8px;
  line-height: 1.5;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.social-links a img {
  height: 32px; width: 32px; border-radius: 8px; transition: filter 0.18s; }
.social-links a:hover img {filter: brightness(1.1) drop-shadow(0 2px 3px #b4e4c2);}
@media (max-width: 1050px) {
  footer .content-wrapper { gap:12px; }
}
@media (max-width:750px) {
  footer .container, footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap:12px;
  }
  footer { padding:32px 0 10px 0;}
}

/* ------------------
  TABLES FOR PRICING
 -------------------*/
table {
  width:100%;
  border-collapse: collapse;
  margin: 18px 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
thead tr {
  background: var(--brand-primary);
  color: #fff;
}
th, td {
  padding: 13px 15px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: var(--brand-primary);
  color: var(--brand-accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
tbody tr { border-bottom: 1px solid #EDEAD7; }
tbody tr:last-child { border-bottom: none; }
td { color: #474828; }

/* ------------------------------------------
       LEGAL, TEXT & ABOUT SECTIONS
  ------------------------------------------*/
.text-section {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 7px rgba(76, 125, 80, 0.07);
  padding: 22px 18px;
  color: #333826;
}
.text-section ul, .text-section ol {
  margin-left: 16px;
  margin-bottom: 14px;
}
.text-section li {
  margin-bottom: 7px;
  font-size: 1rem;
  line-height: 1.4;
}
.note {
  background: var(--nature-gray);
  color: #19502a;
  border-radius: 12px;
  padding: 16px 13px;
  margin-bottom: 20px;
}

/* ------------ BUTTONS/CTA  ----------- */
button, .cta {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  transition: all .17s;
  border: none;
  text-align: center;
}
.cta {
  display: inline-block;
  border-radius: 99px;
  padding: 12px 34px;
  font-size: 1.1rem;
  background: var(--nature-green);
  color: #fff;
  margin-bottom: 0;
  margin-top: 10px;
}
.cta.secondary {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cta.secondary:hover,.cta.secondary:focus {
  background: var(--brand-primary);
  color: var(--brand-secondary);
}
.cta:active {
  filter: brightness(0.97);
}
@media (max-width: 700px){
  .cta { width:100%; font-size: 1rem; }
}

/* ------------- FORMS (if added) ------------- */
input, textarea, select {
  border: 1.5px solid #B7BC94;
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f8f8ef;
  margin-bottom: 13px;
  width: 100%;
  outline: none;
  transition: border 0.15s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid var(--nature-green);
  box-shadow: 0 0 4px 2px #aec9ac4c;
}

label {
  font-size: 1rem;
  color: var(--nature-green);
  margin-bottom: 6px;
}

/* --------------- LEGAL (policy, rodo etc.) --------- */
.legal {
  background: var(--nature-sand);
  border-radius: var(--section-radius);
  margin-bottom: 60px;
  box-shadow: var(--shadow-card);
  padding: 40px 20px;
}
.legal h1 {
  color: var(--brand-primary);
  font-size:2rem;
}
.legal h2 {
  color: var(--nature-green);
  font-size:1.3rem;
  margin-top:18px;
}

/* -------------------- COOKIE BANNER --------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fffbe8;
  box-shadow: 0 -2px 14px rgba(60,82,68,0.13);
  z-index: 12000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 24px;
  border-radius: 22px 22px 0 0;
  font-size: 1rem;
  border-top: 1px solid #e7e0be;
  min-height: 70px;
  animation: cookieSlideIn 0.5s cubic-bezier(.34,1.62,.44,1) 0.05s both;
  box-sizing: border-box;
}
@media (max-width:650px){
  .cookie-banner {flex-direction: column; align-items: flex-start; gap:18px; padding:12px 10px;}
}
@keyframes cookieSlideIn {
  from {transform: translateY(120%); opacity:0;}
  to   {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  margin: 0; color: #163404;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 99px;
  font-weight: 700;
  padding: 9px 20px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  margin: 0;
  transition: background 0.13s, color 0.13s, box-shadow 0.12s;
}
.cookie-banner button.cookie-accept {
  background: var(--nature-green);
  color: #fff;
}
.cookie-banner button.cookie-accept:hover,
.cookie-banner button.cookie-accept:focus {
  background: var(--brand-primary);
  color: var(--brand-secondary);
}
.cookie-banner button.cookie-settings {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-banner button.cookie-settings:hover,
.cookie-banner button.cookie-settings:focus {
  background: var(--nature-green);
  color: #fff;
}
.cookie-banner button.cookie-reject {
  background: #fff;
  color: var(--nature-brown);
  border: 1px solid var(--nature-brown);
}
.cookie-banner button.cookie-reject:hover, .cookie-banner button.cookie-reject:focus {
  background: var(--nature-brown);
  color: #fff;
}

/* ------------------------ COOKIE MODAL --------------------- */
.cookie-modal {
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  background: rgba(55,76,49,0.28);
  z-index: 13000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.28s, visibility 0.28s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal .cookie-modal-content {
  background: #fffdfa;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(56,102,53,0.14);
  padding: 38px 34px 30px 34px;
  max-width: 420px;
  min-width: 320px;
  margin: 0 16px;
  position: relative;
  animation: fadeInPop 0.32s cubic-bezier(.47,1.85,.6,.91);
}
@keyframes fadeInPop {
  0% {transform: scale(0.91) translateY(50px); opacity: 0;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal h2{
  color: var(--nature-green);
  font-size: 21px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top:8px; right:10px;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: none;
  border-radius: 50%;
  width: 39px; height: 39px;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 13001;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: var(--nature-green);
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top:18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.cookie-category-toggle[disabled], .cookie-category-toggle[aria-checked='true'][disabled] {
  opacity: 0.6;
  pointer-events: none;
  color: #adb094;
}
.cookie-category-toggle {
  appearance: none;
  width: 32px;
  height: 18px;
  background: var(--nature-gray);
  border-radius: 11px;
  position: relative;
  outline: none;
  border: 1.5px solid #d7debf;
  cursor: pointer;
  transition: background 0.13s, border 0.13s;
}
.cookie-category-toggle:checked {
  background: var(--nature-green);
  border: 1.5px solid var(--nature-green);
}
.cookie-category-toggle::after {
  content: '';
  display: block;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1.5px 3px rgba(34,66,41,0.08);
  position: absolute;
  left: 1.5px; top: 1.5px;
  transition: left 0.18s;
}
.cookie-category-toggle:checked::after {
  left: 15px;
}

.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 28px;
}
.cookie-modal .cookie-accept, .cookie-modal .cookie-reject {
  padding: 10px 22px;
  font-size: 1rem;
  border-radius: 99px;
  border: none;
}

/* ------------------------ UTILITIES, MISC ------------------ */
::-webkit-scrollbar-thumb {background: #d4e3d6; border-radius: 8px;}
::-webkit-scrollbar {width: 8px; background: #f9f8f6;}

[tabindex]:focus, a:focus, button:focus {
  outline: var(--focus-outline);
  outline-offset: 1.5px;
}

@media (max-width: 600px) {
  .section, section, .legal {
    padding: 20px 2px;
    margin-bottom: 30px;
    border-radius: 13px;
  }
  .content-wrapper { gap: 12px; }
}

/*----------------------------------------
  ORGANIC DECOR: ORGANIC SHAPE BORDERS
----------------------------------------*/
.hero, .features, .testimonials, .services, .legal {
  box-shadow: 0 0 0 8px rgba(241,221,185,0.035), 0 12px 38px rgba(71,135,79,0.07);
  border-radius: 36px 99px 32px 38px / 42px 30px 64px 44px;
}
@media(max-width:550px){
  .hero, .features, .testimonials, .services, .legal { border-radius: 16px 58px 12px 22px / 20px 10px 28px 19px; }
}

/* END CSS */