/* --------------------------
   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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background-color: #F1F6F8;
  color: #184155;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #184155;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

/* --------------------------
   VINTAGE RETRO PALETTE
----------------------------*/
:root {
  --primary: #184155; /* Deep Blue */
  --secondary: #26999F; /* Teal */
  --accent: #F1F6F8; /* Pale bg */
  --retro-yellow: #F8CB2E;
  --retro-orange: #EBA733;
  --retro-red: #B04632;
  --retro-mustard: #D4A855;
  --retro-brown: #995F3C;
  --retro-green: #8AA872;
  --white: #fff;
  --black: #232324;
  --shadow: 0 2px 12px 0 rgba(24,65,85,0.16);
  --radius: 12px;
}

/* Fallbacks */
body { background: var(--accent, #F1F6F8); color: var(--primary, #184155); }

/* --------------------------
   TYPOGRAPHY (Vintage/Retro Inspired)
----------------------------*/
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; line-height: 1.15; margin-bottom: 16px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 16px; }
h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
h4 { font-size: 18px; }
p, li, span, td, th { font-size: 1rem; }
strong { font-weight: 700; }
.text-section h1,
.text-section h2,
.text-section h3 { color: var(--retro-brown); }

/* Retro underline heading */
h2 {
  display: inline-block;
  border-bottom: 4px solid var(--retro-yellow);
  padding-bottom: 2px;
  background: linear-gradient(90deg, var(--retro-yellow) 25%, transparent 0);
  background-repeat: no-repeat;
}

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

/* ---------------------
   SPACING CONTAINERS
-----------------------*/
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Common content wrapper */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 768px) {
  .content-wrapper {
    gap: 20px;
  }
  .section {
    padding: 32px 8px;
    margin-bottom: 36px;
  }
}


/* --------------------------------------
   HEADER & NAVIGATION (Retro style)
----------------------------------------*/
header {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(24,65,85,0.05);
  padding: 0 0;
  position: relative;
  z-index: 40;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
header a img {
  height: 44px;
  margin: 14px 0;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  padding: 5px 10px;
  border-radius: var(--radius);
  position: relative;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.03em;
}
header nav a:hover, header nav a:focus {
  color: var(--retro-yellow);
  background: rgba(241,246,248,0.11);
}

.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--retro-yellow);
  color: var(--primary);
  border: none;
  border-radius: var(--radius);
  padding: 13px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(200,160,60,0.13);
  margin-left: 24px;
  transition: background 0.22s, color 0.22s, box-shadow 0.24s;
  letter-spacing: 0.04em;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--retro-orange);
  color: var(--white);
  box-shadow: 0 3px 18px 0 rgba(184,80,51,.14);
}

/* ------ Mobile Navigation ------ */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: var(--retro-yellow);
  padding: 8px 16px;
  line-height: 1;
  border-radius: 7px;
  border: 2px solid transparent;
  margin-left: 20px;
  z-index: 120;
  transition: background 0.2s, border-color 0.2s;
}
.mobile-menu-toggle:focus {
  border-color: var(--retro-yellow);
}
@media (max-width: 1020px) {
  header nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary);
  color: var(--white);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.67,.17,.37,.96);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--retro-yellow);
  color: var(--primary);
  font-size: 2rem;
  padding: 7px 12px;
  border-radius: 7px;
  align-self: flex-end;
  margin: 0 24px 18px 0;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-orange);
  color: var(--white);
  border-color: var(--retro-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 36px;
  width: 100vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 2px solid rgba(248,203,46,0.12);
  width: 100%;
  transition: background 0.2s, color 0.2s;
  border-radius: 0px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-yellow);
  color: var(--primary);
}

/* Prevent scroll when menu open */
body.mobile-menu-open {
  overflow: hidden;
}

