/* =====================================================================
RESET & NORMALIZE (mobile-first, accessible, no grid, Flexbox only)
====================================================================== */
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;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #F8F9FA;
  color: #2E2B23;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

img,svg {
  display: block;
  max-width: 100%;
  height: auto;
}

*:focus {
  outline: 2px solid #73A2A8;
  outline-offset: 2px;
}

ul, ol {
  list-style: none;
}

a {
  color: #28516A;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}

a:hover, a:focus {
  color: #507b33;
}

button, .cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
}

/* =====================================================================
COLOR Palette ORGANIC NATURE
====================================================================== */
:root {
  --brand-primary: #28516A; /* main brand blue */
  --brand-secondary: #73A2A8; /* light blue-green */
  --brand-accent: #F8F9FA; /* off-white */
  --nature-green: #507b33;
  --earth-olive: #C1B292;
  --earth-brown: #764B19;
  --sand-beige: #EFEAD7;
  --text-dark: #2E2B23;
  --text-light: #FCFAF6;
  --light-grey: #EDEDED;
  --shadow: 0 2px 8px 0 rgba(44, 68, 48, 0.06);
}

/* =====================================================================
TYPOGRAPHY
====================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 16px;
  line-height: 1.15;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 { font-size: 1.1rem; margin-bottom: 8px; }

@media (max-width: 768px) {
  h1 {font-size: 1.8rem;}
  h2 {font-size: 1.3rem;}
  h3 {font-size: 1.08rem;}
}

strong, b { color: var(--nature-green); font-weight: 700; }

p, li, span {
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--text-dark);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}

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

@media (min-width: 769px) {
  .content-wrapper {
    gap: 32px;
  }
}

/* =====================================================================
HEADER & NAVIGATION (flexbox only)
====================================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(120,110,52,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: 0;
  padding-bottom: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.desktop-nav {
  display: flex;
  gap: 24px;
}
.desktop-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--brand-primary);
  padding: 8px 0;
  border-bottom: 2.5px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  position: relative;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  color: var(--nature-green);
  border-bottom: 2.5px solid var(--nature-green);
}

.cta-btn {
  background: var(--nature-green);
  color: #fff;
  border-radius: 40px;
  padding: 10px 32px;
  display: inline-block;
  box-shadow: 0 1px 9px 0 rgba(44,68,48,0.12);
  margin-left: 18px;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  box-shadow: 0 4px 16px 0 rgba(44,68,48,0.16);
}

/* Hamburger Icon Mobile Menu */
.mobile-menu-toggle {
  background: #fff;
  color: var(--brand-primary);
  border: 2px solid var(--brand-secondary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--brand-secondary);
  color: #fff;
  border-color: var(--brand-primary);
}

/* Hide hamburger on desktop */
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Hide desktop nav on mobile */
@media (max-width: 1024px) {
  .desktop-nav, header .cta-btn {
    display: none !important;
  }
}

/* =====================================================================
MOBILE MENU OVERLAY
====================================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32, 49, 32, 0.98);
  z-index: 2010;
  transform: translateX(100vw);
  transition: transform 0.45s cubic-bezier(.7,.2,.21,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #fff;
  border: none;
  border-radius: 32px;
  color: var(--brand-primary);
  font-size: 2rem;
  width: 46px; height: 46px;
  align-self: flex-end;
  margin: 28px 20px 10px 0;
  cursor: pointer;
  box-shadow: 0 0 0 3px var(--brand-secondary);
  transition: background 0.2s, color 0.2s;
  z-index: 2015;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-primary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 18px 32px;
  margin-top: 14px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 22px;
  padding: 16px 0px;
  width: 100%;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: var(--nature-green);
}

@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* =====================================================================
SECTION, FLEX LAYOUTS (for all main sections)
====================================================================== */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  border-radius: 24px 80px 32px 24px/64px 32px 80px 24px;
  background: var(--sand-beige);
  box-shadow: var(--shadow);
  position: relative;
}

