/* RESET & BASELINE -------------- */
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;
}
body {
  line-height: 1.6;
  background: #faf5e3;
  color: #352d1b;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
:focus {
  outline: 2px dotted #F5A623;
  outline-offset: 2px;
}

/* FONT FACES - Google Fonts fallback and retro font stack */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800|Open+Sans:400,600&display=swap');
:root {
  --color-primary: #044B2F;
  --color-secondary: #E7ECEF;
  --color-accent: #F5A623;
  --color-bg: #faf5e3;
  --color-retro-cream: #f6f1d7;
  --color-retro-brown: #352d1b;
  --color-retro-orange: #ffae46;
  --color-retro-green: #6f8c6b;
  --color-retro-blue: #568384;
  --font-display: 'Montserrat', 'Futura', 'Montserrat', 'Arial Black', Arial, sans-serif;
  --font-body: 'Open Sans', 'Avenir', 'Segoe UI', Arial, sans-serif;
}


/* VINTAGE RETRO GENERAL LOOK ---------------- */
body {
  background: var(--color-bg);
  color: var(--color-retro-brown);
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-retro-cream);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(220,180,115,0.09);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  text-shadow: 1px 1px 0 #fff1c1, 2px 2px 0 #ead595;
  line-height: 1.16;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 22px;
}
h2 {
  font-size: 1.85rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
  color: var(--color-retro-orange);
  letter-spacing: 0.01em;
}
p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-retro-brown);
  margin-bottom: 12px;
}
.text-section {
  font-size: 1rem;
  color: var(--color-retro-brown);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 22px;
}


/* VINTAGE-RETRO PATTERN/ELEMENTS*/
.section {
  /* subtle diagonal pattern for retro effect */
  background-image: repeating-linear-gradient(135deg, rgba(245,166,35,0.035), rgba(245,166,35,0.035) 8px, transparent 8px, transparent 28px);
}

/* BUTTONS & CALLS TO ACTION ------------------ */
.cta, .primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-retro-brown);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.03rem;
  border-radius: 32px;
  box-shadow: 0 2px 10px 0 rgba(245,166,35,0.10);
  border: 2px solid var(--color-primary);
  padding: 12px 36px;
  margin-top: 14px;
  transition: background 0.21s, color 0.21s, box-shadow 0.21s;
  cursor: pointer;
  text-shadow: 0 1px 0 #fff5c1;
  letter-spacing: 0.03em;
}
.cta.primary, .cta.primary:visited {
  background: var(--color-primary);
  color: #fffbe2;
  border-color: var(--color-accent);
  text-shadow: 0 1px 0 #584318;
}
.cta:hover, .cta:focus {
  background: var(--color-retro-orange);
  color: #fff !important;
  box-shadow: 0 4px 18px 0 rgba(245,166,35,0.15);
  text-decoration: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* HEADER & MAIN NAVIGATION ------------------- */
header {
  background: var(--color-retro-brown);
  border-bottom: 5px double var(--color-accent);
  box-shadow: 0 3px 16px 0 rgba(41,30,9,0.03);
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: flex-start;
  padding: 18px 0 14px 0;
  font-family: var(--font-display);
  font-size: 1.01rem;
  background: transparent;
}
.main-nav a {
  color: #fffbe2;
  padding: 8px 12px;
  border-radius: 9px;
  transition: background 0.19s, color 0.18s;
}
.main-nav a.cta.primary {
  margin-left: 16px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-retro-orange);
  color: var(--color-retro-brown);
}
.main-nav img {
  height: 38px;
  margin-right: 10px;
}


