/* =============================================================
   CSS RESET & NORMALIZE | Mobile-First | No CSS Grid or Columns!
   ============================================================= */

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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  height: 100%;
  background: #F8F9FA;
  color: #263238;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
a {
  color: #7D6EC4;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #6D5DB3;
}
ul, ol {
  padding-left: 24px;
  margin: 0 0 16px 0;
}
li {
  margin-bottom: 8px;
}

/* =====================
   FONT IMPORTS
   ===================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600;700&display=swap');

/* =====================
   COLOR SCHEME (soft pastel)
   ===================== */
:root {
  --primary: #263238;
  --secondary: #B5A26A;
  --accent: #F8F9FA;

  --pastel-blue: #b4d6eb;
  --pastel-green: #cbe7df;
  --pastel-pink: #efd0e2;
  --pastel-yellow: #f7ecc2;
  --pastel-lavender: #e6e3f7;
  --pastel-peach: #ffe3d2;
  --card-bg: #fffaf7;
  --white: #fff;
  --text-main: #263238;
  --text-soft: #586168;
  --border-soft: #e5e8f0;
  --shadow: 0 3px 12px 0 rgba(160,170,190,0.09);
}

/* ===============================
   UNIVERSAL SPACING & LAYOUT
   =============================== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
main {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1.18;
  color: var(--primary);
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.09rem;
  margin-bottom: 8px;
}
p {
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: var(--primary);
}
.text-section {
  margin-bottom: 32px;
}
.text-section.trust {
  display: flex;
  align-items: center;
  background: var(--pastel-yellow);
  border-radius: 16px;
  padding: 16px 20px;
  color: var(--primary);
  font-weight: 600;
  gap: 8px;
  margin-bottom: 20px;
}

/* ============================
   HEADER + NAVIGATION
   ============================ */
header {
  background: linear-gradient(95deg, var(--pastel-blue) 60%, var(--pastel-green) 100%);
  box-shadow: 0 2px 16px 0 rgba(176, 195, 205, 0.09);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
  flex-wrap: wrap;
}
nav.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 14px;
  font-size: 1rem;
  color: var(--primary);
  border-radius: 8px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
}
nav.main-nav a.cta.primary {
  background: var(--secondary);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 18px;
  font-weight: 700;
  box-shadow: 0 3px 10px 0 rgba(181, 162, 106, .08);
  transition: background 0.18s, box-shadow .25s;
}
nav.main-nav a.cta.primary:hover, nav.main-nav a.cta.primary:focus {
  background: #a08c53;
  color: #fff;
  box-shadow: 0 8px 24px 0 rgba(181, 162, 106, .17);
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: var(--pastel-blue);
}
header img {
  max-height: 46px;
}
.mobile-menu-toggle {
  display: block;
  background: var(--secondary);
  color: var(--white);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-self: flex-end;
  cursor: pointer;
  transition: background 0.17s, box-shadow .21s;
  outline: none;
  z-index: 103;
  margin-left: auto;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #a08c53;
  box-shadow: 0 5px 16px 0 rgba(181,162,106,.10);
}

/* ===============================
   MOBILE NAV OVERLAY & ANIMATION
   =============================== */
.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 200;
  background: linear-gradient(135deg, var(--white) 80%, var(--pastel-pink) 100%);
  transform: translateX(100vw);
  transition: transform .38s cubic-bezier(.49,.67,.11,1.2);
  box-shadow: 0 8px 48px 0 rgba(181,162,106,0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--pastel-blue);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-self: flex-end;
  margin: 24px 24px 14px 0;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 202;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--pastel-lavender);
  color: #6D5DB3;
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 30px;
  margin-top: 32px;
  gap: 18px;
}
.mobile-menu nav.mobile-nav a {
  color: var(--primary);
  background: transparent;
  border-radius: 10px;
  font-size: 1.17rem;
  padding: 13px 6px 13px 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  width: 100%;
  transition: background 0.17s, color 0.18s;
}
.mobile-menu nav.mobile-nav a:hover, .mobile-menu nav.mobile-nav a:focus {
  background: var(--pastel-lavender);
  color: #7D6EC4;
}

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

