/* --- 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;
}
html {
  scroll-behavior: smooth;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FFFEEF;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #20303C;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
img { max-width: 100%; height: auto; border: none; display: block; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; margin: 0; padding: 0; }
input, textarea, select { font: inherit; outline: none; }

/* --- BRAND FONTS (requires Montserrat & Roboto from Google Fonts in HTML or via font-face) --- */
h1, h2, h3, h4, h5, h6, .logo {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ---- COLOR VARIABLES & FALLBACKS ---- */
:root {
  --color-primary: #20303C;
  --color-secondary: #F4CB56;
  --color-accent: #FFFFFF;
  --color-dark: #20303C;
  --color-light: #FFFEEF;
  --color-fun-blue: #60B6FF;
  --color-fun-pink: #FF90B9;
  --color-fun-green: #38E6B8;
  --color-grey: #E5E7EA;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-accent);
  border-radius: 22px;
  box-shadow: 0 4px 14px rgba(32,48,60,0.05), 0 2px 10px 0 rgba(244,203,86,0.07);
  padding: 30px 24px;
  min-width: 220px;
  transition: transform 0.16s cubic-bezier(.4,1.2,.33,1), box-shadow 0.19s cubic-bezier(.66,.24,.16,1.51);
}
.card:hover {
  transform: translateY(-8px) scale(1.03) rotate(-2deg);
  box-shadow: 0 10px 26px rgba(32, 48, 60, 0.18), 0 3px 14px 0 rgba(244,203,86,0.12);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--color-light);
  box-shadow: 0 2px 12px rgba(32,48,60,0.10), 0 0.5px 5px 0 rgba(244,203,86,0.08);
  border-radius: 20px;
  margin-bottom: 20px;
  min-width: 260px;
  border-left: 8px solid var(--color-fun-blue);
  position: relative;
  transition: border-color 0.25s;
}
.testimonial-card:hover {
  border-left: 8px solid var(--color-fun-pink);
}
.testimonial-card blockquote {
  font-size: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-dark);
  font-weight: 600;
  background: none;
  border: none;
  text-align: left;
}
.testimonial-card span {
  font-size: 14px;
  color: var(--color-primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  opacity: 0.85;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--color-accent);
  box-shadow: 0 4px 19px rgba(244,203,86,0.10), 0 1.5px 8px rgba(32,48,60,0.03);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {height: 46px; width: auto; display: block; animation: logo-pop 0.9s cubic-bezier(.65,1.65,.24,1) 1;}

@keyframes logo-pop {
  0% {transform: scale(0.7) rotate(-8deg);opacity:0;}
  60% {transform: scale(1.08) rotate(3deg);opacity:1;}
  100% {transform: scale(1) rotate(0);}
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.main-nav a {
  padding: 7px 14px;
  border-radius: 12px;
  color: var(--color-primary);
  transition: background 0.19s, color 0.19s, box-shadow 0.14s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-dark);
  box-shadow: 0 1px 6px rgba(244,203,86,0.18);
}

.btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border: none;
  border-radius: 16px;
  padding: 12px 30px;
  font-size: 18px;
  line-height: 1.2;
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 3px 16px rgba(244,203,86,0.19), 0 1px 1.5px 0 rgba(32,48,60,.03);
  transition: box-shadow 0.25s, transform 0.17s, background 0.17s;
}
.btn:active {
  transform: scale(0.95);
  background: #FFE787;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: var(--color-fun-blue);
  color: #fff;
  box-shadow: 0 6px 20px rgba(96,182,255,.17);
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-dark);
  font-size: 32px;
  border-radius: 14px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background 0.20s, box-shadow 0.12s;
  z-index: 101;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:hover {
  background: var(--color-fun-pink);
  color: #FFF;
  box-shadow: 0 2px 10px #ffaaeb23;
}

