/* ================================================================
   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;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  line-height: 1.6;
  background: #fafaff;
  color: #25315A;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
}
[hidden] {
  display: none !important;
}

/* ================================================================
   VARIABLES & BRAND COLORS (with fallbacks)
=================================================================== */
:root {
  --color-primary: #25315A;
  --color-primary-rgb: 37,49,90;
  --color-secondary: #77B299;
  --color-accent: #FFD87A;
  --color-gold: #CFB173;
  --color-bg-section: #fffdf8;
  --color-bg-card: #fff;
  --color-bg-alt: #f6f7fa;
  --color-text: #25315A;
  --color-text-light: #7A899B;
  --color-text-dark: #19203A;
  --color-footer-bg: #212637;
  --color-footer-text: #fff;
  --color-border: #e3e2df;
  --shadow-elevate: 0 2px 16px 0 rgba(37,49,90, 0.07), 0 1.5px 7px rgba(207,177,115, 0.10);
  --radius-card: 20px;
  --radius-btn: 38px;
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ================================================================
   TYPOGRAPHY
=================================================================== */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 3rem;
  }
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text);
}
h4, .h4, h5, .h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
}
p, li, dl, dd {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
}
strong {
  font-weight: 600;
  color: var(--color-primary);
}
blockquote {
  font-style: italic;
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-bottom: 8px;
}

small {
  font-size: 0.89rem;
  color: var(--color-text-light);
}

/* SPACING CLASSES */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: var(--radius-card);
}
@media (max-width: 576px) {
  .section {
    margin-bottom: 32px;
    padding: 28px 8px;
    border-radius: 14px;
  }
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.content-wrapper {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}
.text-section {
  max-width: 600px;
}

/* ================================================================
   HEADER & NAVIGATION
=================================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(37,49,90,0.04);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 16px 14px 16px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.1px;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: color 0.2s, border-bottom 0.2s;
}
header nav a:hover, header nav a:focus {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-accent);
  outline: none;
}

.btn-primary,
.btn-secondary {
  font-family: var(--font-display);
  border-radius: var(--radius-btn);
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 2px 14px 0 rgba(37,49,90,0.08);
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.btn-primary {
  background: var(--color-primary);
  color: #fffde9;
  border: 2px solid var(--color-accent);
  position: relative;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 6px 18px 0 rgba(255,216,122,0.19);
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: #fff;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
  box-shadow: 0 6px 18px 0 rgba(255,216,122,0.16);
  transform: translateY(-2px) scale(1.04);
}
/* Burger Button */
.mobile-menu-toggle {
  background: var(--color-bg-section);
  color: var(--color-primary);
  font-size: 2rem;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  padding: 3px 13px 1px 13px;
  line-height: 1.1;
  cursor: pointer;
  display: none;
  box-shadow: 0 2px 8px rgba(37,49,90,0.10);
  transition: background 0.2s, border-color 0.2s;
  z-index: 51;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-accent);
  background: var(--color-accent);
}
/* Hide menu on desktop */
@media (max-width: 991px) {
  header nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 480px) {
  .logo img {
    height: 30px;
  }
}

/* ================================================================
   MOBILE NAV OVERLAY
=================================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(37,49,90, 0.95);
  transform: translateX(110%);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  z-index: 100;
  box-shadow: 0 0 60px rgba(37,49,90,0.40);
  pointer-events: none;
  opacity: 0.98;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
  border-radius: 36px;
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  align-self: flex-end;
  margin: 18px 18px 0 0;
  box-shadow: 0 2px 14px rgba(207,177,115,0.16);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  z-index: 150;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 48px 0 0 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fffde8;
  font-weight: 500;
  padding: 9px 0 6px 0;
  line-height: 1.1;
  border-bottom: 2.5px solid transparent;
  transition: color 0.19s, border-bottom 0.18s;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-accent);
  border-bottom: 2.5px solid var(--color-accent);
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ================================================================
   MAIN CONTENT & LAYOUT
=================================================================== */
main {
  margin-top: 0;
  flex: 1 1 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 14px rgba(37,49,90,0.05), 0 1.5px 7px rgba(207,177,115,0.07);
}
@media (max-width: 576px) {
  section {
    margin-bottom: 32px;
    padding: 28px 8px;
    border-radius: 12px;
  }
}

/* ALT background for some sections (when needed) */
.bg-alt {
  background: var(--color-bg-alt);
}

