/* 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 {
  line-height: 1.15;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F7F7FA;
  color: #223355;
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #223355;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #44588e;
  text-decoration: none;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 16px;
  letter-spacing: 0.02em;
  outline: none;
}
button, .cta-btn, .secondary-cta, .cta-link {
  cursor: pointer;
}

/* Typography */
h1, .h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  color: #223355;
}
h2, .h2 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #223355;
}
h3, .h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #446088;
}
h4, .h4 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 8px;
}
p, ul, ol, .list-text {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #222b3a;
}
strong {
  font-weight: bold;
}

/* Container & Section Layouts */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(34, 51, 85, 0.05);
}
@media (max-width: 991px) {
  .section {
    margin-bottom: 40px;
    padding: 32px 10px;
    border-radius: 12px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  gap: 16px;
  align-items: flex-start;
}

/* Header */
header {
  background: #223355;
  color: #fff;
  width: 100%;
  box-shadow: 0 2px 8px rgba(34, 51, 85, 0.06);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}
header img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #F1F5F9;
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 4px;
  position: relative;
  border-radius: 3px;
  transition: background 0.12s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #44588e;
  box-shadow: 0 1px 6px rgba(34, 51, 85, 0.06);
}
.cta-btn {
  background: #6699CC;
  color: #fff!important;
  font-family: 'Merriweather', serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 24px;
  padding: 9px 26px;
  box-shadow: 0 2px 12px rgba(34, 51, 85, 0.08);
  text-decoration: none;
  margin-left: 10px;
  transition: background 0.22s, box-shadow 0.24s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #223355;
  color: #fff;
  box-shadow: 0 2px 20px rgba(34, 51, 85, 0.11);
}
.secondary-cta {
  background: transparent;
  color: #223355;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  border: 2px solid #6699CC;
  border-radius: 20px;
  padding: 8px 18px;
  margin-left: 18px;
  text-decoration: none;
  transition: background 0.19s, color 0.19s, border-color 0.17s;
}
.secondary-cta:hover,
.secondary-cta:focus {
  background: #F1F5F9;
  color: #446088;
  border-color: #223355;
}

/* Responsive Header and Navigation */
@media (max-width: 991px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .main-nav {
    gap: 18px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 8px 19px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  header img {
    height: 36px;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    z-index: 2001;
    top: 17px;
    right: 16px;
    background: #6699CC;
    color: #fff;
    font-size: 2.1rem;
    border: none;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    transition: background 0.15s;
    box-shadow: 0 2px 12px rgba(34, 51, 85, 0.13);
  }
  .mobile-menu-toggle:active,
  .mobile-menu-toggle:focus {
    background: #223355;
    color: #fff;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #223355;
  color: #fff;
  z-index: 3000;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.86,.01,.22,.97), opacity 0.22s;
  opacity: 0.97;
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.4rem;
  border: none;
  position: absolute;
  top: 17px;
  right: 20px;
  cursor: pointer;
  padding: 4px 12px;
  z-index: 3010;
  border-radius: 4px;
  transition: background 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #446088;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 65px;
  margin-left: 32px;
}
.mobile-nav a {
  color: #F1F5F9;
  font-family: 'Merriweather', serif;
  font-size: 1.17rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 2px;
  border-radius: 3px;
  transition: background 0.14s, color 0.17s;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #44588e;
  color: #fff;
}

/* Main Content & Section Layouts */
main {
  margin-top: 16px;
  margin-bottom: 48px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 860px) {
  .content-grid {
    gap: 10px;
    flex-direction: column;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F1F5F9;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 2px 6px rgba(34, 51, 85, 0.08);
  margin-bottom: 20px;
}
.features-grid, .service-categories-grid, .device-category-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.features-grid > div, .service-categories-grid > div {
  background: #F1F5F9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(34, 51, 85, 0.07);
  padding: 24px 16px;
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.19s, transform 0.19s;
}
.features-grid > div:hover, .service-categories-grid > div:hover {
  box-shadow: 0 6px 20px rgba(34, 51, 85, 0.13);
  transform: translateY(-4px) scale(1.025);
}
.device-category-icons {
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
}
.device-category-icons img {
  width: 54px;
  height: 54px;
  margin: 0;
  filter: grayscale(0.17);
}

/* Cards and Lists */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(34, 51, 85, 0.09);
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 30px 20px;
  transition: box-shadow 0.17s;
}
.card:hover {
  box-shadow: 0 6px 20px rgba(34, 51, 85, 0.15);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* Testimonials */
.testimonial-slider, .customer-review-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F5F7FB;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(34, 51, 85, 0.10);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 380px;
  flex: 1 1 260px;
}
.testimonial-card p {
  color: #223355;
  font-size: 1rem;
  font-style: italic;
  font-family: 'Georgia', serif;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #446088;
  font-weight: 500;
  margin-top: 8px;
  font-family: 'Merriweather', serif;
}
.average-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.12rem;
  color: #223355;
  margin-bottom: 16px;
}

