/* --- 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, 
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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F6F2ED;
  min-height: 100vh;
  color: #25604B;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #25604B;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #B88C4A;
}
ul, ol {
  list-style: none;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
strong {
  font-weight: bold;
}

/* --- BRAND COLORS & FONTS --- */
:root {
  --primary: #25604B;
  --secondary: #F6F2ED;
  --white: #FFFFFF;
  --accent: #B88C4A;
  --accent2: #8A6400;
  --info-pink: #F7C8E0;
  --info-blue: #A4DDEE;
  --info-yellow: #FFE46B;
  --info-green: #B5E7B1;
  --shadow: 0 2px 16px 0 rgba(55, 75, 40, 0.10), 0 1.5px 6px 0 rgba(96, 66, 8, 0.10);
  --radius-card: 20px;
  --radius-btn: 16px;
  --radius-section: 28px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

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

/* --- TYPOGRAPHY SCALE (playful, energetic, fun) --- */
h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--primary);
  margin-bottom: 20px;
  text-shadow: 0 4px 22px #fff9, 0 2px 6px #b2c7ae33;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent2);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--primary);
}
h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent2);
}
p, li, address, div {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
}
ul, ol {
  margin-bottom: 10px;
}

/* --- LAYOUT STRUCTURE --- */
.container {
  max-width: 1100px;
  padding: 0 18px;
  margin: 0 auto;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius-section);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- FLEXBOX MANDATORY LAYOUTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--secondary);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 20px 20px 24px;
  min-width: 250px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .24s, transform .24s;
}
.card:hover {
  box-shadow: 0 4px 28px 0 rgba(77,36,3,.17), 0 6px 32px 0 rgba(185,140,74, .09);
  transform: translateY(-6px) scale(1.04) rotate(-1deg);
}
.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;
  min-width: 280px;
  flex: 1 1 250px;
  background: var(--info-pink);
  border-radius: var(--radius-card);
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 #f7c8e066;
  position: relative;
  flex-direction: column;
}
.testimonial-card p {
  color: #1a2e27;
  font-size: 1.05rem;
  font-family: var(--font-body);
}
.testimonial-card strong {
  color: var(--accent2);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  align-self: flex-end;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* --- BUTTONS & CTAs --- */
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 38px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: var(--radius-btn);
  background: linear-gradient(90deg, #B5E7B1 0%, #FFE46B 100%);
  color: var(--primary);
  box-shadow: 0 2px 10px 0 #b5e7b13b;
  border: 2px solid var(--accent2);
  margin-top: 10px;
  cursor: pointer;
  position: relative;
  transition: background .2s, color .17s, box-shadow .26s, transform .14s;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #FFE46B 0%, #A4DDEE 100%);
  color: var(--accent2);
  box-shadow: 0 3px 20px 0 rgba(255,228,107,0.13);
  transform: scale(1.05) rotate(-1deg);
}
.cta-secondary {
  background: var(--accent2);
  color: var(--white);
  border: 2px solid var(--primary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--accent);
  color: var(--primary);
}

/* --- HEADER / NAVIGATION --- */
header {
  width: 100%;
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 3px 20px 0 #67858613;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 32;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
header > a img {
  max-height: 56px;
  margin-right: 17px;
  aspect-ratio: 3/1.1;
}
nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-display);
}
nav a {
  display: inline-block;
  padding: 6px 0 6px 2px;
  font-weight: 700;
  font-size: 1.04rem;
  border-radius: 8px;
  color: var(--primary);
  background: transparent;
  transition: background .16s, color .16s;
}
nav a:hover, nav a:focus {
  background: #B5E7B1;
  color: var(--accent2);
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: var(--primary);
  background: var(--info-yellow);
  border-radius: 16px;
  box-shadow: 0 1px 6px 0 #FFE46B44;
  border: none;
  margin-left: 16px;
  transition: background .2s, box-shadow .15s, transform .2s;
  z-index: 50;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #A4DDEE;
  color: var(--accent2);
  box-shadow: 0 2px 12px 0 #A4DDEE66;
  transform: scale(1.12) rotate(-5deg);
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(246,242,237,0.98);
  z-index: 900;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.8,.09,0,1.16);
  box-shadow: -3px 0 22px 0 #B5E7B144;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--accent2);
  background: var(--accent);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin: 16px 16px 0 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .17s, color .17s, transform .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--info-pink);
  color: var(--primary);
  transform: scale(1.11) rotate(12deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100vw;
  padding: 30px 0 0 0;
  min-height: 80vh;
  gap: 10px;
}
.mobile-nav a {
  color: var(--primary);
  padding: 18px 48px 18px 32px;
  font-size: 1.3rem;
  font-family: var(--font-display);
  background: var(--info-blue);
  border-bottom: 2px solid #b88c4a18;
  margin: 0;
  letter-spacing: -0.2px;
  border-radius: 14px;
  transition: background .17s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--white);
}