/* =============================
   HERO SECTION
   ============================= */
.hero {
  background: linear-gradient(110deg, var(--pastel-blue) 50%, var(--pastel-pink) 100%);
  padding: 60px 0 48px 0;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 6px 24px rgba(197, 204, 219, 0.09);
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 650px;
  gap: 22px;
}
.hero h1 {
  font-size: 2.1rem;
}
.hero p {
  font-size: 1.15rem;
  color: var(--text-main);
}
@media (min-width: 600px) {
  .hero h1 {
    font-size: 2.6rem;
  }
}
@media (min-width: 900px) {
  .hero h1 {
    font-size: 3rem;
  }
}

/* =============================
   FEATURES, CARDS, FLEX PATTERNS
   ============================= */
.features, .feature-grid, .content-grid, .card-container {
  width: 100%;
}
.features .content-wrapper,
.card-container,
.feature-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid {
  width: 100%;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.feature-grid li {
  flex: 1 1 210px;
  max-width: 250px;
  min-width: 180px;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.16s;
  border: 1px solid var(--border-soft);
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 10px 36px 0 rgba(181,162,106,0.09);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  border-radius: 8px;
}
.feature-grid h3 {
  margin-bottom: 0;
}

.card-container {
  gap: 24px;
  flex-wrap: wrap;
}
.card {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  min-width: 240px;
  max-width: 330px;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.21s, transform 0.17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px rgba(181,162,106,0.14);
  transform: translateY(-3px) scale(1.02);
}

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

/* =============================
   FLEXBOX ALIGNMENT
   ============================= */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================
   TESTIMONIALS, CARDS, SHADOWS
   ============================= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: var(--pastel-lavender);
  color: var(--primary);
  box-shadow: var(--shadow);
  font-size: 1.04rem;
  margin-bottom: 32px;
  border: 1.5px solid #eee9fa;
}
.testimonial-card .text-section {
  margin-bottom: 0;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.54;
}
.testimonial-card span {
  display: block;
  font-size: 0.97rem;
  margin-top: 8px;
  color: var(--text-soft);
}

.quick-fact-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}
.quick-fact-boxes div {
  background: var(--pastel-peach);
  border-radius: 13px;
  padding: 13px 17px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  min-width: 180px;
  box-shadow: 0 2.5px 8px 0 rgba(255,176,110,.068);
  font-size: 1.13rem;
}

.short-building-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 12px 0;
}
.short-building-profiles > div {
  background: var(--pastel-yellow);
  border-radius: 10px;
  padding: 16px 12px;
  min-width: 180px;
  box-shadow: 0 2.5px 8px rgba(220,180,90,0.07);
  color: var(--primary);
  flex: 1 1 160px;
  margin-bottom: 10px;
}

/* =============================
   TABLE STYLING (comparison-table)
   ============================= */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 30px;
  background: var(--card-bg);
  box-shadow: 0 2px 8px rgba(181,162,106,0.04);
  border-radius: 12px;
  overflow: hidden;
}
.comparison-table th, .comparison-table td {
  padding: 14px 10px;
  border-bottom: 1.5px solid var(--pastel-blue);
  text-align: left;
  font-size: 1.02rem;
}
.comparison-table th {
  background: var(--pastel-blue);
  color: var(--primary);
  font-weight: 700;
}
.comparison-table tr:last-child td, .comparison-table tr:last-child th {
  border-bottom: none;
}

/* =============================
   BUTTONS, C.T.A.
   ============================= */