/* CTA Links */
.cta-link {
  color: #6699CC;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1.01rem;
  margin-top: 10px;
  transition: color 0.15s;
}
.cta-link:hover, .cta-link:focus {
  color: #223355;
  text-decoration: none;
}
/* Lists inside sections */
.service-list, .usp-list, .appliance-types-list, .rights-list, .terms-points, .user-obligations, .cookie-types {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 18px;
  font-size: 1.01rem;
  color: #223355;
  font-family: 'Georgia', serif;
  list-style: disc inside;
}
.service-list li, .usp-list li, .appliance-types-list li, .rights-list li, .terms-points li, .user-obligations li, .cookie-types li {
  margin-bottom: 10px;
}

/* Timeline, FAQ, etc. */
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 16px;
  margin-top: 8px;
}
.timeline div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 18px;
  background: #F7F7FA;
  border-left: 4px solid #6699CC;
  border-radius: 8px;
  min-width: 140px;
}
.timeline strong {
  font-size: 1.1rem;
  margin-bottom: 2px;
  color: #446088;
}
.faq-accordion > div {
  margin-bottom: 18px;
  border-left: 4px solid #F1F5F9;
  padding-left: 18px;
  background: #FAFAFF;
  border-radius: 5px;
  padding-top: 9px;
  padding-bottom: 9px;
  transition: border-color 0.19s;
}
.faq-accordion > div:hover, .faq-accordion > div:focus-within {
  border-color: #6699CC;
}
.faq-accordion strong {
  display: block;
  font-size: 1.07rem;
  color: #223355;
  margin-bottom: 6px;
}
.customer-tip {
  background: #F1F5F9;
  border-left: 4px solid #6699CC;
  border-radius: 8px;
  padding: 16px;
  font-size: 1.02rem;
  margin-top: 12px;
}