/* --- MOBILE NAV MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 350px;
  max-width: 100vw;
  background: var(--color-fun-blue);
  box-shadow: -10px 0 20px rgba(32,48,60,.16);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.39,1.24,.59,.88);
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 32px;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 201;
  width: 42px;
  height: 42px;
  border-radius: 9px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #fff4;
  color: #111;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.mobile-nav a {
  color: #fff;
  font-size: 22px;
  padding: 12px 0 12px 4px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  font-weight: 600;
  min-width: 120px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-secondary);
  background: rgba(255,255,255,0.09);
  letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 10px;
    font-size: 15px;
  }
  .btn {
    font-size: 16px;
    padding: 10px 22px;
  }
}
@media (max-width: 915px) {
  header .container {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
  }
  .main-nav { font-size: 14px; gap: 5px; }
}
@media (max-width: 860px) {
  .main-nav { display: none; }
  .btn.btn-primary { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* --- HERO SECTIONS AND HEADINGS --- */
.hero {
  background: linear-gradient(87deg, var(--color-fun-green) 0 52%, var(--color-secondary) 52% 100%, #FFFEEF 100% 100%);
  min-height: 350px;
  padding: 64px 0 54px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  justify-content: center;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 6px;
  color: var(--color-primary);
  text-shadow: 1px 2px 0 #F4CB5640;
  line-height: 1.1;
  animation: h1-dropin 0.82s cubic-bezier(.55,1.46,.24,1) 1;
}
@keyframes h1-dropin {
  0% {opacity:0;transform:translateY(-30px) scale(.92) rotate(-2deg);}
  70%{opacity:.96;transform:translateY(4px) scale(1.04) rotate(4deg);}
  100%{opacity:1;transform:none;}
}
.hero .subheadline {
  color: #aa8312;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 22px;
  margin-bottom: 26px;
  opacity: 0.89;
  line-height: 1.5;
  font-weight: 500;
}

/* --- SECTION STYLES & SPACING --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 24px;
  box-shadow: 0 1.5px 8px rgba(244,203,86,0.04);
}
.features, .services, .about, .contact {
  margin-bottom: 60px;
  padding: 40px 0;
}
.features .container, .services .container, .about .container, .contact .container {
  gap: 36px;
}
.features h2, .services h2 {
  font-size: 32px;
  margin-bottom: 16px;
}
.features ul, .services ul { /* Features grid as flex! */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 14px;
}
.features ul li, .services ul li {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 1.25px 5px rgba(244,203,86,0.08), 0 0.5px 2px rgba(32,48,60,0.04);
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1.45;
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 0 220px;
  max-width: 320px;
  position: relative;
  transition: box-shadow 0.18s, background 0.18s;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.features ul li img, .services ul li img {
  width: 38px;
  height: 38px;
  margin-right: 8px;
  flex-shrink: 0;
  animation: icon-bounce 1.4s cubic-bezier(.46,2.1,.63,.97) infinite alternate;
}
@keyframes icon-bounce {
  from {transform:translateY(0);}
  to {transform:translateY(-9px) rotate(-3deg);}
}
.features ul li b {
  color: var(--color-fun-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
}
.services ul li strong {
  color: var(--color-fun-pink);
  font-size: 17px;
  display: inline-block;
  margin-top: 18px;
}

.about h1, .contact h1, .features h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-primary);
}
.about h2, .about h3, .contact h2, .features h2, .features h3 {
  font-size: 26px;
  margin-top: 22px;
  color: var(--color-fun-pink);
  font-weight: 700;
}
.text-section {
  font-size: 17px;
  color: var(--color-primary);
  gap: 16px;
}
.text-section a {
  color: var(--color-fun-blue);
  text-decoration: underline;
  font-weight: 600;
}
.text-section a:hover {
  color: var(--color-fun-pink);
  text-decoration: none;
}

/* --- ADDRESS / CONTACT BLOCKS --- */
.contact-details, .address-map {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 17px;
}
.contact-details img {
  vertical-align: middle;
  margin-right: 10px;
  height: 24px;
  width: 24px;
}
.address-map h2 {
  font-size: 22px;
  margin-bottom: 7px;
}
.address-map p {
  font-size: 16px;
}