/* FLEX CONTENT CARDS & GRIDS ------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff7e0;
  border: 2.5px solid var(--color-retro-orange);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(220,180,115,0.09);
  margin-bottom: 20px;
  padding: 28px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.23s, border-color 0.21s;
  z-index: 2;
}
.card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 6px 34px 0 rgba(68,32,6,0.13);
}
.content-grid, .feature-grid, .blog-overview, .team-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.feature-grid > div, .service-list > div, .blog-overview > article, .team-overview > div {
  background: #fff7e0;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(220,180,115,0.08);
  padding: 24px 22px 20px 22px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  border: 1.5px solid #ffe8c2;
  transition: box-shadow 0.17s;
}
.feature-grid > div:hover,
.service-list > div:hover {
  box-shadow: 0 8px 30px 0 rgba(245,166,35,0.13);
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-list li,
.service-list > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  background: #fff7ea;
  border-radius: 10px;
  padding: 14px 12px 14px 10px;
  margin-bottom: 14px;
  min-width: 220px;
  box-shadow: 0 2px 8px 0 rgba(220,180,115,0.08);
}
.service-list img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  filter: saturate(0.85) brightness(1.07);
}

.facts-figures {
  background: #fff6e3;
  border-radius: 12px;
  border: 1.5px dashed var(--color-retro-green);
  padding: 22px 24px;
  margin-top: 16px;
  font-family: var(--font-display);
}
.facts-figures h3 {
  margin-bottom: 10px;
}

/* TESTIMONIALS ---------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fffbe4;
  border: 2px solid var(--color-retro-orange);
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(44,41,17,0.08);
  margin-bottom: 20px;
  max-width: 520px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.08rem;
  color: #221b15;
  position: relative;
}
.testimonial-card p {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: #221b15;
  font-style: italic;
  margin-bottom: 0px;
}
.testimonial-card cite {
  font-style: normal;
  color: var(--color-retro-green);
  font-family: var(--font-display);
  font-size: 1.01rem;
  margin-left: 2px;
  margin-top: 4px;
}

/* Blog overview & featured post -------------------- */
.blog-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.blog-overview article {
  background: #fff7e0;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(220,180,115,0.08);
  padding: 20px 20px 16px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.15s;
}
.blog-overview article h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.12rem;
}
.blog-overview article span {
  font-size: 0.96rem;
  color: var(--color-primary);
  background: #fff0cd;
  border-radius: 8px;
  padding: 3px 9px;
  margin-top: 13px;
  font-family: var(--font-body);
}
.featured-post {
  background: #f5e4bf;
  border-radius: 16px;
  border: 1.5px solid var(--color-retro-orange);
  box-shadow: 0 2px 10px 0 rgba(245,166,35,0.06);
  padding: 25px 26px 22px 26px;
  margin-top: 10px;
  font-size: 1.07rem;
  font-family: var(--font-body);
  color: var(--color-retro-brown);
}

/* TEAM OVERVIEW -------------------------- */
.team-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.team-overview > div {
  background: #fff7e0;
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 1px 8px 0 rgba(220,180,115,0.08);
  font-size: 1.03rem;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  border: 1.5px solid #ffe8c2;
  font-family: var(--font-body);
}
.team-overview strong {
  font-family: var(--font-display);
  color: var(--color-primary);
}

/* FOOTER ---------------------------------- */
footer {
  background: var(--color-retro-brown);
  color: #f9eecd;
  padding: 32px 0 20px 0;
  border-top: 6px double var(--color-accent);
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: #f9eecd;
  font-family: var(--font-display);
  text-decoration: underline dotted #f5c664 1.5px;
  padding: 6px 4px;
  border-radius: 7px;
  transition: background 0.13s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-accent);
  color: var(--color-retro-brown);
}
.footer-wrapper img {
  height: 36px;
}
.footer-contact {
  font-size: 0.98rem;
  margin-top: 13px;
  font-family: var(--font-body);
}

