/* =============================
   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,
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F8F6F3;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F8F6F3;
  color: #374151;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
}

*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #2055A8;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #17A399;
  outline: none;
}
img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
}
ul, ol {
  padding-left: 24px;
}

/* =============================
   VARIABLES & BRAND COLORS
============================= */
:root {
  --primary: #2055A8;
  --secondary: #17A399;
  --accent: #F4F7FB;
  --danger: #e8593b;
  --warning: #f5be2a;
  --success: #15c47a;
  --neutral-bg: #F8F6F3;
  --heading-font: 'Montserrat', Arial, Helvetica, sans-serif;
  --body-font: 'Open Sans', Arial, Helvetica, sans-serif;
  --radius-lg: 20px;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 20px 0 rgba(32,85,168,0.06), 0 1.5px 4px 0 rgba(23,163,153,0.06);
  --shadow-card: 0 3px 16px 0 rgba(32,85,168,0.08);
  --transition: all 0.25s cubic-bezier(0.33,1,0.68,1);
}

/* =============================
   TYPOGRAPHY & HEADINGS
============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: #2d3844;
  line-height: 1.1;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.15rem;
  color: #2055A8;
  margin-bottom: 24px;
  font-weight: 500;
}

/* =============================
   BUTTONS
============================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  background: var(--primary);
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  gap: 10px;
  margin-top: 16px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  border-radius: var(--radius);
  background: #FFDDB0;
  color: #2055A8;
  border: none;
  font-size: 1rem;
  font-family: var(--heading-font);
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-top: 12px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FFF2DF;
  color: var(--secondary);
}

/* =============================
   LAYOUTS & CONTAINERS
============================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

section {
  background: #fff;
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(32,85,168,0.13);
  z-index: 1;
}

.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) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F9F7F1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  min-width: 270px;
  max-width: 370px;
  flex: 1 1 340px;
  color: #253448;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(32,85,168,0.12);
}
.star-rating {
  font-family: var(--heading-font);
  color: #F5BE2A;
  font-size: 1.5rem;
  letter-spacing: 2px;
}
.customer {
  font-size: 0.98rem;
  font-weight: 600;
  color: #2055A8;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FAEED7;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

/* ======= Feature Grid ======= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-grid li {
  flex: 1 1 220px;
  background: #FAEED7;
  border-radius: var(--radius);
  padding: 28px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 210px;
  box-shadow: 0 2px 10px 0 rgba(245, 190, 42, 0.05);
  margin-bottom: 0;
  transition: box-shadow 0.22s;
}
.feature-grid li:hover {
  box-shadow: 0 7px 32px 0 rgba(245, 190, 42, 0.13);
}
.feature-grid img {
  margin-bottom: 8px;
  width: 36px;
  height: 36px;
}

/* ======= Service Lists ======= */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 10px 0 24px 0;
}
.service-list li {
  flex: 1 1 240px;
  background: #F4F7FB;
  border-radius: var(--radius);
  padding: 22px 18px 15px;
  box-shadow: 0 1px 6px 0 rgba(32,85,168,0.08);
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}
.service-list span {
  margin-top: 10px;
  font-weight: bold;
  color: #2055A8;
}

.detailed-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.detailed-service-list li {
  flex: 1 1 320px;
  background: #F4F7FB;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  align-items: flex-start;
  min-width: 270px;
  transition: box-shadow 0.19s;
}
.detailed-service-list li:hover {
  box-shadow: 0 15px 48px 0 rgba(32,85,168,0.08);
}
.detailed-service-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.detailed-service-list span {
  margin-top: 10px;
  font-weight: 700;
  color: #17A399;
}
.detailed-service-list .btn-secondary {
  margin-top: 15px;
}

.benefit-list,
.commitment-points,
.service-inclusions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}

/* =============================
   PRICING TABLE
============================= */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 22px;
  box-shadow: var(--shadow-card);
  background: #F4F7FB;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  background: #2055A8;
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1.08rem;
  font-weight: 700;
}
.pricing-table tbody tr:nth-child(even) {
  background: #F9F7F1;
}
.pricing-table tbody tr:nth-child(odd) {
  background: #FFFFFF;
}

