/* =============================================================
   Vivid Plan: Playful_Dynamic CSS Theme
   Author: Senior CSS Designer & UI Expert
   Only Flexbox used! No Grid/Columns. Mobile-first. Responsive.
   ============================================================= */

/* --------------------
   RESET & BASE STYLES
---------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  outline: none;
}
html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7FAFC;
  color: #1A2A33;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #155174;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FDB813;
}
button {
  font-family: inherit;
  background: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.1s;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
  padding-left: 1.2em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  color: #155174;
  font-weight: 800;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

strong {
  font-weight: 800;
}

/* Fun font fallback for headings if Montserrat is missing */
@font-face {
  font-family: 'Montserrat';
  font-display: swap;
  src: local('Montserrat'), url('https://fonts.googleapis.com/css?family=Montserrat:800,700&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-display: swap;
  src: local('Roboto'), url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
}


input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}

/* ------------------------
   CONTAINER & LAYOUT UTILS
--------------------------*/
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 28px;
  box-shadow: 0 8px 32px 0 rgba(21,81,116,0.07);
  transition: box-shadow 0.2s;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 32px;
    border-radius: 14px;
  }
}

/*
   -----------------------------------
      FLEX PATTERNS (no grid/columns)
   -----------------------------------
*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  padding: 24px 18px;
  border-radius: 22px;
  box-shadow: 0 6px 14px rgba(21,81,116,0.10);
}
.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: 16px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe9;
  box-shadow: 0 4px 14px rgba(21,81,116,0.10);
  margin-bottom: 20px;
  border-radius: 20px;
  min-width: 0;
  /* fun little bounce-in effect */
  animation: testimonial-bounce-in 1s cubic-bezier(.69,-0.01,.37,1.16);
}
@keyframes testimonial-bounce-in {
  0% { opacity:0; transform: translateY(60px) scale(0.95); }
  55% { opacity:.7; transform: translateY(-18px) scale(1.04); }
  70% { opacity:1; transform: translateY(6px) scale(0.98); }
  100% { opacity:1; transform: none; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 22px 18px;
  background: #ecf6fa;
  border-radius: 18px;
  box-shadow: 0 4px 9px rgba(21,81,116,0.05);
  transition: box-shadow 0.2s, background 0.2s;
}
.feature-item:hover {
  background: #fdeec4;
  box-shadow: 0 10px 36px #FDB81324;
}

/****************************
 HERO SECTION
*****************************/
.hero {
  background: linear-gradient(120deg,#FDB813 80%,#ecf6fa 100%);
  position: relative;
  border-bottom: 8px solid #155174;
  padding: 50px 0 46px 0;
  min-height: 340px;
}
.hero .container { align-items: flex-start; }
.hero .content-wrapper {
  max-width: 540px;
  padding: 32px 28px 32px 8px;
  border-radius: 32px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 24px #1551741a;
  gap: 18px;
}
.hero h1 {
  font-size: 2.8rem;
  line-height: 1.08;
  color: #155174;
  text-shadow: 1px 1px 0 #fffbe9, 0 2px 18px #15517422;
  margin-bottom: 8px;
}
.hero p {
  font-size: 1.18rem;
  color: #2d3545;
  line-height: 1.5;
}
.hero .cta-btn {
  margin-top: 18px;
  font-size: 1.18rem;
}

@media (max-width: 800px) {
  .hero {
    padding: 24px 0 24px 0;
  }
  .hero .content-wrapper {
    padding: 18px 8px;
    max-width: 98vw;
  }
  .hero h1 { font-size: 2.1rem; }
}

/****************************
 NAVIGATION (desktop & mobile)
*****************************/
header {
  background: #fff;
  box-shadow: 0 2px 14px #FDB81313;
  padding: 0;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 99;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 18px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-size: 1rem;
  color: #155174;
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FDB813;
  color: #fff;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  background: #FDB813;
  color: #155174;
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  box-shadow: 0 2px 10px #FDB81333;
  padding: 10px 30px;
  margin-left: 12px;
  text-shadow: 0 1px #fffbe9;
  position: relative;
  border: 2px solid #FDB813;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: #155174;
  color: #FDB813;
  box-shadow: 0 4px 16px #15517433;
  border-color: #FDB813;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #FDB813;
  color: #155174;
  border-radius: 8px;
  padding: 4px 16px;
  margin-left: 14px;
  transition: background 0.21s, color 0.22s;
  z-index: 99;
}
.mobile-menu-toggle:active, 
.mobile-menu-toggle:focus {
  background: #155174;
  color: #FDB813;
}

/* --- Mobile Navigation Overlay --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  background: rgba(21,81,116,.97);
  color: #fff;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5000;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.77,-0.01,.38,1.11), opacity 0.3s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.4rem;
  color: #FDB813;
  background: none;
  margin: 24px 24px 14px 0;
  padding: 0 0.1em;
  align-self: flex-end;
  border-radius: 9px;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FDB813;
  color: #155174;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 32px 32px 24px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  padding: 12px 0 12px 0;
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-size: 1.3rem;
  border-radius: 9px;
  font-weight: 600;
  margin-bottom: 7px;
  width: 100%;
  transition: background 0.18s, color 0.18s, padding 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FDB813;
  color: #155174;
  padding-left: 9px;
}

/* HIDE desktop nav / show mobile toggle on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none !important;
  }
  .cta-btn { margin-left: 0; }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/*************************
  FOOTER
**************************/
footer {
  background: #155174;
  color: #F7FAFC;
  padding: 40px 0 10px 0;
  margin-top: 80px;
  border-top: 6px solid #FDB813;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo img { max-width: 70px; }
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #FDB813;
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  padding: 6px 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F7FAFC;
  text-decoration: underline wavy #FDB813;
}
.footer-contact {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #F7FAFC;
}
.footer-contact a {
  color: #FDB813;
  text-decoration: underline dotted #155174;
  font-weight: 600;
}

/**********************
  FLEXIBLE SECTIONS
***********************/
.services-list,
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 10px;
  width: 100%;
}
.services-list > li, .feature-grid > li, .service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 16px #15517407;
  padding: 32px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  position: relative;
}
.services-list > li:hover, .feature-grid > li:hover, .service-card:hover {
  background: #feebae;
  box-shadow: 0 8px 28px #FDB81314, 0 1px 2px #fff;
  transform: translateY(-2px) scale(1.02) rotate(-1deg);
}

