/* CSS RESET & 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F6F1EC;
  color: #234116;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #38823a;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FF7C43;
  outline: none;
}

/* BRAND COLORS */
:root {
  --primary: #325C2D;
  --primary-darker: #234116;
  --secondary: #A5C799;
  --secondary-light: #e1efd8;
  --accent: #F6F1EC;
  --highlight: #FFE156;
  --fun-blue: #46B5F1;
  --fun-coral: #FF7C43;
  --fun-purple: #BC55E6;
  --white: #fff;
  --shadow: 0 3px 12px rgba(60,90,50,0.13);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', 'Georgia', serif;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.12;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.4rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.35rem;
  color: var(--fun-purple);
}
.subheadline {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 18px;
}
p, li {
  font-size: 1.08rem;
  color: #234116;
}
strong {
  color: var(--primary);
  font-weight: bold;
}

/* FUN FONTS & DYNAMIC TOUCHES */
body {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.hero h1 {
  font-family: 'Lora', serif;
  color: var(--fun-coral);
  text-shadow: 1px 3px 2px rgba(255,193,112, 0.08);
}

/* CONTAINER & CONTENT WRAPPING */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 10px;
}

/* HEADER & NAVIGATION */
header {
  background: var(--white);
  padding: 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 200;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  max-height: 56px;
  margin-right: 12px;
  animation: floatLogo 2.2s cubic-bezier(0.1,0.8,0.5,1.2) infinite alternate;
}
@keyframes floatLogo {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px) scale(1.03) rotate(-2deg); }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-size: 1.08rem;
  font-family: 'Lora', serif;
  color: var(--primary);
  font-weight: bold;
  border-radius: var(--radius-sm);
  padding: 7px 16px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary-light);
  color: var(--fun-coral);
}
.cta-button {
  background: var(--fun-coral);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 30px;
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(255, 124, 67, 0.17);
  cursor: pointer;
  letter-spacing: 1.5px;
  transition: background 0.2s, transform 0.18s, box-shadow 0.22s;
  position: relative;
  z-index: 3;
  margin-left: 14px;
}
.cta-button:hover, .cta-button:focus {
  background: var(--fun-purple);
  color: var(--highlight);
  transform: translateY(-3px) scale(1.03) rotate(-1deg);
  box-shadow: 0 6px 28px 0 rgba(186,60,110,0.20);
  outline: none;
}

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  background: var(--highlight);
  color: var(--primary);
  border: none;
  font-size: 2.35rem;
  padding: 4px 18px 3px 10px;
  margin-left: 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  z-index: 1010;
  box-shadow: 0 2px 12px rgba(180,180,20,0.06);
  transition: background 0.22s, color 0.21s, transform 0.21s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--fun-purple);
}
.mobile-menu-toggle:hover {
  background: var(--fun-blue);
  color: var(--white);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--accent);
  transform: translateX(-110vw);
  transition: transform 0.33s cubic-bezier(0.53, 0.2, 0.24, 1);
  z-index: 5020;
  box-shadow: 0 0 200px 8px rgba(51,92,45,0.10);
  padding: 30px 36px 24px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--fun-purple);
  color: var(--white);
  font-size: 2rem;
  border: none;
  border-radius: 36px;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 26px;
  padding: 8px 18px;
  box-shadow: 0 2px 10px 0 rgba(188,85,230,0.17);
  transition: background 0.18s;
  z-index: 5105;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--fun-coral);
  color: var(--highlight);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: 'Lora', serif;
  color: var(--primary);
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 11px 20px;
  background: var(--secondary-light);
  margin-right: 0;
  margin-bottom: 6px;
  letter-spacing: 1px;
  transition: background 0.14s, color 0.14s, transform 0.17s;
  box-shadow: 0 3px 15px rgba(176,220,110,0.10);
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--fun-coral);
  color: var(--white);
  outline: none;
  transform: scale(1.07) rotate(-1deg);
}

/* RESPONSIVE NAVIGATION */
@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-button {
    margin-left: 8px;
    padding: 10px 22px;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .mobile-menu {
    padding: 14px 6vw 14px 6vw;
  }
  .mobile-nav a {
    font-size: 1.13rem;
    padding: 10px 14px;
  }
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(95deg, var(--secondary-light), var(--fun-blue) 33%, var(--highlight) 100%);
  min-height: 350px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 44px;
  padding: 30px 0 40px 0;
  position: relative;
  overflow: hidden;
  animation: heroPulse 8s infinite alternate cubic-bezier(.55,.03,.1,.97);
}
@keyframes heroPulse {
  0% { filter: brightness(1) saturate(1); }
  100% { filter: brightness(1.08) saturate(1.25); }
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 2.35rem;
  color: var(--fun-purple);
}