@media (min-width: 950px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 949px) {
  header nav, header .cta-primary {
    display: none !important;
  }
}

/* --- MAIN & SECTION --- */
main {
  padding-top: 28px;
  padding-bottom: 28px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius-section);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 600px) {
  section, .section {
    padding: 22px 7px;
    border-radius: 16px;
  }
}

/* --- SERVICE SUMMARY & DETAIL CARDS --- */
.service-summary, .service-detail {
  background: var(--info-green);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 14px 0 #B5E7B155;
  padding: 24px 18px 16px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 210px;
}
.service-summary h3, .service-detail h2 {
  font-size: 1.12rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-summary strong, .service-detail strong {
  font-size: 1rem;
  color: var(--accent2);
  font-family: var(--font-display);
}
.service-summary p, .service-detail p {
  font-family: var(--font-body);
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--info-yellow);
  border-radius: var(--radius-card);
  box-shadow: 0 1px 7px 0 #ffe46b68;
  padding: 19px 23px;
  cursor: pointer;
  margin-bottom: 16px;
  transition: box-shadow .18s, transform .16s;
}
.faq-item h2 {
  font-size: 1.1rem;
  color: var(--accent2);
  margin-bottom: 7px;
  letter-spacing: -.2px;
}
.faq-item:hover, .faq-item:focus {
  box-shadow: 0 4px 14px #FFE46B55;
  transform: scale(1.03) rotate(1.5deg);
}
.faq-item div p {
  color: var(--primary);
  font-size: 1rem;
}

/* --- FOOTER --- */
footer {
  display: flex;
  flex-direction: column;
  background: var(--primary);
  color: var(--white);
  padding: 32px 0 20px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
footer nav a {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.99rem;
  border-radius: 7px;
  padding: 4px 8px;
  background: transparent;
  transition: background .13s, color .12s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
.footer-contact address, .footer-contact div {
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 5px;
  font-style: normal;
}
.footer-contact a {
  color: var(--info-yellow);
}
@media (max-width: 800px) {
  footer .container,
  .footer-contact{
    gap: 10px;
  }
}

/* --- UNIQUE TEXT-IMAGE SECTION (if used) --- */
.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: flex-start;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* --- COOKIES CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--info-yellow);
  color: var(--accent2);
  font-family: var(--font-body);
  font-size: 1rem;
  box-shadow: 0 -8px 44px #FFE46B44, 0 -2px 12px #B5E7B122;
  padding: 18px 24px;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  opacity: 1;
  gap: 16px;
  animation: cookie-slidein 0.62s cubic-bezier(.72,-0.14,0,1.12);
}
@keyframes cookie-slidein {
  from { transform: translateY(100%); opacity: 0.1; } to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 140px;
  margin-right: 14px;
  font-size: 1rem;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner__button {
  font-family: var(--font-display);
  padding: 7px 20px;
  border-radius: var(--radius-btn);
  border: none;
  font-weight: 700;
  font-size: 1.08rem;
  background: var(--accent2);
  color: var(--white);
  cursor: pointer;
  transition: background .17s, color .10s, transform .13s;
  margin-right: 7px;
  box-shadow: 0 1px 4px #b88c4a33;
}
.cookie-banner__button:focus,
.cookie-banner__button:hover {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.07) rotate(-2deg);
}
.cookie-settings-btn {
  background: var(--primary);
  color: var(--info-yellow);
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--accent);
  color: var(--primary);
}