.services-list img, .feature-grid img, .service-card img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}
.price {
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-size: 1.11rem;
  color: #FDB813;
  background: #15517411;
  border-radius: 9px;
  padding: 4px 16px;
  font-weight: 700;
  margin-top: 7px;
  letter-spacing: 0.01em;
}

/***********************
  TABLES & PRICING
************************/
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 28px;
  box-shadow: 0 4px 18px #FDB81310;
  border-radius: 20px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  font-size: 1.07rem;
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid #ecf6fa;
}
.pricing-table thead tr {
  background: #FDB813;
  color: #155174;
}
.pricing-table tbody tr {
  background: #fff;
  transition: background 0.16s;
}
.pricing-table tbody tr:nth-child(odd) {
  background: #F7FAFC;
}
.pricing-table tbody tr:hover {
  background: #ecf6fa;
}

/***************************************
   TESTIMONIALS: distinction and colors
****************************************/
.testimonial-card {
  background: #fffbe9;
  border-left: 5px solid #FDB813;
  box-shadow: 0 2px 10px #FDB81322;
  margin-bottom: 24px;
  color: #2d3545;
  font-size: 1.07rem;
  transition: box-shadow 0.2s, background 0.2s;
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonial-info span {
  display: inline-block;
  font-weight: 600;
  color: #155174;
}
.testimonial-info span:last-child {
  color: #FDB813;
  font-size: 1.16rem;
}

/***************************
   CASE STUDY SECTION
****************************/
.case-study {
  margin-bottom: 46px;
  padding: 34px 18px 22px 18px;
  background: #f7fcfb;
  border-radius: 24px;
  box-shadow: 0 2px 16px #1551740d;
  transition: background 0.2s, box-shadow 0.2s;
}
.case-study h2 {
  font-size: 1.38rem;
  color: #155174;
}

/***************************
   CTA SECTION
***************************/
.cta-section {
  background: #FDB813;
  border-radius: 30px;
  padding: 46px 24px;
  text-align: center;
  box-shadow: 0 6px 22px #FDB81318;
}
.cta-section h2 {
  color: #155174;
  font-size: 2.2rem;
}
.cta-section p {
  color: #29405A;
  font-size: 1.17rem;
}
.cta-section .cta-btn {
  margin-top: 28px;
}

/*******************************
   TEXT & INFO BLOCKS
********************************/
.text-section {
  font-size: 1.04rem;
  color: #344959;
  margin-bottom: 12px;
  line-height: 1.7;
}
.text-section ul, .text-section ol {
  margin-left: 26px;
  margin-bottom: 0.9em;
}
.text-section li {
  padding-bottom: 6px;
}

/*******************************
   CONTACT PAGE
********************************/
.contact-details {
  margin-top: 12px;
  margin-bottom: 12px;
  background: #ecf6fa;
  border-radius: 16px;
  padding: 16px 14px;
  color: #155174;
  font-family: 'Montserrat',sans-serif;
}
.map-placeholder {
  margin-top: 8px;
  margin-bottom: 16px;
  font-style: italic;
  color: #737777;
  background: #e9eefd;
  border-radius: 12px;
  padding: 13px 8px 9px 8px;
}

/*******************************
   THANK YOU PAGE
********************************/
.thank-you-section {
  background: #ecf6fa;
  border-radius: 30px;
  padding: 56px 28px;
  box-shadow: 0 2px 22px #15517405;
  text-align: center;
}
.thank-you-section h1 {
  color: #FDB813;
  font-size: 2.4rem;
}

/********************************
   COOKIE CONSENT BANNER
*********************************/
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fffbe9;
  color: #155174;
  box-shadow: 0 -4px 32px #15517422;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
  padding: 22px 12px 18px 12px;
  gap: 14px;
  transition: transform 0.3s;
  animation: cookie-slide-in 0.7s cubic-bezier(.55,1.14,.42,.97);
}
@keyframes cookie-slide-in {
  0% { transform: translateY(160px); opacity: 0; }
  62% { transform: translateY(-17px); opacity: 1; }
  78% { transform: translateY(10px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-consent-banner .cookie-content {
  max-width: 780px;
  text-align: center;
  font-size: 1.02rem;
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}
.cookie-btn {
  border-radius: 22px;
  padding: 8px 19px;
  font-size: 1.09rem;
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 8px #FDB81322;
  transition: background 0.16s, color 0.14s;
  border: 2px solid transparent;
}
.cookie-btn.accept {
  background: #FDB813;
  color: #155174;
  border-color: #FDB813;
}
.cookie-btn.reject {
  background: #E86552;
  color: #fff;
  border-color: #E86552;
}
.cookie-btn.settings {
  background: #fff;
  color: #155174;
  border: 2px solid #155174;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #155174;
  color: #FDB813;
  border-color: #FDB813;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FDB813;
  border-color: #155174;
  color: #155174;
}

/*********************************
  COOKIE PREFERENCES MODAL
**********************************/
.cookie-modal-overlay {
  position: fixed;
  z-index: 15000;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,81,116,0.68);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  animation: cookie-modal-fade-in 0.4s;
}
@keyframes cookie-modal-fade-in {
  0% { opacity:0; }
  100% { opacity:1; }
}
.cookie-modal {
  background: #fffbe9;
  border-radius: 22px;
  box-shadow: 0 10px 46px #15517428;
  padding: 34px 32px 22px 32px;
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  animation: cookie-modal-pop .6s cubic-bezier(.44,1.44,.52,1.06);
}
@keyframes cookie-modal-pop {
  0% { transform: scale(0.7) translateY(80px); opacity: 0; }
  64% { transform: scale(1.07) translateY(-13px); }
  85% { transform: scale(.97) translateY(5px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #155174;
  font-size: 1.38rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  background: #F7FAFC;
  border-radius: 10px;
  padding: 9px 13px 9px 13px;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #155174;
}
/* Custom toggle switches for cookie categories */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  background: #ecf6fa;
  border-radius: 20px;
  vertical-align: middle;
  cursor: pointer;
  margin-left: 7px;
  box-shadow: 0 1px 4px #15517412;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch-slider {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FDB813;
  transition: left 0.20s, background 0.17s;
}
.cookie-switch input:checked + .cookie-switch-slider {
  left: 22px;
  background: #155174;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 18px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 11px;
  right: 15px;
  font-size: 1.8rem;
  color: #FDB813;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #155174;
}

/*********************************
   RESPONSIVE DESIGN
*********************************/
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
    padding: 0 2vw;
  }
  .main-nav { gap: 6px; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .feature-grid,
  .services-list {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, main > .container {
    padding: 0;
    gap: 12px;
  }
  .section {
    padding: 18px 5px;
    margin-bottom: 30px;
  }
  .case-study {
    padding: 20px 7px;
  }
  .hero {
    padding: 20px 0 16px 0;
  }
  .hero .content-wrapper {
    padding: 12px 6px;
    max-width: 100vw;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.04rem; }
  .footer-logo img { max-width: 42px; }
  footer .container { gap: 10px; padding: 0 6px; }
  .footer-nav a { font-size: 0.95rem; }
  .cta-btn { font-size: 1rem; padding: 7px 16px; }
  .testimonial-card { padding: 13px; font-size: 0.98rem; }
  .pricing-table th, .pricing-table td { padding: 9px; font-size: .99rem; }
  .cta-section { padding: 22px 7px; border-radius: 15px; }
}
@media (max-width: 570px) {
  .cookie-modal { padding: 15px 7px 13px 7px; min-width: unset; }
}

/*****************************************
   MISC: Fun Animations & Microinteractions
******************************************/
.card, .service-card, .feature-item {
  transition: background 0.23s, box-shadow 0.21s, transform 0.17s;
}
.card:hover, .service-card:hover, .feature-item:hover {
  box-shadow: 0 8px 34px #FDB81326, 0 1px 2px #fff;
  transform: scale(1.02) rotate(-1.5deg);
  background: #ecf6fa;
}
.cta-btn:active, .cta-btn:focus {
  box-shadow: 0 0px 2px #15517444;
}

/* Subtle pop for hovered nav links */
.main-nav a:hover, .mobile-nav a:hover {
  transform: translateY(-2px) scale(1.05) skewX(-2deg);
  background: #FDB813;
  color: #155174;
}

/*****************************************
   PLAYFUL VISUALS (decorative blobs)
   (can be used as absolutely positioned svg backgrounds)
******************************************/
.blob-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

/*****************************************
       ACCESSIBILITY & FOCUS
******************************************/
:focus-visible, button:focus-visible, a:focus-visible {
  outline: 3px solid #FDB813;
  outline-offset: 2px;
}

/*****************************************
      SPACING CONSISTENCY & WHITE SPACE
******************************************/
section, .section, .case-study, .cta-section, .thank-you-section {
  margin-bottom: 60px;
}
.card-container, .services-list, .feature-grid {
  gap: 24px;
}
.card, .service-card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
}
.content-grid, .text-image-section {
  gap: 20px;
}

/*****************************************
      EXTRAS: Hide elements for prints
******************************************/
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-consent-banner, .cookie-modal, header, footer {
    display: none !important;
  }
  body { background: #fff; color: #111; }
}