/* = FLUID LAYOUT GRID PATTERNS = */
.card-container,
.content-grid,
.feature-grid,
.service-list,
.testimonial-list,
.review-snippets ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card-container {
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--color-bg-card);
  box-shadow: var(--shadow-elevate);
  border-radius: var(--radius-card);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 32px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid {
  gap: 20px;
}
.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;
    gap: 22px;
  }
}
/* FEATURES & ICONS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px 36px;
  margin-top: 24px;
}
.feature-icon {
  flex: 0 0 62px;
  height: 62px;
  background: #fffefb;
  box-shadow: 0 3px 10px rgba(207,177,115,0.13);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 2px solid var(--color-gold);
  margin-bottom: 10px;
}
.feature-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex-basis: 250px;
  margin-bottom: 20px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
  margin-bottom: 24px;
}
.service-item {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elevate);
  padding: 26px 24px;
  margin-bottom: 22px;
  flex: 1 1 280px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  border: 1.5px solid var(--color-border);
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.16s;
}
.service-item:hover,
.service-item:focus-within {
  box-shadow: 0 4px 18px 0 rgba(207,177,115,0.23);
  border-color: var(--color-accent);
  transform: translateY(-2px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  box-shadow: var(--shadow-elevate);
  border-radius: 12px;
  padding: 20px 18px;
}

@media (max-width: 900px) {
  .feature-grid,
  .service-list,
  .testimonial-list,
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-icon {
    margin-bottom: 6px;
  }
}

/* Testimonial Cards & Review Snippets */
.testimonial-list {
  gap: 28px;
  margin-bottom: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 20px 36px 14px 36px;
  margin-bottom: 20px;
  min-width: 260px;
  box-shadow: var(--shadow-elevate);
  border: 2px solid var(--color-gold);
  position: relative;
  transition: box-shadow 0.17s;
}
.testimonial-card blockquote {
  color: var(--color-text-dark);
  font-size: 1.09rem;
  margin-bottom: 8px;
  line-height: 1.5;
}
.testimonial-card footer {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0px;
}
.review-snippets ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 10px;
}
.review-snippets li {
  color: var(--color-text);
  font-size: 1rem;
  background: #f9f9f7;
  border-radius: 12px;
  padding: 14px 22px;
  box-shadow: 0 2px 10px rgba(37,49,90,0.05);
}
.star-summary {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold);
  text-align: center;
  margin: 7px 0 12px 0;
  font-weight: 600;
  letter-spacing: 0.7px;
}

/* FAQ dt/dd styles */
dl {
  margin-top: 10px;
}
dt {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 2px;
  color: var(--color-primary);
}
dd {
  margin-bottom: 7px;
  color: var(--color-text-light);
  padding-left: 10px;
}

/* ================================================================
   BUTTONS & MICROLEVEL INTERACTION
=================================================================== */
a.btn-primary,
.btn-secondary {
  text-decoration: none;
  outline: none;
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 2px solid var(--color-gold);
}
.btn-primary:active {
  transform: scale(0.98);
}
.btn-secondary:active {
  transform: scale(0.98);
}

/* Accent border for premium look */
.btn-primary::after {
  content: '';
  display: block;
  position: absolute;
  left: 12px; right: 12px; bottom: 6px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 4px 4px 12px 12px;
  opacity: 0.18;
  pointer-events: none;
}
.btn-primary:hover::after {
  opacity: 0.32;
}

/* ================================================================
   LISTS, UL/OL, MARKERS
=================================================================== */
ul {
  padding-left: 1.1em;
  margin-bottom: 12px;
}
ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  color: var(--color-text);
  font-size: 1rem;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--color-gold);
  border-radius: 50%;
  margin-top: 8px;
  margin-right: 11px;
  flex-shrink: 0;
}

/* ================================================================
   FOOTER
=================================================================== */
footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 38px 0 24px 0;
  border-radius: 24px 24px 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
footer nav a {
  color: #fff;
  font-family: var(--font-body);
  opacity: 0.93;
  font-size: 1rem;
  transition: color 0.15s, text-decoration 0.14s;
}
footer nav a:hover,
footer nav a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-branding img {
  height: 39px; width: auto;
  display: block;
}
.footer-branding span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fffde5;
  opacity: 0.92;
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ================================================================
   RESPONSIVENESS