/* =============================
   PARTNERS & PROJECTS
============================= */
.partner-logos {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.partner-logos img {
  width: 78px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
  margin-bottom: 0;
}
.project-summaries {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0;
}
.before-after-descriptions {
  margin: 18px 0 0 0;
}

/* =============================
   FOOTER & BRAND
============================= */
footer {
  background: #fff6eb;
  border-top: 4px solid #F6E3C3;
  box-shadow: 0 -2px 18px 0 rgba(245,190,42,0.04);
  padding: 40px 0 0 0;
  font-size: 0.98rem;
  margin-top: 64px;
  position: relative;
  z-index: 2;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #2055A8;
  font-size: 1rem;
  font-family: var(--heading-font);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--secondary);
}
.brand-footer {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 4px;
}
.brand-footer img {
  border-radius: 50%;
  width: 54px;
  height: 54px;
  box-shadow: var(--shadow-card);
}
.contact-snippet {
  font-size: 0.99rem;
  color: #888;
}
.social-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.social-links a img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px 0 rgba(32,85,168,0.07);
  transition: box-shadow 0.19s, background 0.2s;
  padding: 4px;
}
.social-links a:hover img {
  background: #f9e6d7;
  box-shadow: 0 4px 16px 0 rgba(32,85,168,0.10);
}

/* =============================
   HEADER & NAVIGATION
============================= */
header {
  box-shadow: 0 2px 16px 0 rgba(32,85,168,0.07);
  background: #fff;
  padding-top: 10px;
  z-index: 302;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
header img {
  width: 153px;
  margin-right: 18px;
  border-radius: var(--radius);
  background: #fff;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-right: auto;
  margin-left: 32px;
}
.main-nav a {
  color: #342700;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 1.07rem;
  padding: 7px 0;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--primary);
  background: #ede9e5;
}

.mobile-menu-toggle {
  display: none;
  background: #2055A8;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: var(--radius-lg);
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9999;
  transition: background 0.2s;
  margin-left: 16px;
}
.mobile-menu-toggle:focus {
  outline: 3px solid #FFDDB0;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(250, 238, 215, 0.97);
  box-shadow: 0 4px 36px 0 rgba(32,85,168,0.08);
  z-index: 20000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  align-items: flex-start;
  padding: 0 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 2rem;
  padding: 6px 18px;
  margin: 22px 0 18px 0;
  cursor: pointer;
  box-shadow: 0 3px 10px 0 rgba(32,85,168,0.12);
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  outline: 2px solid #FFDDB0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--heading-font);
  font-size: 1.34rem;
  color: #253448;
  background: none;
  padding: 14px 0;
  border-radius: var(--radius);
  transition: background 0.17s, color 0.16s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--primary);
  background: #f9e6d7;
}

/* ======= Responsive: Header/Nav ======= */
@media (max-width: 992px) {
  header .container {
    flex-direction: row;
    gap: 14px;
  }
}
@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    font-size: 1.05rem;
    padding: 10px 24px;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (max-width: 540px) {
  header .container {
    padding: 0 10px;
  }
}

/* =============================
   TESTIMONIALS SLIDER & LIST
============================= */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.short-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}

/* =============================
   FORMS, CONTACT & MAP
============================= */
.contact-info-block, .contact-information {
  background: #F4F7FB;
  border-radius: var(--radius-lg);
  padding: 20px 25px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info-block ul, .contact-information ul {
  margin-bottom: 0;
}
.office-hours {
  margin-top: 14px;
  font-weight: 500;
  font-size: 1.1rem;
  color: #2055A8;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #FAEED7;
  border-radius: var(--radius);
  padding: 16px 16px;
  color: #2c3844;
  font-size: 1rem;
  font-style: italic;
  box-shadow: 0 1px 6px 0 rgba(32,85,168,0.07);
  margin-top: 10px;
}
.map-placeholder img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
}

/* =============== TABLES (General) =============== */
table {
  border-collapse: collapse;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
th, td {
  padding: 12px 14px;
  text-align: left;
  font-size: 1rem;
  color: #222;
}
th {
  background: #2055A8;
  color: #fff;
  font-size: 1.12rem;
}
tr:nth-child(even) {
  background: #f8f6f3;
}
/* =============== Misc. Content Blocks =============== */
.brand-values {
  background: #F4F7FB;
  border-radius: var(--radius);
  padding: 22px 25px;
  margin-bottom: 24px;
}
.team-intro {
  background: #FAEED7;
  border-radius: var(--radius);
  padding: 20px 25px;
}
.text-section {
  background: #f9f7f1;
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-card);
}
.next-steps {
  margin-top: 24px;
}

