/* =======================================
   CSS RESET & NORMALIZE
======================================= */
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,
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 { background: #F4F6FA; color: #27362D; }

/* =======================================
   BRAND COLOR PALETTE (Nature Organic)
   - Dark Green: #1D472A
   - Earth Brown: #9B8770
   - Light Cream: #F4F6FA
   - Green Accent: #43897A
   - Brand Blue: #114B80
   - Brand Yellow: #EFD960
======================================= */
:root {
  --primary: #114B80;
  --secondary: #EFD960;
  --accent: #43897A;
  --natural-bg: #F4F6FA;
  --earth: #9B8770;
  --dark-green: #1D472A;
  --brand-blue: #114B80;
  --brand-yellow: #EFD960;
  --shadow: 0 2px 14px rgba(29, 71, 42, 0.08), 0 1.5px 8px rgba(67, 137, 122, 0.06);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

@font-face {
  font-family: 'Montserrat';
  font-display: swap;
  font-weight: 700;
  src: local('Montserrat Bold'), url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-display: swap;
  font-weight: 400;
  src: local('Open Sans Regular'), url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');
}

body {
  font-family: var(--font-body);
  background: var(--natural-bg);
  color: #27362D;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}

img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: var(--primary); text-decoration: none; transition: color 0.18s; }
a:hover, a:focus { color: var(--accent); }

/* =======================================
   TYPOGRAPHY SCALE & ORGANIC HEADINGS
======================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 16px;
  line-height: 1.13;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.6rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; }
h4 { font-size: 1.15rem; }
@media (max-width: 450px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.4rem; }
}

.text-section ul,
.content-wrapper ul,
.text-section ol,
.content-wrapper ol {
  font-size: 1rem;
  margin-top: 8px;
  margin-bottom: 16px;
  padding-left: 24px;
}
.text-section ul li,
.text-section ol li {
  margin-bottom: 8px;
  position: relative;
  line-height: 1.6;
}
.text-section ul li:before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 10px;
  margin-bottom: 2px;
}

/* =======================================
   CONTAINERS & LAYOUT SPACING (Mobile First)
======================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
  position: relative;
  min-width: 240px;
}
.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;
  gap: 12px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 24px;
  border-left: 6px solid var(--accent);
  font-size: 1.1rem;
  max-width: 520px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px 18px 24px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 24px;
  border-bottom: 5px solid var(--secondary);
  transition: box-shadow 0.16s, transform 0.18s;
}
.feature-item img { width: 38px; height: 38px; }
.feature-item:hover,
.feature-item:focus {
  box-shadow: 0 7px 22px rgba(67, 137, 122, 0.11);
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}

/* Feature grid flex rules */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
/* Service list flex rules */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 26px 18px 20px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 24px;
  border-bottom: 5px solid var(--accent);
  transition: box-shadow 0.16s, transform 0.18s;
}
.service-item img { width: 38px; height: 38px; }
.service-item:hover,
.service-item:focus {
  box-shadow: 0 7px 22px rgba(17,75,128,0.14);
  transform: translateY(-2px) scale(1.03) rotate(1.5deg);
}

/* Process steps flex layout */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.process-step {
  background: #fff;
  border-radius: 18px;
  padding: 24px 14px 18px 14px;
  box-shadow: var(--shadow);
  min-width: 180px;
  flex: 1 1 180px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-left: 5px solid var(--secondary);
  transition: box-shadow 0.17s, transform 0.17s;
}
.process-step img { width:32px; height:32px; }
.process-step:hover,
.process-step:focus {
  box-shadow: 0 9px 28px rgba(239, 217, 96, 0.09);
  transform: scale(1.04) translateY(-2px);
}

/* Statistics Section */
.statistics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 24px 14px 18px 14px;
  min-width: 120px;
  flex: 1 1 120px;
  margin-bottom: 18px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
}
.stat-label {
  font-size: 1rem;
  color: var(--dark-green);
}