/* --- FOOTER --- */
footer {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 -3px 22px rgba(32, 48, 60, 0.10);
  padding: 40px 0 24px 0;
  font-size: 16px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.footer-menu a {
  color: var(--color-primary);
  padding: 4px 0;
  transition: color 0.17s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: var(--color-fun-blue);
}
.brand-info {
  flex-direction: column;
  align-items: center;
  display: flex;
  gap: 7px;
}
.brand-info img {
  width: 44px;
  height: 44px;
  margin-bottom: 2px;
}
.brand-info span {
  font-size: 15px;
  color: var(--color-primary);
  font-weight: 600;
  opacity: .80
}
footer .contact-details {
  font-size: 15px;
  gap: 7px;
  color: var(--color-primary);
}
footer .contact-details img {
  width: 18px; height: 18px;
  margin-right: 4px;
}

/* --- TESTIMONIAL SECTION ADJUSTMENTS --- */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
@media (max-width: 1200px) {
  .testimonials .content-wrapper {
    gap: 18px;
  }
}

/* --- MISCELLANEOUS --- */
::-webkit-scrollbar { width: 10px; background: #F9F4D8; }
::-webkit-scrollbar-thumb { background: #ffe191; border-radius: 14px; }

/* Section spacing fix for stacked edge */
main>section:not(:last-child) {
  margin-bottom: 60px;
}

/* --- PLAYFUL ANIMATIONS --- */
.btn, .main-nav a, .mobile-nav a, .card, .testimonial-card, .footer-menu a {
  transition: 
    background 0.18s,
    color 0.18s,
    box-shadow 0.18s,
    transform 0.16s,
    border-color 0.17s;
}

.card {
  animation: card-floatin 2.5s cubic-bezier(.23,1.42,.91,.97) infinite alternate;
}
@keyframes card-floatin {
  from {transform: translateY(0) scale(1);}
  to   {transform: translateY(-5px) scale(1.015);}
}

/* Details for playful bullets and icons in lists */
.features ul li:before, .services ul li:before {display:none;}

/* Headings */
h1 { font-size: 48px; margin-bottom: 10px; color: var(--color-primary); }
h2 { font-size: 32px; margin-bottom: 8px; color: var(--color-fun-pink); }
h3 { font-size: 24px; margin-bottom: 4px; color: var(--color-fun-blue); }
h4, h5, h6 { font-size: 18px; }

/* Section paddings for mobile/desktop */
@media (max-width: 768px) {
  .container { padding-left: 9px; padding-right: 9px; }
  .hero { min-height: 190px; padding: 36px 0; }
  .hero h1 { font-size: 32px; }
  .hero .subheadline { font-size: 16px; }
  .features .container, .services .container, .about .container, .contact .container {
    gap: 18px;
  }
  .features ul, .services ul {
    gap: 12px;
  }
  .features ul li, .services ul li {
    font-size: 15px;
    padding: 15px 10px;
    min-width: 145px;
    max-width: unset;
  }
  .section { padding: 26px 8px; margin-bottom: 36px; }
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 12px;
  }
}

/* --- RESPONSIVE FLEX COLUMN FOR TEXT-IMAGE SECTIONS --- */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
  .content-grid { flex-direction: column; gap: 15px; }
  .card-container { flex-direction: column; gap: 14px; }
}

/* --- COOKIE BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: var(--color-dark);
  color: #fff;
  box-shadow: 0 -2px 28px #20303C22;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 19px;
  padding: 18px 24px;
  font-size: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.34;
  transition: transform 0.25s, opacity 0.18s;
  border-radius: 24px 24px 0 0;
  animation: cookie-slideup 0.49s cubic-bezier(.43,1.61,.61,.83);
}
@keyframes cookie-slideup {
  0%{transform:translateY(150%);opacity:0;}
  90%{transform:translateY(-3%);}
  100%{transform:translateY(0);opacity:1;}
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
}
.cookie-banner button {
  font-size: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 12px 26px;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.13s, color 0.14s, transform 0.13s;
  outline: none;
}
.cookie-banner .btn-accept {
  background: var(--color-fun-green);
  color: var(--color-dark);
}
.cookie-banner .btn-accept:hover {
  background: var(--color-fun-blue);
  color: #fff;
}
.cookie-banner .btn-reject {
  background: var(--color-fun-pink);
  color: #fff;
}
.cookie-banner .btn-reject:hover {
  background: var(--color-secondary);
  color: #111;
}
.cookie-banner .btn-settings {
  background: var(--color-grey);
  color: var(--color-dark);
}
.cookie-banner .btn-settings:hover {
  background: var(--color-fun-blue);
  color: #fff;
}

/* Cookie Modal Overlay & Content */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32, 48, 60, 0.74);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: fadein 0.2s;
}
@keyframes fadein {0%{opacity:0;}100%{opacity:1;}}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 40px #20303c30;
  padding: 32px 28px 22px 32px;
  max-width: 430px;
  width: 100%;
  position: relative;
  animation: modal-scalein 0.24s cubic-bezier(.43,1.2,.61,1.07);
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
}
@keyframes modal-scalein {
  0%{transform:scale(.85) translateY(52px);opacity:.13;}
  86%{transform:scale(1.04) translateY(-9px);}
  100%{transform:scale(1) translateY(0);opacity:1;}
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: #f7f7f7;
  color: #20303C;
  border: none;
  font-size: 27px;
  border-radius: 7px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-close:hover {
  background: var(--color-fun-blue);
  color: #fff;
}
.cookie-modal h2 {
  font-size: 25px; margin-bottom: 13px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 17px;
  font-weight: 600;
}
.cookie-toggle {
  width: 40px; height: 22px;
  border-radius: 22px;
  background: #dbdbdb;
  position: relative;
  display: inline-block;
  transition: background 0.13s;
  cursor: pointer;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--color-fun-green);
}
.cookie-toggle .switch {
  position: absolute;
  top: 2.5px; left: 3px;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.16s cubic-bezier(.22,1.5,.63,1.01);
  box-shadow: 0 1.5px 5px #0001;
}
.cookie-toggle[aria-checked="true"] .switch {
  left: 20px;
}
.cookie-modal .category-desc {
  font-size: 14px;
  color: #556;
  opacity: 0.85;
}