/* -----------------------------
   HERO/MAIN SECTION
-------------------------------*/
.hero-section {
  background: repeating-linear-gradient(135deg, var(--retro-yellow), var(--retro-yellow) 14px, var(--accent) 14px, var(--accent) 28px);
  border-bottom: 6px dotted var(--retro-yellow);
  padding: 48px 0 36px 0;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-section .content-wrapper {
  padding: 0;
  max-width: 680px;
  background: rgba(255,255,255,0.86);
  border-radius: var(--radius);
  box-shadow: 0 4px 22px 0 rgba(24,65,85,0.08);
  margin: 0 auto;
}
.hero-section h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 14px;
  text-shadow: 1px 2px 0 var(--retro-yellow), 2px 4px 0 rgba(24,65,85,.05);
}
.hero-section p {
  font-size: 1.15rem;
  margin-bottom: 22px;
  color: var(--retro-brown);
  font-weight: 500;
}
.hero-section .cta-primary {
  margin-left: 0;
  margin-top: 14px;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }
  .hero-section .container {
    padding: 0 8px;
  }
  .hero-section .content-wrapper {
    padding: 14px 8px 24px 8px;
  }
  .hero-section {
    padding-top: 18px;
    padding-bottom: 22px;
  }
}

/* -----------------------------
   CARD & FEATURE SECTIONS
-------------------------------*/
.features-section {
  margin-bottom: 60px; 
  padding: 40px 20px;
}
.features-section .content-wrapper {
  gap: 18px;
}
.features-section h2 {
  color: var(--retro-brown);
}
.features-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.features-grid li, .service-list li {
  background: var(--white);
  border: 1.5px solid var(--retro-yellow);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px 0 rgba(24,65,85,0.09);
  padding: 22px 20px 18px 20px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.14s;
  position: relative;
}
.features-grid li:hover, .service-list li:hover {
  box-shadow: 0 4px 24px 0 rgba(197, 93, 56, 0.13);
  transform: translateY(-3px) scale(1.012);
  z-index: 3;
}
.features-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  filter: sepia(0.7) hue-rotate(-23deg) contrast(1.11) brightness(1.04);
}
.features-grid h3, .service-list h3 {
  color: var(--retro-red);
  font-size: 1.18rem;
  margin-bottom: 5px;
}
.features-grid p, .service-list p {
  color: var(--primary);
  font-size: 1rem;
}
.features-section ul, .service-list {
  padding-left: 0;
}
.features-section li {
  list-style: none; 
}
/* Secondary feature lists */
.features-section ul:not(.features-grid) li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.04rem;
  margin-bottom: 8px;
  color: var(--retro-brown);
  padding-left: 16px;
  position: relative;
}
.features-section ul:not(.features-grid) li:before {
  content: '\25A0';
  color: var(--retro-yellow);
  font-size: 0.88em;
  margin-right: 8px;
}
@media (max-width: 900px) {
  .features-grid, .service-list {
    gap: 14px;
  }
  .features-grid li, .service-list li {
    flex: 1 1 180px;
    min-width: 180px;
  }
}
@media (max-width: 600px) {
  .features-grid, .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .features-grid li, .service-list li {
    width: 100%;
    min-width: 0;
  }
}

/* Reusable card-container class for any grouped cards */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 22px 24px;
  min-width: 180px;
}

/* Step/FAQ Section */
.steps-section ol {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-left: 18px;
  margin-top: 12px;
}
.steps-section li {
  color: var(--retro-brown);
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.faq-section .content-wrapper > div {
  background: var(--white);
  border: 1.5px solid var(--retro-green);
  border-radius: var(--radius);
  box-shadow: 0 1px 6px 0 rgba(86,123,90,0.07);
  margin-bottom: 20px;
  padding: 15px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.faq-section h3 {
  color: var(--retro-red);
  font-size: 1.13rem;
  margin-bottom: 2px;
}
@media (max-width: 600px) {
  .steps-section ol {
    gap: 11px;
  }
  .faq-section .content-wrapper > div {
    padding: 12px;
    margin-bottom: 12px;
  }
}

/* Table Pricing */
.pricing-section table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 1px 8px 0 rgba(24,65,85,0.06);
  overflow: hidden;
  margin-bottom: 22px;
  font-size: 1rem;
  margin-top: 8px;
}
.pricing-section th, .pricing-section td {
  padding: 13px 9px;
  border-bottom: 1px dashed var(--retro-yellow);
  text-align: left;
}
.pricing-section th {
  background: var(--retro-yellow);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
}
.pricing-section tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .pricing-section table, .pricing-section th, .pricing-section td {
    font-size: 0.93rem;
    padding: 8px 4px;
  }
}