=================================================================== */
@media (max-width: 900px) {
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    max-width: 98vw;
  }
  .text-section {
    max-width: 94vw;
  }
}
@media (max-width: 576px) {
  .section, section, .card, .feature-item, .service-item, .testimonial-card {
    padding-left: 10px;
    padding-right: 10px;
  }
  .testimonial-card,
  .card {
    min-width: 0;
  }
}

/* ================================================================
   COOKIE CONSENT BANNER & MODAL
=================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffdfa;
  color: var(--color-text-dark);
  box-shadow: 0 -3px 24px 0 rgba(37,49,90,0.10);
  border-top: 2.5px solid var(--color-gold);
  z-index: 200;
  padding: 28px 18px 22px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  animation: cookieFadeIn 0.44s;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 18px 3vw 18px 3vw;
  }
}
@keyframes cookieFadeIn {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  color: var(--color-text-dark);
  max-width: 470px;
  flex: 1 1 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.cookie-banner button {
  padding: 8px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid var(--color-border);
  transition: background 0.15s, color 0.12s, border-color 0.13s;
  box-shadow: 0 2px 7px 0 rgba(207,177,115,0.09);
}
.cookie-banner .accept {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-gold);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-accent);
}
.cookie-banner .decline {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.cookie-banner .decline:hover, .cookie-banner .decline:focus {
  background: #f6f7fa;
  border-color: var(--color-gold);
  color: var(--color-primary);
}
.cookie-banner .settings {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-accent);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-gold);
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(37,49,90,0.44);
  z-index: 299;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalBackdropIn 0.32s;
}
@keyframes cookieModalBackdropIn {
  from { opacity: 0 } to { opacity: 1 }
}
.cookie-modal {
  background: #fffdfa;
  padding: 34px 30px 22px 30px;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(37,49,90,0.17);
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 310;
  animation: cookieModalSlideIn 0.32s;
}
@keyframes cookieModalSlideIn {
  from {transform: translateY(60px) scale(0.98); opacity: 0;}
  to {transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal h3 {
  margin-bottom: 8px;
  color: var(--color-primary);
}
.cookie-modal .categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 2px;
}
.cookie-modal .category .always-on {
  font-size: 0.97rem;
  color: var(--color-secondary);
  padding: 2px 8px;
  background: #e9f6ef;
  border-radius: 7px;
  font-weight: 600;
}
.cookie-modal label {
  cursor: pointer;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-top: 10px;
}
.cookie-modal button {
  font-family: var(--font-display);
  border-radius: var(--radius-btn);
  padding: 8px 28px;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid var(--color-border);
  transition: background 0.15s, color 0.12s, border-color 0.13s;
  box-shadow: 0 2px 7px 0 rgba(207,177,115,0.09);
}
.cookie-modal .accept {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-gold);
}
.cookie-modal .accept:hover, .cookie-modal .accept:focus {
  background: var(--color-gold);
  border-color: var(--color-accent);
}
.cookie-modal .cancel {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: #f6f7fa;
  border-color: var(--color-accent);
}

/* ================================================================
   MISC: LINKS, FORMS, ANIMATIONS, DECORATIVE
=================================================================== */
a {
  transition: color 0.2s, border-color 0.2s;
}
a:focus {
  outline: 2px dotted var(--color-accent);
}
.text-section a, .content-wrapper a {
  color: var(--color-primary);
  text-decoration: underline dotted;
}
.text-section a:hover { color: var(--color-secondary); }
::-webkit-input-placeholder { color: #b7bfce; opacity: 1; }
::-moz-placeholder { color: #b7bfce; opacity: 1; }
:-ms-input-placeholder { color: #b7bfce; opacity: 1; }
::placeholder { color: #b7bfce; opacity: 1; }

/* Subtle animation for hover on cards */
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.15s, border-color 0.14s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 12px 32px 0 rgba(207,177,115,0.25);
  border-color: var(--color-accent);
  transform: translateY(-2px) scale(1.012);
  cursor: pointer;
}

/* VISUAL HIERARCHY: Spacing Adjustments */
h1, h2, h3, h4 {
  margin-top: 0;
  margin-bottom: 12px;
}
p + h2, p + .h2, ul + h2, ul + .h2 { margin-top: 22px; }
h2 + h3, h2 + .h3 { margin-top: 20px; }

.section:last-child, section:last-child {
  margin-bottom: 30px !important;
}

/* Adjust min spacing between all cards/sections */
.card, .testimonial-card, .feature-item, .service-item {
  margin-bottom: 20px;
}

/* Utility: Hide visually (for screenreaders, e.g. modals) */
.visually-hidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

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