.cta, .cta.primary, .cta.secondary {
  border-radius: 40px;
  padding: 12px 34px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.11rem;
  color: var(--white);
  background: var(--secondary);
  border: none;
  margin-top: 12px;
  box-shadow: 0 3px 14px 0 rgba(181,162,106,.09);
  cursor: pointer;
  transition: background 0.17s, box-shadow .18s, color .13s;
  text-align: center;
  display: inline-block;
  min-width: 190px;
}
.cta.secondary {
  background: var(--pastel-pink);
  color: var(--primary);
  box-shadow: none;
  margin-left: 10px;
}
.cta.primary:hover, .cta.primary:focus {
  background: #a08c53;
  color: #fff;
  box-shadow: 0 6px 28px 0 rgba(181,162,106,0.14);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--pastel-yellow);
  color: #7D6EC4;
}

button, .button, input[type=submit], input[type=button] {
  font-family: inherit;
  border: none;
  outline: none;
  transition: background .18s, color .16s, box-shadow .13s;
  cursor: pointer;
}

/* =============================
   ABOUT, SERVICES, CONTACT, TEXT
   ============================= */
.about, .services, .contact {
  background: var(--pastel-green);
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 38px 0;
  box-shadow: 0 6px 36px 0 rgba(197, 204, 219, 0.07);
}
.about .content-wrapper,.services .content-wrapper, .contact .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact .cta.primary {
  margin-top: 18px;
}

/* =============================
   FOOTER
   ============================= */
footer {
  background: linear-gradient(90deg, var(--pastel-pink) 70%, var(--pastel-blue) 100%);
  padding: 34px 0 22px 0;
  color: var(--primary);
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -6px 24px rgba(197, 204, 219, 0.05);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 6px;
}
.footer-links a {
  color: var(--primary);
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.15s;
  font-size: 1rem;
}
.footer-links a:hover, .footer-links a:focus {
  background: var(--pastel-lavender);
}
.social-media-links {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
}
.social-media-links a img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--pastel-blue);
  transition: box-shadow 0.13s, background 0.16s;
  box-shadow: 0 2px 9px rgba(160,170,180,0.09);
}
.social-media-links a:hover img {
  background: var(--pastel-peach);
  box-shadow: 0 7px 24px 0 rgba(255,176,110,.12);
}
footer p {
  color: var(--primary);
  font-size: 14px;
  margin: 0;
  opacity: 0.86;
}