section.hero {
  background: linear-gradient(110deg, #F8F9FA 58%, var(--sand-beige) 100%);
  border-radius: 0 0 80px 0/0 0 64px 0;
  box-shadow: none;
  min-height: 290px;
}

section .container {
  padding-top: 16px; padding-bottom: 16px;
}

.features, .testimonials, .services, .about, .about-story, .team-testimonials, .legal, .contact, .contact-details {
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  section {
    padding-left: 10px; padding-right: 10px;
  }
}

/* =====================================================================
FLEXBOX CARDS, GRID & SECTION LAYOUTS
====================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 32px 16px 40px 16px /40px 18px 32px 12px;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  flex: 1 1 290px;
  min-width: 260px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(44, 68, 48, 0.18);
  transform: translateY(-4px) scale(1.01);
}
.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;
}

@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature {
  background: #fff;
  border-radius: 28px 42px 16px 32px/32px 24px 32px 13px;
  box-shadow: var(--shadow);
  padding: 28px 22px;
  flex: 1 1 calc(47% - 20px);
  min-width: 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border-left: 5.5px solid var(--nature-green);
  transition: box-shadow 0.20s, border-left-color 0.2s;
}
.feature img {
  width: 40px; height: 40px; margin-bottom: 0.6em;
}
.feature:hover,
.feature:focus-within {
  box-shadow: 0 4px 17px 0 rgba(44,68,48,0.15);
  border-left-color: var(--brand-secondary);
}

@media (max-width: 768px) {
  .feature-grid {
    justify-content: center;
    gap: 18px;
  }
  .feature {
    min-width: 220px;
    max-width: 100%;
    width: 100%;
    margin-bottom: 18px;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #FBFDFA;
  border-radius: 28px 14px 36px 18px/32px 16px 32px 12px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  min-width: 230px;
  flex: 1 1 280px;
  max-width: 410px;
  border-left: 4.5px solid var(--brand-primary);
  transition: border-color 0.20s, box-shadow 0.15s, background 0.18s;
}
.testimonial-card:hover {
  border-left: 4.5px solid var(--nature-green);
  background: var(--sand-beige);
  box-shadow: 0 5px 20px 0 rgba(44,68,48,0.14);
}
.testimonial-card p,
.testimonial-card strong {
  color: var(--text-dark);
}
.testimonial-card .stars img {
  width: 22px; height: 22px; margin-right: 1px;
  display: inline-block;
  filter: drop-shadow(0 1px 1px rgba(44,68,48,0.06));
}

.mini-testimonial {
  padding-left: 12px;
}

.team-member-bio {
  padding: 16px 20px;
  background: #fff;
  border-radius: 24px 12px 20px 10px/15px 14px 20px 12px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  max-width: 470px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.service-cards, .services .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #fff;
  border-radius: 20px 33px 14px 21px/19px 13px 20px 9px;
  box-shadow: var(--shadow);
  padding: 28px 19px;
  min-width: 230px;
  flex: 1 1 268px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-left: 5px solid var(--brand-primary);
  transition: border-color 0.18s, box-shadow 0.15s;
}
.service-card:hover {
  border-left: 5px solid var(--nature-green);
  box-shadow: 0 5px 16px 0 rgba(44,68,48,0.14);
}

@media (max-width: 900px) {
  .service-cards, .services .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

.benefit-list, .directions-list ul, .features ul, .about-story ul, .service-list, .maintenance-routines ul, .areas-covered ul, .overview-schedule ul, .cleaning-checklist ul {
  margin-left: 0 !important;
  list-style: disc inside;
  padding-left: 24px;
  margin-bottom: 18px;
}

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

.address-snippet, .location-snippet, .address-full, .direct-links, .phone-email, .opening-hours, .contact-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.address-snippet img,
.location-snippet img,
.address-full img { width: 26px; height: 26px; margin-right: 8px; }

.direct-links a {
  display: flex; align-items: center; gap: 8px;
  color: var(--brand-primary);
  font-weight: 500;
  background: #F2F5F3;
  padding: 8px 15px;
  border-radius: 12px;
  margin-right: 12px;
  margin-bottom: 4px;
  transition: background 0.13s;
}
.direct-links a:hover { background: var(--brand-secondary); color: #fff; }

.opening-hours img {
  width: 20px; height: 20px; margin-right: 5px;
}

@media (max-width: 600px) {
  .address-snippet, .location-snippet, .address-full, .direct-links, .phone-email, .opening-hours, .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* =====================================================================
FOOTER
====================================================================== */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 38px 0 18px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer a,
footer span,
footer .contact-info span {
  color: #fff; font-family: 'Roboto', Arial, sans-serif;
  font-size: 15px;
}

footer .main-links,
footer .legal-links,
footer .contact-info,
footer .social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 6px;
}
footer .main-links a, footer .legal-links a {
  color: #FCFCFC;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-right: 6px;
  font-weight: 500;
  transition: color 0.14s;
}
footer .main-links a:hover,
footer .legal-links a:hover {
  color: var(--nature-green);
}
footer .social-icons a {
  background: #fff;
  border-radius: 50%;
  margin-right: 2px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 1px 5px rgba(80,140,100,0.06);
  transition: background 0.17s;
}
footer .social-icons a:hover { background: var(--brand-secondary); }

footer .contact-info span {
  display: flex; align-items: center; gap: 6px;
}

footer .copyright {
  display: block;
  font-size: 13px;
  color: #D4DFE4;
  margin-top: 14px;
  letter-spacing: 0.02em;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  opacity: 0.7;
}

@media (max-width: 650px) {
  footer .container {
    gap: 8px;
  }
  footer .main-links, footer .legal-links, footer .contact-info, footer .social-icons {
    flex-direction: column; gap: 6px;
    align-items: flex-start;
  }
}