/* --- COOKIES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1999;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(36,96,75, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: cookie-modal-fade .4s cubic-bezier(.8,.09,0,1.16);
}
@keyframes cookie-modal-fade {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 6px 48px #25604b13, 0 2px 14px #B5E7B155;
  padding: 38px 28px 30px 28px;
  max-width: 420px;
  width: 90vw;
  position: relative;
  font-family: var(--font-body);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-pop .38s cubic-bezier(.88,-0.3,.12,1.2);
}
@keyframes cookie-modal-pop {
  from { transform: scale(.7) translateY(90px); opacity: .46; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.7rem;
  color: var(--accent2);
  background: none;
  border: none;
  transition: color .13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--accent);
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  padding: 12px 10px;
  border-radius: 11px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--info-blue);
  margin-bottom: 7px;
  gap: 12px;
}
.cookie-category span {
  flex: 1;
  color: var(--primary);
}
.cookie-category .cookie-toggle {
  border: 2px solid var(--accent2);
  background: var(--accent);
  border-radius: 99px;
  width: 38px;
  height: 22px;
  margin-left: 8px;
  position: relative;
  cursor: pointer;
  appearance: none;
  outline: none;
  transition: background .16s;
}
.cookie-category .cookie-toggle:checked {
  background: var(--accent2);
  border-color: var(--primary);
}
.cookie-category .cookie-toggle::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 15px;
  height: 15px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .22s cubic-bezier(.89,-0.17,.24,1.08); 
  box-shadow: 0 1px 2px #00000009;
}
.cookie-category .cookie-toggle:checked::before {
  transform: translateX(13px);
}
.cookie-category.essential {
  opacity: 0.60;
  pointer-events: none;
}

/* --- MAP LOCATION block and CONTACT INFO --- */
.contact-info, .map-location {
  margin-top: 17px;
  background: var(--info-blue);
  border-radius: 14px;
  padding: 22px 20px 14px 22px;
  box-shadow: 0 1px 18px 0 #A4DDEE23;
  color: var(--primary);
  font-size: 1rem;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-info address, .map-location strong {
  font-family: var(--font-display);
  color: var(--accent2);
  font-size: 1.08rem;
}
.map-location {
  background: var(--info-green);
  margin-top: 10px;
}

/* --- CARD-LIKE BLOCKS for call-to-action --- */
.content-wrapper > .cta-primary,
.content-wrapper > .cta-secondary {
  margin-top: 15px;
}

/* --- ANIMATIONS & PLAYFUL EFFECTS --- */
.card, .testimonial-card, .service-summary, .service-detail, .faq-item {
  transition: box-shadow .18s, transform .16s, border-color .22s;
}
.card:hover, .service-summary:hover, .service-detail:hover {
  box-shadow: 0 8px 36px -5px #B5E7B133;
  transform: translateY(-6px) scale(1.025) rotate(-2deg);
  border-color: var(--accent);
}

.testimonial-card::before {
  content: "★";
  font-size: 2.3rem;
  color: var(--accent2);
  opacity: .22;
  position: absolute;
  top: 10px;
  left: 22px;
  z-index: 0;
  pointer-events: none;
}
.testimonial-card strong {
  z-index: 2;
  position: relative;
}

/* --- RESPONSIVE ADAPTATIONS (mobile first) --- */
@media (max-width: 700px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  nav a, .mobile-nav a {
    font-size: 1rem;
    padding: 11px 12px;
  }
  .testimonial-card, .card, .service-summary, .service-detail {
    min-width: 90vw;
    padding: 18px 12px 14px 14px;
  }
  .card-container, .content-grid {
    gap: 10px;
  }
}
@media (max-width: 560px) {
  body, p, li, address, div {
    font-size: 0.97rem;
  }
  h1 {
    font-size: 1.35rem;
  }
  .section, section {
    padding: 12px 2px;
  }
}

/* --- VISUAL HIERARCHY & DECOR --- */
ul li:before, ol li:before {
  content: '';
}
ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
}
ul li:before {
  content: '•';
  position: absolute;
  top: 0;
  left: 8px;
  color: var(--accent2);
  font-size: 1.15em;
  font-weight: bold;
}
ol li {
  counter-increment: step;
  padding-left: 0px;
}
ol {
  counter-reset: step;
}
ol li:before {
  content: counter(step) '.';
  font-size: 1.01em;
  color: var(--primary);
  font-weight: 700;
  margin-right: 5px;
  position: relative;
  left: -2px;
}