/* MOBILE MENU --------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--color-accent);
  border-radius: 48px;
  border: 2.5px solid var(--color-primary);
  width: 44px;
  height: 44px;
  font-size: 1.75rem;
  color: var(--color-primary);
  z-index: 999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.19s, background 0.18s;
  box-shadow: 0 2px 8px 0 rgba(245,166,35,0.07);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: #fffbe2;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,41,17, 0.95);
  transform: translateX(-100vw);
  z-index: 9999;
  transition: transform 0.44s cubic-bezier(.68,-0.3,.44,1.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-retro-orange);
  color: var(--color-primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 26px;
  right: 26px;
  cursor: pointer;
  z-index: 10100;
  box-shadow: 0 2px 8px 0 rgba(245,166,35,0.12);
  transition: background 0.21s, color 0.21s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-primary);
  color: #fffbe2;
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  justify-content: flex-start;
}
.mobile-nav a {
  color: #fffbe2;
  font-family: var(--font-display);
  font-size: 1.23rem;
  background: var(--color-retro-orange);
  border-radius: 18px;
  padding: 18px 32px;
  box-shadow: 0 2px 12px 0 rgba(245,166,35,0.11);
  margin-bottom: 8px;
  transition: background 0.19s, color 0.16s;
  width: 80vw;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-retro-green);
  color: #fffbe2;
}

/* Hide main-nav on mobile, show mobile-toggle */
@media (max-width: 950px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
@media (min-width: 951px) {
  .mobile-menu {
    display: none !important;
  }
}


/* COOKIE CONSENT BANNER ------------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99991;
  background: #f6f1d7;
  color: #2d2715;
  border-top: 3px solid var(--color-retro-orange);
  box-shadow: 0 -4px 20px rgba(49,41,25,0.14);
  padding: 22px 24px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 1.01rem;
  animation: banner-in 0.67s cubic-bezier(.48,-0.1,.52,1.08);
}
@keyframes banner-in {
  0% { transform: translateY(120px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 1 1 200px;
  color: #352d1b;
  max-width: 510px;
  margin-bottom: 8px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1.1rem;
  background: #ffe8c2;
  color: #221b15;
  border-radius: 22px;
  border: 2px solid var(--color-retro-orange);
  padding: 8px 27px;
  margin: 0 6px 0 0;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, border 0.15s;
  box-shadow: 0 2px 8px 0 rgba(245,166,35,0.07);
}
.cookie-banner button.accept {
  background: var(--color-retro-orange);
  color: var(--color-primary);
}
.cookie-banner button.accept:hover,
.cookie-banner button.accept:focus {
  background: var(--color-primary);
  color: #fffbe2;
}
.cookie-banner button.reject {
  background: #efd2b7;
  color: var(--color-retro-brown);
}
.cookie-banner button.reject:hover,
.cookie-banner button.reject:focus {
  background: #fff;
  color: #221b15;
}
.cookie-banner button.settings {
  background: #f3eedc;
  color: var(--color-retro-brown);
}
.cookie-banner button.settings:hover,
.cookie-banner button.settings:focus {
  background: var(--color-retro-green);
  color: #fffbe2;
}

/* COOKIE SETTINGS MODAL------------------  */
.cookie-modal-backdrop {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(41,30,9,0.6);
  z-index: 99992;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.18s ease;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #f6f1d7;
  border-radius: 24px;
  padding: 40px 30px 36px 30px;
  box-shadow: 0 2px 36px 0 rgba(41,30,9,0.18);
  max-width: 420px;
  width: 96vw;
  z-index: 99993;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fade-in 0.19s ease;
  border: 2.5px solid var(--color-retro-orange);
}
.cookie-modal h3 {
  color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: 6px;
  font-weight: 800;
  font-size: 1.38rem;
}
.cookie-modal ul {
  margin: 0 0 0 6px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 1.065rem;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-modal label {
  font-size: 1.045rem;
  font-family: var(--font-display);
  letter-spacing: 0.014em;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--color-retro-orange);
  width: 22px;
  height: 22px;
}
.cookie-modal .modal-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .modal-btns button {
  font-family: var(--font-display);
  border-radius: 18px;
  border: 2px solid var(--color-retro-orange);
  padding: 8px 19px;
  margin-right: 6px;
  background: #ffe8c2;
  color: var(--color-primary);
  font-size: 1.03rem;
  transition: color 0.17s, background 0.18s, border 0.14s;
}
.cookie-modal .modal-btns button.confirm {
  background: var(--color-retro-orange);
  color: #fffbe2;
}
.cookie-modal .modal-btns button.confirm:hover,
.cookie-modal .modal-btns button.confirm:focus {
  background: var(--color-primary);
  color: #fffbe2;
}
.cookie-modal .modal-btns button.cancel {
  background: #fff7e0;
  color: var(--color-retro-brown);
}

/* RESPONSIVE LAYOUTS & SPACING ------------- */
@media (max-width: 1150px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .content-grid, .feature-grid, .service-list, .blog-overview, .team-overview {
    flex-direction: column;
    gap: 20px;
  }
  .card-container {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 830px) {
  .main-nav, .footer-wrapper { flex-direction: column; gap: 13px; align-items: flex-start; }
}
@media (max-width: 730px) {
  .container { padding: 0 8px; }
  .section { padding: 28px 6px; }
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.15rem; }
  .testimonial-card, .card, .facts-figures, .featured-post { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 700px) {
  .footer-wrapper { flex-direction: column; gap: 16px; }
  .team-overview, .feature-grid { flex-direction: column; }
}
@media (max-width: 590px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    text-align: left;
    font-size: 0.97rem;
    padding: 13px 8px;
  }
  .cookie-banner .cookie-btns { justify-content: flex-start; }
  .section { padding: 16px 3px; }
}
@media (max-width: 520px) {
  .footer-contact { font-size: 0.82rem; }
}

/* .text-image-section responsive behaviour */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
  }
}