/* =====================================================================
LEGAL, POLICY, TERMS, GDPR PAGES
====================================================================== */
.legal {
  background: #fff;
  color: var(--text-dark);
  border-radius: 20px;
}
.privacy-policy-text, .terms-of-use-text, .cookie-policy-text, .gdpr-information-text {
  padding: 8px 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.privacy-policy-text h2, .terms-of-use-text h2, .cookie-policy-text h2, .gdpr-information-text h2 {
  color: var(--nature-green);
  margin-top: 22px;
}

/* =====================================================================
MICRO-INTERACTIONS, TRANSITIONS, ORGANIC STYLE
====================================================================== */
.feature, .feature-card, .card, .service-card, .testimonial-card, .team-member-bio, .mini-testimonial {
  transition: box-shadow 0.18s, border-color 0.18s, background 0.13s, transform 0.17s;
}

.feature:hover, .service-card:hover, .testimonial-card:hover, .team-member-bio:hover {
  transform: translateY(-2px) scale(1.012);
  box-shadow: 0 7px 20px 0 rgba(44,100,44,0.14);
}

.cta-btn:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(0.97);
}

/* Animate organic background shapes (subtle floating for hero, etc.)
 * (Could apply shape SVGs or pseudo-elements if they exist)
*/

/* =====================================================================
RESPONSIVE DESIGN – MOBILE FIRST
====================================================================== */
@media (max-width: 900px) {
  section {
    padding: 30px 0;
    border-radius: 14px 32px 22px 14px/32px 18px 32px 11px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 14px 0;
    margin-bottom: 30px;
  }
  .container {
    padding-left: 6px; padding-right: 6px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.03rem; }
  .feature,
  .service-card,
  .testimonial-card,
  .team-member-bio { padding: 16px 8px; border-radius: 13px 16px 13px 10px/13px 11px 15px 6px; }
}

/* =====================================================================
COOKIE CONSENT BANNER & MODAL
====================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2222;
  background: linear-gradient(90deg, var(--brand-accent), var(--sand-beige) 80%);
  color: var(--brand-primary);
  box-shadow: 0 -3px 24px rgba(44, 68, 48, 0.10);
  width: 100%;
  padding: 22px 12px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  font-size: 16px;
  border-radius: 26px 26px 0 0/60px 40px 0 0;
  animation: bannerIn 0.7s cubic-bezier(.84,.24,.17,1);
}

@keyframes bannerIn {
  from {transform: translateY(100%); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}

.cookie-btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--nature-green);
  color: #fff;
  padding: 8px 20px;
  border-radius: 15px;
  font-size: 15px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  margin: 0 3px 0 0;
  box-shadow: 0 1px 7px rgba(44,68,44,0.08);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-btn.reject:hover {
  background: var(--earth-brown);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-btn.settings:hover {
  background: var(--nature-green);
  color: #fff;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,49,32,0.58);
  z-index: 2800;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from {opacity:0;} to {opacity:1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 28px 44px 16px 27px/34px 14px 30px 10px;
  padding: 38px 25px 32px 25px;
  color: var(--brand-primary);
  box-shadow: 0 16px 44px rgba(44,68,44,0.15);
  max-width: 420px;
  min-width: 240px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalIn 0.32s cubic-bezier(.75,.12,.2,1.1);
  position: relative;
}
@keyframes modalIn {
  from {transform: translateY(80px) scale(0.96); opacity: 0;} to {transform: none; opacity:1;}
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category input[type="checkbox"] {
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 6px;
  border: 2.5px solid var(--brand-primary);
  transition: background 0.16s, border-color 0.13s;
  margin-right: 6px;
  background: #F8F9FA;
  cursor: pointer;
}
.cookie-category input[type="checkbox"]:checked {
  background: var(--nature-green);
  border-color: var(--nature-green);
}
.cookie-category label {
  font-size: 15px;
  color: var(--brand-primary);
}
.cookie-category.essential label {
  color: var(--nature-green);
  font-weight: 600;
}
.cookie-modal .cookie-btn-row {
  margin-top: 12px;
}
.cookie-modal .cookie-btn {
  margin-top: 0;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: #FCFAF6;
  color: var(--brand-primary);
  border: none;
  border-radius: 50%;
  width: 37px; height: 37px;
  font-size: 1.45rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
  z-index: 2801;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--brand-secondary);
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-modal {
    max-width: 96vw;
    padding: 18px 7px 20px 10px;
    border-radius: 13px 16px 13px 10px/13px 11px 15px 6px;
  }
}

/* =====================================================================
SPECIAL CLASSES & MISCELLANEOUS
====================================================================== */
.team-photo-placeholder {
  background: var(--light-grey);
  border-radius: 48px 15px 28px 8px/20px 14px 16px 13px;
  padding: 22px 0 12px 0;
  max-width: 188px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.map-integration-placeholder {
  background: var(--brand-secondary);
  color: #fff;
  padding: 20px 12px;
  border-radius: 18px 14px 14px 8px/14px 13px 12px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.case-study {
  background: #EFEAD7;
  color: var(--brand-primary);
  font-style: italic;
  font-size: 1rem;
  border-left: 4.5px solid var(--brand-secondary);
}

.confirmation {
  background: #E8F5E9;
  border-radius: 40px 80px 40px 20px/60px 32px 60px 20px;
  color: var(--brand-primary);
}
.confirmation .cta-btn {
  margin-top: 24px;
}

/* =====================================================================
PRINT SUPPORT
====================================================================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  section, .container, .content-wrapper { box-shadow: none !important; background: #fff !important; color: #000; }
}

/* =====================================================================
END OF CSS
====================================================================== */