/* =============== Responsive Design =============== */
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
    padding: 0 8px;
  }
  .feature-grid, .service-list, .detailed-service-list, .testimonial-slider, .testimonial-list, .partner-logos, .short-testimonials {
    gap: 14px;
    justify-content: flex-start;
  }
  .feature-grid li, .service-list li, .detailed-service-list li, .testimonial-card {
    min-width: 160px;
  }
}
@media (max-width: 700px) {
  section, .section {
    padding: 22px 5px !important;
    margin-bottom: 28px !important;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .container, .content-wrapper {
    gap: 10px;
  }
  .feature-grid, .service-list, .detailed-service-list, .testimonial-slider, .testimonial-list, .short-testimonials {
    flex-direction: column;
    gap: 10px;
  }
  .feature-grid li, .service-list li, .detailed-service-list li {
    min-width: unset;
    width: 100%;
  }
  .testimonial-card {
    min-width: unset;
    width: 100%;
    max-width: 100%;
  }
  table, .pricing-table {
    font-size: 0.98rem;
    padding: 0;
  }
}

/* =============================
   SPACING & GAPS ENFORCEMENT
============================= */
section + section {
  margin-top: 20px;
}
.card + .card, .card-container > *:not(:first-child), .content-grid > *:not(:first-child), .testimonial-card + .testimonial-card {
  margin-left: 0;
}

/* =============================
   HOVER/INTERACTIONS
============================= */
.btn-primary, .btn-secondary, .main-nav a, .footer-nav a, .mobile-menu-close, .mobile-nav a, .card, .feature-grid li, .detailed-service-list li, .testimonial-card {
  transition: var(--transition);
}

/* =============================
   COOKIE BANNER & CONSENT MODAL
============================= */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  z-index: 30020;
  background: #fff;
  box-shadow: 0 -4px 22px 0 rgba(32,85,168,0.10);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 22px 30px 22px 30px;
  font-size: 1rem;
  color: #253448;
  animation: cookieBannerSlideIn 0.6s cubic-bezier(0.23,1,0.32,1);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1;
  margin-bottom: 0;
  max-width: 520px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  border: none;
  font-family: var(--heading-font);
  font-weight: 600;
  padding: 11px 26px;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.cookie-accept {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--secondary);
}
.cookie-reject {
  background: #ffd6cf;
  color: #c8421c;
  box-shadow: var(--shadow-card);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #ffede5;
  color: #c8421c;
}
.cookie-settings {
  background: #F4F7FB;
  color: #2055A8;
  box-shadow: var(--shadow-card);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #E9F9F7;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 16px 6vw;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}

/* ===== Cookie Consent Modal Popup ===== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(44, 56, 68, 0.41);
  z-index: 35000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 430px;
  width: 95vw;
  box-shadow: 0 15px 48px 0 rgba(32,85,168,0.16);
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalSlideIn 0.5s cubic-bezier(0.33,1,0.68,1);
  position: relative;
  z-index: 35001;
}
@keyframes cookieModalSlideIn {
  from { transform: translateY(60px) scale(.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.23rem;
  color: var(--primary);
}
.cookie-modal .cookie-cat {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 8px 0;
  background: #F4F7FB;
  border-radius: var(--radius);
  padding: 12px 16px;
}
.cookie-modal label {
  font-size: 1.04rem;
  color: #253448;
  font-weight: 500;
}
.cookie-modal-toggle {
  accent-color: var(--primary);
  width: 22px;
  height: 22px;
  border-radius: 6px;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 19px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  width: 100%;
}
.cookie-modal .cookie-modal-close {
  background: #ffd6cf;
  color: #c8421c;
}
.cookie-modal .cookie-modal-close:hover {
  background: #ffede5;
}

/* =============== Accessibility Focus States =============== */
:focus {
  outline: 2px solid #E9F9F7 !important;
  outline-offset: 2px;
}

/* =============== Utility, Hide Elements =============== */
.hide {
  display: none !important;
}

/* =============== Custom Scrollbar (Visual Enhacement) =============== */
::-webkit-scrollbar {
  width: 10px;
  background: #F4F7FB;
  border-radius: var(--radius);
}
::-webkit-scrollbar-thumb {
  background: #E9F9F7;
  border-radius: var(--radius);
}

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