/* =============================
   COOKIE CONSENT BANNER
   ============================= */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--pastel-pink);
  color: var(--primary);
  border-top: 2px solid var(--border-soft);
  box-shadow: 0 -2px 24px 0 rgba(196, 188, 216, 0.08);
  z-index: 1090;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 18px 20px 18px;
  font-size: 1rem;
  animation: cookie-in 0.65s cubic-bezier(.2,.7,.2,1);
}
@keyframes cookie-in {
  from { transform: translateY(160px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}
.cookie-consent-banner button {
  border-radius: 32px;
  padding: 9px 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  border: none;
  margin: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, box-shadow 0.15s;
}
.cookie-consent-banner .accept {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(181,162,106,.07);
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus {
  background: #a08c53;
  color: #fff;
}
.cookie-consent-banner .reject {
  background: var(--pastel-blue);
  color: var(--primary);
}
.cookie-consent-banner .reject:hover, .cookie-consent-banner .reject:focus {
  background: var(--pastel-lavender);
  color: var(--primary);
}
.cookie-consent-banner .settings {
  background: var(--pastel-peach);
  color: var(--primary);
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  background: var(--pastel-yellow);
}

/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: var(--card-bg);
  border-radius: 26px;
  padding: 34px 28px 24px 28px;
  box-shadow: 0 10px 48px 0 rgba(146,146,166,0.17);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  max-width: 96vw;
  max-height: 95vh;
  overflow-y: auto;
  animation: modal-in 0.52s cubic-bezier(.18, .72, .24, 1.18);
}
@keyframes modal-in {
  0% { transform: translate(-50%,100%) scale(.85); opacity: 0.1; }
  100% { transform: translate(-50%,0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}
.cookie-category {
  margin-bottom: 19px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-size: 1.06rem;
  color: var(--primary);
  font-weight: 600;
}
.cookie-category input[type="checkbox"]:disabled + label {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal-footer {
  display: flex;
  gap: 15px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 23px; top: 23px;
  background: var(--pastel-blue);
  color: var(--primary);
  border-radius: 50%;
  font-size: 1.47rem;
  border: none;
  width: 40px; height: 40px;
  z-index: 2022;
  transition: background 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--pastel-yellow);
}

@media (max-width:540px) {
  .cookie-modal { padding: 16px 6vw 14px 6vw; }
}

/* =============================
   RESPONSIVE DESIGN
   ============================= */
@media (max-width: 1023px) {
  .container { max-width: 94vw; }
  nav.main-nav { display: none; }
  .footer-links { flex-wrap: wrap; }
}
@media (max-width: 900px) {
  .feature-grid { gap: 16px; }
  .feature-grid li { min-width: 140px; max-width: 100%; padding: 16px 11px; }
  .testimonial-card { flex-direction: column; gap: 10px; font-size: 1.0rem; }
  .short-building-profiles { flex-direction: column; gap: 13px; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .hero {
    padding: 45px 0 26px 0;
    border-radius: 0 0 20px 20px;
    margin-bottom: 34px;
  }
  .section {
    margin-bottom: 38px;
    padding: 28px 7px;
  }
  .about, .services, .contact {
    padding: 28px 0;
    margin-bottom: 40px;
  }
  .card, .feature-grid li {
    padding: 15px 10px;
    margin-bottom: 10px;
    min-width: 120px;
  }
}
@media (max-width: 540px) {
  .hero h1 { font-size: 1.25rem; }
  .hero p { font-size: 1rem; }
  h2 { font-size: 1.28rem; }
  h3 { font-size: 1.11rem; }
  .testimonial-card { font-size: 0.98rem; padding: 11px 8px; }
  .cookie-consent-banner { padding: 15px 9px 12px 9px; }
}

/* =============================
   MICRO-INTERACTIONS & EFFECTS
   ============================= */
a, .cta, .feature-grid li, .card, .footer-links a, .mobile-menu-toggle, .mobile-menu-close, .cookie-consent-banner button {
  transition: background .16s, box-shadow .19s, color .15s, transform .16s;
}

/* Hover effect for cards/feature items */
.feature-grid li:hover, .card:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 9px 36px 0 rgba(181,162,106,.12);
}
a:active, .cta:active { transform: scale(0.97); }

/* =============================
   INPUTS, FORMS, ETC. (if used in future)
   ============================= */
input, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  background: var(--accent);
  border: 1.5px solid var(--pastel-blue);
  border-radius: 8px;
  padding: 11px 14px;
  margin-bottom: 14px;
  color: var(--primary);
  transition: border .16s, box-shadow .13s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border: 1.8px solid var(--secondary);
  box-shadow: 0 2px 8px 0 rgba(181,162,106,.07);
}

/* =============================
   SPECIAL ELEMENTS/SECTIONS
   ============================= */
ol {
  padding-left: 24px;
}
.services ol {
  margin-bottom: 12px;
}
.services .cta.primary { margin-top: 10px; }

/* Hide outline for mouse users, show for keyboard (":focus-visible") */
*:focus:not(:focus-visible) {
  outline: none;
}
*:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* =============================
   UTILITIES
   ============================= */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.gap-16 { gap: 16px !important; }
.text-center { text-align: center !important; }
.flex-center { justify-content: center; align-items: center; display: flex; }

/* =============================
   PRINT STYLES
   ============================= */
@media print {
  header, nav, .mobile-menu, .cookie-consent-banner, footer { display: none !important; }
  .container, body { background: #fff !important; color: #000 !important; }
}