/* -----------------------------
   TESTIMONIALS
-------------------------------*/
.testimonials-section {
  background: var(--retro-mustard);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  box-shadow: 0 2px 20px rgba(191,158,64,0.08);
}
.testimonials-section h2 {
  color: var(--retro-brown);
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 2px 12px 0 rgba(24,65,85,0.10);
  margin-bottom: 20px;
  border-radius: var(--radius);
  border-left: 7px solid var(--retro-red);
  max-width: 640px;
  color: var(--primary);
}
.testimonial-card p {
  font-size: 1.09rem;
  font-style: italic;
  color: var(--primary);
}
.testimonial-card span {
  color: var(--retro-brown);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}
@media (max-width: 700px) {
  .testimonial-card {
    padding: 13px 12px 17px 12px;
    max-width: 98%;
  }
}


/* -----------------------
   TEXT-IMAGE SECTION
------------------------*/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}


/* --------------------------
   FOOTER
----------------------------*/
footer {
  background: var(--primary);
  color: var(--white);
  padding: 32px 0 22px 0;
  box-shadow: 0 -2px 8px rgba(24,65,85,0.13);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 13px;
}
footer nav a {
  color: var(--retro-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--retro-orange);
}
footer p, footer a {
  font-size: 0.96rem;
}
footer a {
  color: var(--retro-yellow);
  text-decoration: underline dotted;
}
footer a:hover {
  color: var(--retro-orange);
  text-decoration: underline wavy;
}
@media (max-width: 600px) {
  footer nav {
    flex-direction: column;
    gap: 12px;
  }
  footer .container {
    padding: 0 8px;
  }
}

/* ---------------------------
   BUTTONS, FORMS, INTERACTION
-----------------------------*/
button, .cta-primary, input[type="submit"] {
  outline: none;
  cursor: pointer;
  transition: background 0.23s, color 0.19s, box-shadow 0.20s, border-color 0.18s;
}

/* Links as buttons */
a.cta-primary {
  display: inline-block;
  text-align: center;
  min-width: 160px;
  margin-bottom: 0;
}

input, textarea, select {
  border: 1.5px solid var(--retro-brown);
  border-radius: 7px;
  padding: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--primary);
  box-shadow: none;
  margin-bottom: 16px;
  width: 100%;
  transition: border-color 0.18s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--retro-yellow);
  box-shadow: 0 0 0 2px var(--retro-yellow);
}

/* Checkbox/Radio for cookie consent modal */
input[type="checkbox"], input[type="radio"] {
  width: 19px;
  height: 19px;
  accent-color: var(--retro-brown);
  vertical-align: middle;
  border-radius: 3px;
  margin-right: 10px;
}
input[type="checkbox"]:checked {
  background: var(--retro-yellow);
  border-color: var(--retro-yellow);
}