/* STYLE UL/OL/LISTS RETRO -------------- */
ul, ol {
  list-style: none;
}
ul li,
ol li {
  padding-left: 0px;
  position: relative;
  margin-bottom: 10px;
  font-size: 1rem;
}
ul li::before {
  content: '\273B'; /* vintage starburst */
  margin-right: 11px;
  color: var(--color-retro-orange);
  font-size: 1.05em;
  position: relative;
  top: 1px;
}

/* Microinteractions, Transitions, Shadows -------*/
a, button, .card, .blog-overview article, .feature-grid > div, .service-list > div {
  transition: box-shadow 0.21s, border-color 0.17s, background 0.16s, color 0.15s, transform 0.17s;
}
.card:hover, .blog-overview article:hover, .feature-grid>div:hover, .service-list>div:hover {
  transform: translateY(-2px) scale(1.019);
}

/* Borders & Corners for Retro Style --------- */
.section, .card, .testimonial-card, .facts-figures, .footer-nav a, .cookie-modal, .cookie-banner, .featured-post, .feature-grid>div, .service-list>div, .team-overview>div {
  border-radius: 14px;
}

/* LINKS, INTERACTIONS, SELECTION ----------- */
a {
  color: var(--color-primary);
  text-decoration: underline dotted #F5A623 1.3px;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: var(--color-retro-orange);
  background: #fff7e0;
}

/* FORMS, INPUTS, RETRO SELECTION ------------ */
input, textarea, select {
  background: #fffde7;
  border: 2px solid var(--color-retro-green);
  border-radius: 8px;
  padding: 10px 13px;
  font-size: 1rem;
  color: #231a07;
  margin-top: 7px;
  outline: none;
  box-shadow: 0 1px 5px 0 rgba(245,166,35,0.09);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
}

/* Table Styles for retro content pages ---------- */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fffbe7;
  border: 2px solid var(--color-retro-orange);
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(220,180,115,0.07);
  margin-bottom: 22px;
}
th, td {
  padding: 13px 10px;
  font-size: 1rem;
  border-bottom: 1px solid #f7e1ba;
}
th {
  background: var(--color-retro-orange);
  color: var(--color-primary);
}
tr:last-child td {
  border-bottom: none;
}

/* Retro Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  background: #ffe9c8;
}
::-webkit-scrollbar-thumb {
  background: var(--color-retro-orange);
  border-radius: 12px;
}

/* Print Styles */
@media print {
  header, footer, .main-nav, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  .section { background: #fff !important; box-shadow: none !important; }
}