/* --- ACCORDION INTERACTIVE (JS should add .open to .faq-item when active) --- */
.faq-item > div {
  display: none;
  margin-top: 8px;
  transition: max-height .24s cubic-bezier(.79,.35,0,1.16);
  overflow: hidden;
  max-height: 0;
}
.faq-item.open > div {
  display: block;
  max-height: 900px;
  animation: faqOpen .27s cubic-bezier(.58,.13,0,1.16);
}
@keyframes faqOpen {
  from { max-height: 0; opacity:0; } to { max-height: 900px; opacity:1; }
}

/* --- PLAYFUL DYNAMIC DECORATIVE ELEMENTS (confetti dots/pseudo) --- */
.section, section {
  position: relative;
}
.section::after, section::after {
  content: '';
  position: absolute;
  bottom: -23px;
  right: 29px;
  width: 42px;
  height: 13px;
  background: repeating-linear-gradient(90deg, #A4DDEE, #F7C8E0 42%, #B5E7B1 83%, #FFE46B 100%);
  opacity: 0.22;
  clip-path: ellipse(95% 32% at 50% 50%);
  z-index: 1;
  pointer-events: none;
}
.section::before, section::before {
  content: '';
  position: absolute;
  top: -19px;
  left: 20px;
  width: 28px;
  height: 13px;
  background: #B5E7B1;
  opacity: 0.22;
  border-radius: 30% 70% 80% 20%/50% 40% 60% 10%;
  z-index: 1;
  pointer-events: none;
}

/* --- Hide cookie banner or modal when needed (script controlled) --- */
.cookie-banner[hidden], .cookie-modal-overlay[hidden] {
  display: none !important;
}

/* --- Z-INDEX ALLOCATIONS (priority: menu > modal > cookie > content > header > footer) --- */
header { z-index: 32; }
.mobile-menu { z-index: 900; }
.cookie-modal-overlay { z-index: 1999; }
.cookie-banner { z-index: 999; }
footer { z-index: 4; }

/* --- UTILITY CLASSES (used by some HTML blocks) --- */
.mt-2 { margin-top: 2px !important; }
.mt-4 { margin-top: 4px !important; }
.mb-2 { margin-bottom: 2px !important; }
.mb-8 { margin-bottom: 8px !important; }
.centered { text-align: center !important; justify-content: center !important; }
.flex-row { display: flex !important; flex-direction: row !important; }
.flex-col { display: flex !important; flex-direction: column !important; }

::-webkit-scrollbar {
  width: 10px;
  background: #FEFAF6;
}
::-webkit-scrollbar-thumb {
  background: #B5E7B1;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover { background: #FFE46B; }

/* --- FOCUS ACCESSIBILITY --- */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2px dashed var(--accent2);
  outline-offset: 2px;
}

/* --- PRINT FRIENDLY RESET --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body, .container, main {
    background: #fff !important;
    color: #000 !important;
  }
}