/* ---------------------------
   COOKIE CONSENT BANNER & MODAL
-----------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--retro-yellow);
  color: var(--primary);
  width: 100vw;
  z-index: 2002;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 16px 32px;
  box-shadow: 0 -3px 24px 0 rgba(191,158,64,0.18);
  font-size: 1.07rem;
  border-top: 4px double var(--retro-brown);
  animation: cookie-banner-slideup 0.7s cubic-bezier(.13,.82,.55,.92) 0s;
}
@keyframes cookie-banner-slideup {
  0% { transform: translateY(125%); opacity: 0; }
  70% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  min-width: 49px;
  padding: 7px 18px;
  margin: 0 8px 0 0;
  background: var(--retro-red);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 7px;
  transition: background 0.2s, color 0.17s;
  box-shadow: 0 1px 7px 0 rgba(176,70,50,0.08);
}
.cookie-banner .btn-accept {
  background: var(--retro-green);
  color: var(--primary);
}
.cookie-banner .btn-reject {
  background: var(--retro-red);
}
.cookie-banner .btn-settings {
  background: var(--retro-yellow);
  color: var(--primary);
  border: 1px solid var(--retro-brown);
}
.cookie-banner button:hover {
  filter: brightness(1.07) saturate(1.09);
  box-shadow: 0 2px 14px 0 rgba(183,99,42,0.19);
}
@media (max-width: 780px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 18px 6px;
    font-size: 0.96rem;
    align-items: flex-start;
  }
  .cookie-banner button {
    width: 100%;
    margin-bottom: 5px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 3303;
  background: rgba(24,65,85, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.23s linear;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-box {
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius);
  max-width: 400px;
  width: 95vw;
  padding: 33px 20px 19px 24px;
  box-shadow: 0 2px 32px 0 rgba(24,65,85,0.16);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: popin .28s cubic-bezier(.05,1.23,.37,.95);
}
@keyframes popin {
  0% { transform: scale(0.75); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-box h2 {
  font-size: 1.3rem;
  color: var(--retro-brown);
  margin-bottom: 9px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 11px;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: var(--primary);
}
.cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 11px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 8px 19px;
  border-radius: 6px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: var(--retro-yellow);
  color: var(--primary);
  transition: background 0.2s, color 0.16s, box-shadow 0.13s;
  box-shadow: 0 1px 9px 0 rgba(153,95,60,0.12);
}
.cookie-modal-actions button:hover,
.cookie-modal-actions button:focus {
  background: var(--retro-brown);
  color: var(--white);
}

.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 15px;
  background: var(--retro-red);
  color: var(--white);
  border: none;
  font-size: 1.3rem;
  border-radius: 7px;
  width: 32px;
  height: 32px;
  transition: background 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--retro-yellow);
  color: var(--retro-red);
}

/*-----------------------------
   MISCELLANEOUS
-----------------------------*/
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 4px;
  }
}

hr {
  border: none;
  border-bottom: 2px dashed var(--retro-brown);
  margin: 32px auto;
  width: 60%;
}

::-webkit-scrollbar {
  width: 13px;
  background: var(--accent);
  border-radius: 7px;
}
::-webkit-scrollbar-thumb {
  background: var(--retro-yellow);
  border-radius: 7px;
  border: 2px solid var(--accent);
}

/* Focus ring for accessibility */
:focus {
  outline: 2px dashed var(--retro-yellow);
  outline-offset: 2px;
}

/* Decorative border for retro pattern on main and sections */
.section, .features-section, .testimonials-section {
  border-radius: var(--radius);
  border: 3px double var(--retro-mustard);
}

/* Retro patterns: polka dot bg for accent sections */
.testimonials-section {
  background-image: radial-gradient(var(--retro-yellow) 1.5px, transparent 1.5px), radial-gradient(var(--retro-yellow) 1.5px, var(--retro-mustard) 1.5px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
}

/* Feature Item layout (from requirements) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 15px 18px;
  box-shadow: 0 1px 8px 0 rgba(24,65,85,0.08);
  margin-bottom: 16px;
}

/* Layout gap patterns */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

@media (max-width: 700px) {
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}


/* -------------
   PRINT FIXES
---------------*/
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body {
    background: #fff;
    color: #111;
  }
}

/* ----------------------
   PAGE-SPECIFIC STYLES
------------------------*/
#index-hero-illustration, .custom-decoration {
  position: absolute;
  z-index: 1;
  opacity: 0.09;
  pointer-events: none;
}
/* Style for content blocks that include illustration can use a class if desired */

/* End of CSS */