.infographic { margin-top: 32px; text-align: center; }

/* CTA Banner */
.cta-btn, .cta-nav-btn {
  display: inline-block;
  font-family: var(--font-display);
  background: var(--accent);
  color: #fff;
  font-size: 1.15rem;
  padding: 14px 32px;
  border-radius: 24px 24px 22px 22px / 18px 18px 32px 32px;
  box-shadow: 0 2px 11px rgba(67, 137, 122, 0.10);
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.14s, box-shadow 0.21s;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.015em;
  outline: 0;
}
.cta-btn:hover, .cta-btn:focus, .cta-nav-btn:hover, .cta-nav-btn:focus {
  background: var(--primary);
  transform: translateY(-1px) scale(1.04);
}
.cta-nav-btn {
  margin-left: 24px;
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 20px 16px 20px 24px / 16px 14px 18px 24px;
  box-shadow: 0 1px 5px rgba(17, 75, 128, .10);
  font-size: 1rem;
}
.cta-nav-btn:hover, .cta-nav-btn:focus {
  background: var(--accent);
}

/* =======================================
   HEADER & NAVIGATION
======================================= */
header {
  background: linear-gradient(to right, #fdfaf4 40%, #f4f6fa 100%);
  box-shadow: 0 3px 12px rgba(29,71,42,0.07);
  position: sticky;
  top: 0; left: 0; width: 100%;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
header nav a, .footer-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--primary);
  font-size: 1rem;
  padding: 7px 10px;
  border-radius: 17px;
  transition: background .15s, color .14s;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--dark-green);
}
header nav a.active { background: var(--accent); color: #fff; }
header img { height: 44px; }

/* --- Mobile Menu Toggle (Burger) --- */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  font-size: 2rem;
  padding: 7px 16px 7px 18px;
  border-radius: 18px;
  cursor: pointer;
  color: var(--primary);
  line-height: 1;
  margin-left: 18px;
  display: none;
  transition: background 0.17s, color 0.14s;
  z-index: 220;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--accent);
  color: #fff;
}

/* --- Mobile Menu Panel --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(29,71,42,0.91);
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.78,.19,.33,1.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2100;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0vw);
}
.mobile-menu-close {
  background: #fff;
  color: var(--primary);
  border: none;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 26px 18px 8px auto;
  padding: 6px 18px 6px 14px;
  border-radius: 18px;
  cursor: pointer;
  z-index: 2200;
  transition: background 0.16s, color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--dark-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 auto;
  width: 100%;
  align-items: flex-start;
  margin-top: 9vh;
  padding: 0 32px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #fff;
  padding: 14px 0;
  /* big touch area */
  width: 100%;
  border-radius: 11px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  margin-bottom: 4px;
  transition: background 0.16s, color 0.12s;
  text-align: left;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}

/* --- Hide DESKTOP nav on mobile, show burger --- */
@media (max-width: 960px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 961px) {
  .mobile-menu { display: none !important; }
}
/* --- main nav at mobile --- */
@media (max-width: 760px) {
  .container, body, .section { padding-left: 9px; padding-right: 9px; }
  .content-wrapper { max-width: 100%; gap: 18px; }
}

/* =======================================
   MAIN CONTENT PATTERNS
======================================= */
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
}
.text-section .cta-btn { margin-top: 12px; }

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  margin: 26px 0 24px 0;
  overflow: hidden;
  font-size: 1rem;
}
.comparison-table th, .comparison-table td {
  padding: 14px 12px;
  text-align: left;
}
.comparison-table thead tr {
  background: var(--accent);
  color: #fff;
}
.comparison-table tbody tr:nth-child(odd) {
  background: #F9F5EA;
}
.comparison-table tbody tr:nth-child(even) {
  background: #fff;
}
.comparison-table th {
  font-size: 1.09rem;
  font-family: var(--font-display);
}
.comparison-table td {
  border-bottom: 1px solid #eae1ce;
}
@media (max-width:480px){
  .comparison-table th, .comparison-table td { padding: 8px 4px; font-size: 0.92rem; }
}