/* SECTION WRAPPING, SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  section {
    padding: 32px 7vw;
    margin-bottom: 48px;
  }
}
@media (max-width: 600px) {
  section {
    border-radius: var(--radius-md);
    padding: 24px 4vw;
    margin-bottom: 30px;
  }
}

/* FLEX LAYOUTS (MANDATED)
 * Only display:flex/flex-wrap/gap etc.
 */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--secondary-light);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 rgba(71,143,80,0.10);
  padding: 30px 20px 23px 20px;
  margin-bottom: 20px;
  min-width: 230px;
  flex: 1 1 245px;
  transition: transform 0.18s, box-shadow 0.2s, background 0.22s;
  position: relative;
}
.feature-item img {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 2px 5px rgba(75,124,45,0.10));
  animation: swingIcon 2.3s infinite linear alternate;
}
@keyframes swingIcon {
  0% { transform: rotate(-8deg); }
  100% { transform: rotate(7deg); }
}
.feature-item:hover {
  background: var(--fun-blue);
  color: var(--white);
  box-shadow: 0 8px 38px 0 rgba(71,143,80,0.20);
  transform: scale(1.045) rotate(-1deg);
}
.feature-item:hover h3, .feature-item:hover p {
  color: var(--white);
}
.feature-item:hover img {
  filter: brightness(1.5) drop-shadow(0 1.5px 7px rgba(255,255,255,0.14));
}
.feature-item h3 {
  color: var(--fun-purple);
  font-size: 1.25rem;
  font-family: 'Lora', serif;
}
.feature-item p {
  font-size: 1.04rem;
}

/* FLEX/RESPONSIVE ADJUSTMENTS */
@media (max-width: 900px){
  .feature-grid {
    gap: 22px;
  }
  .feature-item {
    flex: 1 1 100%;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* CARD CONTAINER & CARD LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  position: relative;
  background: var(--accent);
  padding: 30px 22px;
  min-width: 270px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  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;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 20px;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 44px 28px;
  margin-bottom: 55px;
  animation: bgWave 12s linear infinite alternate;
}
@keyframes bgWave {
  0% { background-color: var(--secondary); }
  100% { background-color: var(--fun-blue); }
}
.testimonials .content-wrapper {
  gap: 36px;
}
.testimonials h2 {
  color: var(--fun-purple);
  text-align: center;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 22px 20px 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 36px 0 rgba(80,90,90,0.13);
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  font-size: 1rem;
  color: var(--primary);
  transition: transform 0.18s, box-shadow 0.22s;
}
.testimonial-card p {
  font-size: 1.14rem;
  color: var(--primary-darker);
}
.testimonial-card .customer-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
  width: 100%;
  text-align: right;
  font-size: 0.96rem;
  color: var(--fun-coral);
}
.testimonial-card .customer-meta span {
  font-size: 1.1rem;
  color: #FFD43B;
  letter-spacing: 1.2px;
  font-family: 'Lora', serif;
}
.testimonial-card .customer-meta strong {
  color: var(--primary);
}
.testimonial-card:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 16px 48px 0 rgba(44,108,84,0.19);
  background: var(--secondary-light);
}

@media (max-width: 900px){
  .testimonial-list {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 180px;
    max-width: 100%;
  }
}

/* CONTACT SHORT & FOOTER */
.contact-short {
  background: var(--fun-blue);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px 0 rgba(70,181,241,0.10);
  margin-bottom: 50px;
}
.contact-short h2,
.contact-short p,
.contact-short li,
.contact-short a {
  color: var(--white);
}
.contact-short ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 14px;
}
.contact-short li img {
  vertical-align: middle;
  margin-right: 7px;
  width: 24px;
  height: 24px;
}
.contact-short .cta-button {
  background: var(--highlight);
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(255, 225, 86, 0.14);
}
.contact-short .cta-button:hover {
  background: var(--fun-purple);
  color: var(--highlight);
}

footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0;
  font-size: 1rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin-top: 35px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: var(--secondary-light);
  font-size: 1.09rem;
  font-family: 'Lora', serif;
  font-weight: bold;
  border-radius: var(--radius-sm);
  padding: 7px 11px;
  margin-right: 4px;
  transition: background 0.18s, color 0.14s;
}
.footer-nav a:hover {
  background: var(--fun-coral);
  color: var(--white);
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact li {
  color: var(--white);
}
.footer-contact li img {
  vertical-align: middle;
  margin-right: 10px;
  width: 22px;
  height: 22px;
}
footer img {
  max-height: 48px;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
  }
}

/* SECTION & LAYOUT SPACING (MANDATORY) */
.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;
}