.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 23px;
}
.cookie-modal button {
  padding: 10px 22px;
  border-radius: 11px;
  font-weight: 700;
}
.cookie-modal .btn-save {
  background: var(--color-fun-green);
  color: #20303C;
}
.cookie-modal .btn-save:hover {
  background: var(--color-fun-blue);
  color: #fff;
}
.cookie-modal .btn-cancel {
  background: #ececec;
  color: #20303C;
}
.cookie-modal .btn-cancel:hover {
  background: var(--color-fun-pink);
  color: #fff;
}
/* --- END COOKIE BANNER & MODAL --- */

/* ---- TYPOGRAPHY SCALE ---- */
html { font-size: 16px; }
@media (max-width: 700px) { html { font-size: 15px; } }
@media (max-width: 430px) { html { font-size: 14px; } }

/* --- VISUAL HIERARCHY & SPACING --- */
p, .text-section p, ul li, .contact-details p, .address-map p {
  margin-bottom: 10px;
  font-size: 17px;
  font-family: 'Roboto', Arial, sans-serif;
}
ul, ol {
  margin-bottom: 16px;
  gap: 13px;
}
li { line-height: 1.44; }
b { font-weight: 700; opacity: 0.92; color: var(--color-fun-blue); }

/* --- Z-INDEX CONTROL --- */
header, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal, .cookie-modal-overlay { z-index: 100; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 2500; }
.cookie-modal-overlay, .cookie-modal { z-index: 3100; }

/* --- CARD-LIKE BLOCKS --- */
.card, .testimonial-card, .features ul li, .services ul li {
  border-radius: 22px;
  box-shadow: 0 4px 14px rgba(32,48,60,0.06), 0 2px 10px 0 rgba(244,203,86,0.05);
}

/* Utility spacing */
.mb-0 {margin-bottom:0!important;}
.mb-1 {margin-bottom:8px!important;}
.mb-2 {margin-bottom:16px!important;}
.mb-3 {margin-bottom:24px!important;}
.mb-4 {margin-bottom:32px!important;}
.mt-2 {margin-top:16px!important;}
.mt-3 {margin-top:24px!important;}
.gap-1 {gap:10px;}
.gap-2 {gap:20px;}
.gap-3 {gap:32px;}

/* --- FOCUS STYLES --- */
a:focus, button:focus {
  outline: 2.5px dashed var(--color-fun-pink);
  outline-offset: 3px;
}

/* --- PRINT --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {display:none!important;}
  body {background:#fff!important;}
  .container {width:100%!important;padding:0!important;}
}