.service-guarantee {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
  font-family: 'Merriweather', serif;
  font-size: 1.06rem;
  background: #F1F5F9;
  padding: 10px 18px;
  border-radius: 8px;
  color: #223355;
  font-weight: 500;
}
.service-guarantee img {
  width: 38px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  background: #FFF;
  box-shadow: 0 -4px 24px rgba(34, 51, 85, 0.19);
  border-top: 1px solid #E1E5EA;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 36px;
  gap: 24px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  opacity: 1;
  transition: opacity 0.34s, transform 0.4s cubic-bezier(.42,.21,.57,.98);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(160px);
}
.cookie-banner .cookie-text {
  color: #223355;
  max-width: 530px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 1.02rem;
  border: none;
  border-radius: 22px;
  padding: 9px 26px;
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0 2px 10px rgba(34, 51, 85, 0.09);
  transition: background 0.16s, color .13s, box-shadow .18s;
}
.cookie-banner .accept {
  background: #6699CC;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #223355;
  color: #fff;
}
.cookie-banner .reject {
  background: #223355;
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #6699CC;
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  color: #223355;
  border: 2px solid #6699CC;
  box-shadow: none;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F1F5F9;
  color: #446088;
  border-color: #223355;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 18px 10px;
    align-items: flex-start;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 12px;
  }
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 4100;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,51,85,0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in-modal 0.2s;
}
@keyframes fade-in-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 40px rgba(34,51,85,0.14);
  padding: 32px 20px 20px 28px;
  max-width: 430px;
  min-width: 270px;
  min-height: 240px;
  color: #223355;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 4110;
  animation: cookie-modal-slide 0.36s cubic-bezier(.41,.76,.39,1.01);
}
@keyframes cookie-modal-slide {
  from { transform: translateY(80px) scale(0.98); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal-header {
  font-family: 'Merriweather', serif;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E1E5EA;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.cookie-category .category-title {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 600;
}
.cookie-category .category-toggle {
  font-size: 1rem;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  color: #223355;
  font-size: 1.64rem;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  padding: 3px 7px;
  transition: background 0.13s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  background: #F1F5F9;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal-actions button {
  font-family: 'Merriweather', serif;
  font-size: 1.02rem;
  border: none;
  border-radius: 22px;
  padding: 9px 26px;
  box-shadow: 0 2px 10px rgba(34, 51, 85, 0.09);
  margin: 0;
  transition: background 0.13s, color .12s;
}
.cookie-modal-actions .accept {
  background: #6699CC;
  color: #fff;
}
.cookie-modal-actions .accept:hover { background: #223355; }
.cookie-modal-actions .reject {
  background: #223355;
  color: #fff;
}
.cookie-modal-actions .reject:hover { background: #6699CC; color: #fff; }

/* Contact Details Cards */
.contact-details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 14px;
  margin-top: 4px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.07rem;
  color: #223355;
}
.contact-details img {
  width: 28px;
}
.contact-intro, .contact-info, .contact-note {
  margin-bottom: 18px;
}
.contact-info strong {
  display: inline-block;
  margin-bottom: 4px;
}
.map-placeholder {
  background: #F1F5F9;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.business-hours, .accessibility-info {
  margin-bottom: 12px;
  color: #2B3D56;
}

/* Footer */
footer {
  background: #223355;
  color: #F1F5F9;
  padding: 30px 0 0 0;
  font-family: 'Merriweather', serif;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 10px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #F1F5F9;
  text-decoration: underline;
  font-size: 0.98rem;
  transition: color 0.13s;
}
.footer-links a:hover { color: #B7C8DD; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact img {
  width: 42px;
  height: 42px;
  margin-bottom: 2px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 17px;
  align-items: center;
  margin-top: 14px;
}
.footer-social img {
  width: 28px;
  height: 28px;
}
.footer-legal {
  background: #1D2941;
  color: #B7C8DD;
  padding: 9px 0;
  text-align: center;
  font-size: 0.96rem;
  margin-top: 32px;
}

@media (max-width: 991px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-social {
    margin-top: 8px;
  }
  .footer-links {
    flex-direction: row;
    gap: 18px;
  }
}

/* Misc & Utilities */
.included-benefits, .review-prompt, .customer-tip, .next-steps-info, .confirmation-note {
  background: #F1F5F9;
  border-radius: 9px;
  padding: 14px 16px;
  margin-bottom: 10px;
  font-size: 0.99rem;
  color: #223355;
}

/* Animations for hover and card focus */
.card, .testimonial-card, .feature-item, .service-guarantee {
  transition: box-shadow 0.19s, transform 0.18s;
}
.card:hover, .testimonial-card:hover, .feature-item:hover, .service-guarantee:hover {
  box-shadow: 0 5px 22px rgba(34, 51, 85, 0.13);
  transform: translateY(-2px) scale(1.012);
}

/* Responsive adjustments for cards, grid, testimonial-list, etc. */
@media (max-width: 900px) {
  .features-grid, .service-categories-grid, .testimonial-slider, .customer-review-slider, .testimonial-list, .card-container {
    gap: 12px;
  }
}
@media (max-width: 640px) {
  .features-grid, .service-categories-grid, .testimonial-slider, .customer-review-slider, .testimonial-list, .card-container {
    flex-direction: column;
    gap: 10px;
  }
  .testimonial-card, .card {
    min-width: unset;
    max-width: unset;
    padding: 16px 11px;
  }
  .device-category-icons {
    gap: 14px;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #B7C8DD;
  border-radius: 8px;
}

/* Font Import (serif primary, fallback to system, brand has Montserrat/Roboto so we use Merriweather/Georgia for classic touch with fallback) */
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700&display=swap');

/* Utility classes */
.d-none { display: none !important; }
.text-center { text-align: center!important; }
.text-right { text-align: right!important; }
.flex { display: flex!important; }
.flex-column { flex-direction: column!important; }
.mt-20 { margin-top: 20px!important; }
.mb-20 { margin-bottom: 20px!important; }

/* CUSTOM CLASSES FROM HTML */
.confirmation-note, .next-steps-info, .cookie-types {
  margin-bottom: 16px;
}
.review-prompt {
  margin-top: 18px;
  background: #eaecf1;
  font-size: 1.01rem;
}

/* Accessibility & Focus */
a:focus, button:focus, .cta-btn:focus, .secondary-cta:focus, .cta-link:focus {
  outline: 2px dashed #6699CC;
  outline-offset: 2px;
}

/* Hide visually but accessible for screen readers */
.sr-only { 
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Print Styles */
@media print {
  header, footer, .cta-btn, .cta-link, .secondary-cta, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  body { background: #fff; color: #111; }
  .section, .card, .testimonial-card { box-shadow: none!important; background: #fff!important; }
}