/* Miscellaneous Utility Classes */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 20px !important; }
.mb-2 { margin-bottom: 20px !important; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--fun-coral);
  color: var(--white);
  font-size: 1.05rem;
  z-index: 9900;
  box-shadow: 0 -6px 32px 2px rgba(120,40,22,0.10);
  padding: 22px 20px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  transition: transform 0.38s cubic-bezier(.8,.03,.1,1);
  transform: translateY(0);
  gap: 26px;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner-text {
  flex: 1 1 300px;
  margin-right: 18px;
  color: var(--white);
}
.cookie-banner-btns {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  border-radius: 22px;
  padding: 9px 22px;
  font-size: 1.03rem;
  font-family: 'Lora', serif;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(255, 124, 67, 0.08);
  transition: background 0.16s, color 0.13s, transform 0.18s;
}
.cookie-btn.accept {
  background: var(--highlight);
  color: var(--primary);
  margin-right: 2px;
}
.cookie-btn.accept:hover {
  background: var(--fun-blue);
  color: var(--white);
}
.cookie-btn.reject {
  background: var(--primary);
  color: var(--white);
}
.cookie-btn.reject:hover {
  background: var(--fun-purple);
  color: var(--highlight);
}
.cookie-btn.settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-btn.settings:hover {
  background: var(--fun-purple);
  color: var(--white);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 8px;
  }
  .cookie-banner-text {
    margin-right: 0;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-bg {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(60,80,30,0.25);
  backdrop-filter: blur(2px);
  z-index: 10000;
}
.cookie-modal-bg.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px 34px 30px 35px;
  width: 96vw;
  max-width: 420px;
  animation: popupScale 0.36s cubic-bezier(.8,.03,.1,.87);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
@keyframes popupScale {
  0% { transform: scale(0.7) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.cookie-category label {
  font-weight: bold;
  font-size: 1.08rem;
  color: var(--fun-coral);
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--fun-coral);
  width: 21px;
  height: 21px;
  margin-right: 7px;
}
.cookie-category .always {
  font-size: 1.06rem;
  color: var(--fun-purple);
  font-style: italic;
  padding-left: 7px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 11px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  font-size: 1.01rem;
  padding: 7px 16px;
}
.cookie-modal-close {
  position: absolute;
  right: 12px;
  top: 13px;
  font-size: 1.3rem;
  background: none;
  color: var(--fun-purple);
  border: none;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--fun-coral);
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 22px 4vw 20px 5vw;
    max-width: 98vw;
  }
  .cookie-modal-actions {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
}

/* Microanimations for fun & playful UI */
.cta-button, .feature-item, .testimonial-card, .card, .mobile-nav a {
  transition: box-shadow 0.18s, transform 0.19s, background 0.22s, color 0.16s;
}
.cta-button:active, .feature-item:active, .testimonial-card:active, .mobile-nav a:active {
  transform: scale(0.96);
}

/* Accent color underlines for playful dynamic effect */
h2, h3 {
  position: relative;
}
h2::after, h3::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 32px;
  height: 4px;
  background: var(--highlight);
  border-radius: 3px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
  animation: underlinePulse 2.7s infinite alternate ease-in-out;
}
@keyframes underlinePulse {
  0% { width: 20px; opacity: 0.5; }
  100% { width: 45px; opacity: 0.85; }
}

/* Animations for focus-visible */
:focus-visible {
  outline: 2px solid var(--fun-blue);
  outline-offset: 3px;
}

/* SCROLLBAR STYLING FOR FUN/DYNAMIC */
::-webkit-scrollbar {
  width: 11px;
  background: var(--secondary-light);
}
::-webkit-scrollbar-thumb {
  background: var(--fun-coral);
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--fun-purple);
}

/* SELECT & INPUT (if present) */
input, textarea, select {
  font: inherit;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--secondary);
  padding: 8px 14px;
  margin-bottom: 16px;
  background: var(--accent);
  color: var(--primary);
  transition: box-shadow 0.13s, border 0.11s;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--fun-coral);
  background: var(--white);
}

/* ACCENT LIST BULLETS */
ul li::before {
  content: "\2022 ";
  color: var(--fun-coral);
  margin-right: 6px;
  font-size: 1.3em;
  line-height: 0.7;
}
.text-section ul li::before {
  color: var(--fun-blue);
}
.footer-contact ul li::before {
  content: "";
  margin-right: 0;
}

/* MEDIA QUERIES: RESPONSIVE LAYOUTS */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 14px;
  }
  .content-wrapper {
    gap: 18px;
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }
  body {
    font-size: 0.99rem;
  }
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
}

/* PRINT STYLE RESET */
@media print {
  *, *::before, *::after { color: #000 !important; background: none !important; box-shadow: none !important; }
  a { text-decoration: underline !important; color: #000 !important; }
  header, .mobile-menu, .cookie-banner, .cookie-modal-bg, footer { display: none !important; }
  section, main, .container { box-shadow: none !important; }
}

/* --- END --- */