.contact-info ul {
  list-style: none;
  padding-left: 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  font-size: 1rem;
}

.map-embed {
  width: 100%;
  max-width: 400px;
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* =======================================
   FOOTER STYLES
======================================= */
footer {
  background: #eae6df url('../assets/nature-texture-footer.jpg');
  color: var(--dark-green);
  padding: 46px 0 24px 0;
  border-top-left-radius: 56px 12px;
  box-shadow: 0 -4px 40px rgba(67,137,122,0.10);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-nav a {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.01em;
  background: transparent;
  border-radius: 12px;
  padding: 4px 9px;
  transition: background 0.11s, color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--secondary);
  color: var(--dark-green);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-size: 0.99rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img { width: 18px; height: 18px; }
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  font-size: 0.95rem;
  opacity: 0.88;
}
.footer-brand img { height: 30px; }
@media (max-width: 800px){
  footer .container { padding: 0 9px; }
  .footer-contact, .footer-nav { gap: 15px; }
}
@media (max-width: 580px){
  .footer-contact { flex-direction: column; gap: 10px; align-items: flex-start; }
  .footer-brand { flex-direction: column; gap: 5px; align-items: flex-start; }
}

/* =======================================
   COOKIE CONSENT BANNER & MODAL
======================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4800;
  background: #fffbe1;
  color: var(--dark-green);
  padding: 30px 18px 20px 18px;
  box-shadow: 0 -2px 24px rgba(110, 143, 41, 0.09);
  border-top: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  animation: cookieBannerIn 0.8s cubic-bezier(.06,1.43,.54,1) backwards;
  font-size: 1rem;
  max-width: 96vw;
  margin: 0 auto;
  border-radius: 14px 14px 0 0;
}
@keyframes cookieBannerIn {
  from { transform: translateY(80px); opacity:0; }
  to { transform: translateY(0px); opacity: 1; }
}
.cookie-banner .banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.cookie-banner button {
  min-width: 116px;
  background: var(--brand-blue);
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-family: var(--font-display);
  border-radius: 18px;
  font-size: 1rem;
  margin-right: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, transform .15s;
}
.cookie-banner button.cookie-reject {
  background: #fff;
  color: var(--earth);
  border: 1.4px solid var(--earth);
}
.cookie-banner button.cookie-settings {
  background: var(--secondary);
  color: var(--dark-green);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 48%;
  transform: translate(-50%,-50%) scale(1.01);
  background: #f9f8f3;
  border-radius: 18px;
  box-shadow: 0 10px 54px rgba(42,46,6,0.15), 0 4px 25px rgba(67,137,122,0.11);
  z-index: 6000;
  min-width: 310px;
  max-width: 97vw;
  padding: 34px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 1;
  animation: cookieModalIn 0.32s cubic-bezier(.42,1.43,.54,1) backwards;
}
@keyframes cookieModalIn {
  from { transform: translate(-50%,-40%) scale(0.9); opacity:0; }
  to { transform: translate(-50%,-50%) scale(1.01); opacity:1; }
}
.cookie-modal h2 {
  font-size:1.4rem; margin-bottom:8px;
}
.cookie-modal label {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--accent);
  width: 20px; height: 20px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.cookie-modal button {
  font-family: var(--font-display);
  font-size: 1rem;
  border: none;
  background: var(--brand-blue);
  color: #fff;
  border-radius: 16px;
  padding: 9px 22px;
  font-weight: 600;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-modal button.cancel-btn {
  background: #fff;
  color: var(--earth);
  border: 1.4px solid var(--earth);
}
.cookie-modal button:hover,
.cookie-modal button:focus {
  background: var(--accent);
  color: #fff;
}
.cookie-modal .category-desc {
  font-size: 0.97rem;
  margin-bottom: 12px;
  opacity: 0.85;
  margin-left: 12px;
}
.cookie-modal .essential {
  color: var(--accent);
  font-weight: 700;
}
.cookie-modal .modal-close {
  background: transparent;
  border: none;
  color: var(--earth);
  font-size: 1.8rem;
  position: absolute;
  right: 18px;
  top: 10px;
  cursor: pointer;
}

/* =======================================
   GENERAL FORMS, TABLES, & INTERACTIONS
======================================= */
input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 9px 12px;
  border: 1.2px solid #c7c2b9;
  border-radius: 12px;
  margin-bottom: 14px;
  background: #fff;
  color: var(--dark-green);
  transition: border 0.18s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  outline: none;
}
button {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* =======================================
   ANIMATIONS & MICRO-INTERACTIONS
======================================= */
.card, .feature-item, .service-item, .process-step, .stat, .testimonial-card {
  transition: box-shadow .18s, transform .17s, background .14s, border .18s, filter .18s;
}
a, button, .cta-btn, .cta-nav-btn {
  transition: color 0.16s, background 0.13s, box-shadow 0.16s, border 0.13s, transform 0.16s;
  outline: none;
}

/* =======================================
   RESPONSIVE STYLES (Mobile First)
======================================= */
@media (max-width: 900px) {
  .feature-grid, .service-list, .process-steps, .statistics {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .service-item, .process-step, .stat {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
  }
  .card-container { flex-direction: column; gap: 18px; }
}
@media (max-width:760px){
  .section { padding: 25px 5px; margin-bottom: 44px; }
  .container { padding-left: 0; padding-right: 0; }
  .content-wrapper { padding:0 5px; gap: 12px; }
  .testimonial-card, .feature-item, .service-item, .process-step, .stat {
    border-radius: 12px;
    padding: 15px 7px;
  }
}
@media (max-width:600px){
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width:450px){
  h1 { font-size:1.40rem; }
  h2 { font-size:1.10rem; }
  .section { padding: 17px 3px; margin-bottom: 25px; }
  .card, .testimonial-card, .feature-item, .service-item, .process-step, .stat {
    border-radius: 9px;
    padding: 8px 3px;
    min-width: 0;
  }
}

/* =======================================
   NATURE-INSPIRED DECORATIVE ELEMENTS
======================================= */
.card:after, .feature-item:after, .testimonial-card:after, .service-item:after {
  content: '';
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 36px; height:20px;
  background: url('../assets/nature-shape-organic.svg') no-repeat center;
  opacity: 0.09;
  z-index: 1;
  pointer-events: none;
}

/* Organic shape for hero sections */
.section > .container:first-child {
  position: relative;
}
.section > .container:first-child:before {
  content: '';
  position: absolute;
  left: -35px; top: -45px;
  width: 110px; height: 80px;
  background: url('../assets/nature-shape-hero.svg') no-repeat center;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}

/* =======================================
   SPECIAL ACCESSIBILITY & CONTRAST
======================================= */
.testimonial-card {
  background: #fff;
  color: #222;
  border-left: 6px solid var(--earth);
  box-shadow: 0 2.5px 9px rgba(67, 137, 122, 0.12);
  font-size: 1.07rem;
}
.testimonial-card p {
  color: #25322B;
  font-style: italic;
  margin-bottom: 4px;
}
.testimonial-card span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.91;
}

/* =======================================
   Z-INDICES & STACKING
======================================= */
header { z-index: 1000; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 4800; }
.cookie-modal { z-index: 6000; }

/* =======================================
   VISUAL DETAILS & NATURE ORGANIC
======================================= */
.card, .feature-item, .service-item, .process-step, .stat, .testimonial-card {
  background: linear-gradient(100deg, #fff 75%, #eaf2ed 120%);
  border-radius: 26px 38px 24px 22px / 20px 40px 28px 16px;
  box-shadow: var(--shadow);
}

/* End of stylesheet */
