/* =======================================================================
   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, menu, 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,
main, 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #21374F;
  background: #F5F5F5;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* =======================================================================
   TYPOGRAPHY & BRAND FONTS
   ======================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Montserrat:wght@400;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #21374F;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.21;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.125rem;
}
h5 {
  font-size: 1rem;
}
h6 {
  font-size: 1rem;
}
p, ul, ol, blockquote {
  margin-bottom: 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
blockquote {
  padding-left: 22px;
  border-left: 4px solid #E1C373;
  font-size: 1.125rem;
  font-style: italic;
  color: #152538;
  background: #FCFAF5;
  border-radius: 4px;
}
strong, b {
  font-weight: 700;
}

/* =======================================================================
   LAYOUT HELPERS & CONTAINERS
   ======================================================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(33, 55, 79, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =======================================================================
   HEADER & NAVIGATION
   ======================================================================= */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(33, 55, 79, 0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.logo-link {
  display: flex;
  height: 56px;
  align-items: center;
}
nav {
  display: flex;
  gap: 26px;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #21374F;
  text-decoration: none;
  letter-spacing: 0.03em;
  padding: 8px 10px;
  transition: color 0.23s;
  position: relative;
}
nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #E1C373;
  transition: width 0.2s;
  margin-top: 4px;
  border-radius: 1.5px;
}
nav a:hover, nav a:focus {
  color: #E1C373;
}
nav a:hover::after, nav a:focus::after {
  width: 100%;
}
.cta-button {
  background: #E1C373;
  color: #21374F;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 40px;
  padding: 10px 28px;
  margin-left: 8px;
  box-shadow: 0 2px 10px rgba(33,55,79, 0.09);
  border: 2px solid #E1C373;
  cursor: pointer;
  transition: background 0.21s, color 0.21s, border 0.21s, box-shadow 0.21s;
  text-align: center;
  display: inline-block;
  line-height: 1.2;
}
.cta-button:hover, .cta-button:focus {
  background: #21374F;
  color: #fff;
  border: 2px solid #E1C373;
  box-shadow: 0 4px 18px rgba(33,55,79,0.17);
}

/* Hide mobile menu button on desktop */
.mobile-menu-toggle {
  display: none;
}

/* =======================================================================
   MOBILE NAVIGATION (BURGER MENU)
   ======================================================================= */
.mobile-menu {
  position: fixed;
  top: 0; bottom: 0; right: 0;
  width: 100%;
  max-width: 340px;
  background: #fff;
  box-shadow: -2px 0 28px rgba(33,55,79,0.09);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 28px 16px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #21374F;
  cursor: pointer;
  margin-bottom: 22px;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #E1C373;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.12rem;
  font-family: 'Merriweather', serif;
  color: #21374F;
  padding: 10px 0;
  min-width: 80px;
  border-radius: 6px;
  transition: background 0.22s, color 0.22s;
}
.mobile-nav a:active,
.mobile-nav a:hover {
  background: #F5F5F5;
  color: #E1C373;
}

/* Mobile menu overlay (background dim on menu open) */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(33,55,79,0.23);
  z-index: 8888;
  transition: opacity 0.27s;
}
.mobile-menu.open + .mobile-menu-overlay {
  display: block;
}

/* =======================================================================
   HERO SECTIONS & STANDARD SECTIONS
   ======================================================================= */
.hero {
  background: #21374F;
  color: #fff;
  padding: 60px 0 54px 0;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.hero .container {
  align-items: center;
}
.hero h1, .hero h2 {
  color: #fff;
  font-size: 2.4rem;
  text-shadow: 0 2px 8px rgba(33,55,79, 0.08);
}
.hero p {
  color: #F5F5F5;
  font-size: 1.125rem;
  max-width: 560px;
  margin-bottom: 18px;
}
.hero .cta-button {
  margin-top: 12px;
  background: #E1C373;
  color: #21374F;
  border: 2px solid #E1C373;
}
.hero .cta-button:hover {
  background: #fff;
  color: #21374F;
  border: 2px solid #E1C373;
}

.section, .contact-cta, .cta, .newsletter-signup {
  /* elegant spacing */
  margin-bottom: 60px;
  padding: 40px 20px;
}

.contact-cta h2, .cta h2, .newsletter-signup h2 {
  font-size: 2rem;
  color: #21374F;
}

/* =======================================================================
   FLEXBOX CONTENT GRIDS & CARDS
   ======================================================================= */
.features-grid, .services-list, .service-grid, .team-grid, .blog-list, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
.features-grid > div, .services-list > div, .service-grid > div, .team-grid > div, .blog-list > div {
  background: #FCFAF5;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(33,55,79,0.04);
  padding: 26px 22px;
  min-width: 220px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  /* subtle card border effect */
  border: 1.5px solid #ece5d6;
  transition: box-shadow 0.22s, border 0.22s;
}
.features-grid > div:hover, .services-list > div:hover, .service-grid > div:hover, .team-grid > div:hover, .blog-list > div:hover {
  box-shadow: 0 4px 24px rgba(33,55,79,0.12);
  border: 1.5px solid #E1C373;
  z-index: 2;
}
.features-grid img, .services-list img, .service-grid img {
  height: 36px;
  width: auto;
  margin-bottom: 4px;
}

.team-bio-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 1px 6px rgba(33,55,79,0.06);
  margin-right: 0;
  margin-bottom: 20px;
  border: 1.5px solid #ece5d6;
  transition: box-shadow 0.16s, border 0.16s;
}
.team-bio-card:hover {
  box-shadow: 0 4px 16px rgba(33,55,79,0.13);
  border: 1.5px solid #E1C373;
}

.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(33,55,79,0.06);
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 22px 24px 16px 24px;
}

.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;
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.trust-badges {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  margin: 16px 0 10px 0;
}
.trust-badges img {
  height: 34px;
  width: auto;
  opacity: 0.93;
  filter: grayscale(3%);
}

.timeline {
  margin-top: 14px;
  background: #F5F5F5;
  border-radius: 10px;
  padding: 14px 24px 6px 24px;
  box-shadow: 0 2px 9px rgba(33,55,79,0.04);
}
.timeline ul {
  margin-left: 1.4em;
  margin-bottom: 0;
}
.timeline li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 10px;
}
.timeline li:before {
  content: '•';
  color: #E1C373;
  position: absolute;
  left: 0;
  font-size: 1.4em;
  top: -2px;
}

.category-filter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}
.category-filter ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.category-filter li {
  background: #FCFAF5;
  color: #21374F;
  font-size: 0.93rem;
  border-radius: 8px;
  padding: 5px 14px;
  border: 1px solid #E1C373;
}

/* =======================================================================
   TESTIMONIALS
   ======================================================================= */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(33,55,79,0.10);
  padding: 22px 24px 18px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 240px;
  border: 1.5px solid #ece5d6;
  transition: box-shadow 0.18s, border 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(33,55,79,0.17);
  border: 1.5px solid #E1C373;
  z-index: 2;
}
.testimonial-card blockquote {
  color: #1c2840;
  background: #F7F6FA;
  border-left: 4px solid #E1C373;
  margin-bottom: 8px;
  padding: 0 0 0 18px;
  font-size: 1.04rem;
  font-style: italic;
  font-family: 'Merriweather', serif;
}
.testimonial-card footer {
  color: #7E6347;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.96rem;
  margin-top: 2px;
  font-style: normal;
}
.featured-quotes blockquote {
  background: #E1C373;
  color: #21374F;
  border-radius: 16px;
  padding: 18px 20px;
  border: none;
  margin-top: 14px;
  margin-bottom: 0;
  font-family: 'Merriweather', serif;
  font-size: 1.035rem;
  font-style: italic;
}

/* =======================================================================
   PRICING TABLE & FAQ
   ======================================================================= */
.pricing-table {
  width: 100%;
  background: #fff;
  border-collapse: separate;
  border-radius: 12px;
  border-spacing: 0;
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(33,55,79,0.04);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 17px 18px;
  text-align: left;
}
.pricing-table th {
  background: #E1C373;
  color: #21374F;
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-weight: bold;
}
.pricing-table td {
  background: #FCFAF5;
  color: #1c2840;
  border-bottom: 1px solid #ece5d6;
  font-size: 1rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

dl dt {
  font-weight: bold;
  margin-top: 18px;
  font-family: 'Merriweather', serif;
}
dl dd {
  margin-bottom: 10px;
  margin-left: 20px;
}

/* =======================================================================
   FOOTER
   ======================================================================= */
footer {
  background: #21374F;
  color: #fff;
  padding: 32px 0 16px 0;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #E1C373;
  font-family: 'Merriweather', serif;
  font-size: 1.04rem;
  transition: color 0.22s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-contact {
  display: flex;
  justify-content: center;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

/* =======================================================================
   BUTTONS & INTERACTIVES
   ======================================================================= */
button,
input[type="submit"],
input[type="button"] {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  border-radius: 40px;
  background: #E1C373;
  color: #21374F;
  padding: 10px 25px;
  border: 2px solid #E1C373;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border 0.22s;
}
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
button:focus {
  background: #21374F;
  color: #fff;
  border: 2px solid #E1C373;
}

/* =======================================================================
   FORMS (newsletter, cookie, etc.)
   ======================================================================= */
input, select, textarea {
  padding: 9px 13px;
  border: 1px solid #ece5d6;
  background: #FCFAF5;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 11px;
  color: #152538;
  transition: border 0.18s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #E1C373;
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  margin-bottom: 5.5px;
  color: #21374F;
  font-weight: 600;
}

/* =======================================================================
   COOKIE CONSENT BANNER & MODAL
   ======================================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff8ed;
  color: #21374F;
  box-shadow: 0 -2px 18px rgba(33,55,79,0.11);
  padding: 28px 22px 22px 22px;
  z-index: 10000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  font-size: 1rem;
  border-top: 2.8px solid #E1C373;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  font-size: 1rem;
  padding: 9px 18px;
  border-radius: 8px;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  background: #E1C373;
  color: #21374F;
  border: 2px solid #E1C373;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner button.accept {
  background: #E1C373;
  color: #21374F;
}
.cookie-banner button.accept:hover {
  background: #21374F;
  color: #fff;
}
.cookie-banner button.reject {
  background: #21374F;
  color: #fff;
  border: 2px solid #E1C373;
}
.cookie-banner button.reject:hover {
  background: #E1C373;
  color: #21374F;
}
.cookie-banner .cookie-settings-btn {
  background: #fff8ed;
  color: #21374F;
  border: 2px solid #E1C373;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #E1C373;
  color: #21374F;
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(33,55,79,0.34);
  z-index: 11000;
  animation: cookieModalFadeIn 0.35s;
}
@keyframes cookieModalFadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal-box {
  background: #fff;
  border-radius: 20px;
  max-width: 410px;
  width: 94vw;
  padding: 38px 28px 26px 32px;
  box-shadow: 0 6px 26px rgba(33,55,79,0.19);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 13px;
  background: none;
  color: #21374F;
  border: none;
  font-size: 1.65rem;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: #E1C373;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-categories label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  margin-left: 9px;
  font-weight: 500;
  color: #21374F;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category-row input[type="checkbox"] {
  accent-color: #E1C373;
  width: 18px;
  height: 18px;
  margin: 0;
}
.cookie-category-row input[disabled] {
  accent-color: #21374F;
  filter: grayscale(0.4);
  opacity: 0.82;
}
.cookie-modal button {
  background: #E1C373;
  color: #21374F;
  font-weight: 600;
  border-radius: 8px;
  padding: 9px 22px;
  border: 2px solid #E1C373;
  transition: background 0.14s, color 0.14s;
  margin-top: 11px;
}
.cookie-modal button:hover {
  background: #21374F;
  color: #fff;
}


/* =======================================================================
   RESPONSIVE DESIGN (Mobile-first)
   ======================================================================= */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
  .features-grid, .services-list, .service-grid, .team-grid, .blog-list, .testimonial-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .features-grid > div, .services-list > div, .service-grid > div, .team-grid > div, .blog-list > div {
    min-width: 170px;
    padding: 18px 12px;
  }
  .section, .contact-cta, .cta, .newsletter-signup {
    padding: 28px 5vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 95%;
  }
  header .container {
    flex-direction: row;
    height: 58px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .logo-link {
    height: 40px;
    min-width: 88px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    font-size: 2rem;
    background: none;
    border: none;
    color: #21374F;
    cursor: pointer;
    padding: 6px 11px 6px 11px;
    border-radius: 6px;
    transition: background 0.18s, color 0.18s;
    z-index: 104;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #F5F5F5;
    color: #E1C373;
  }
  .mobile-menu {
    max-width: 100vw;
    width: 94vw;
    padding: 22px 16px 16px 22px;
    font-size: 1.13rem;
  }
  .hero {
    padding-top: 32px;
    padding-bottom: 35px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .hero h1, .hero h2 {
    font-size: 1.36rem;
  }
  .features-grid, .services-list, .service-grid, .team-grid, .blog-list, .testimonial-grid {
    flex-direction: column;
    gap: 14px;
  }
  .features-grid > div, .services-list > div, .service-grid > div, .team-grid > div, .blog-list > div, .team-bio-card, .testimonial-card {
    min-width: 80vw;
    padding: 13px 10px;
  }
  .section, .contact-cta, .cta, .newsletter-signup {
    padding: 23px 1.5vw;
    margin-bottom: 30px;
    border-radius: 12px;
  }
  .content-wrapper {
    padding: 0;
    gap: 13px;
  }
  .footer-nav {
    gap: 13px;
    flex-direction: column;
    align-items: center;
    font-size: 0.92rem;
  }
  .footer-contact {
    font-size: 0.89rem;
  }
  .testimonial-grid, .card-container, .card-grid {
    flex-direction: column;
    gap: 13px;
  }
  .featured-quotes blockquote {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.99rem;
  }
  .category-filter ul {
    gap: 8px;
    flex-wrap: wrap;
  }
  .category-filter li {
    font-size: 0.86rem;
    padding: 4px 7.5px;
    border-radius: 6px;
  }
  .card-content {
    padding: 12px 10px 9px 10px;
    gap: 9px;
  }
}
@media (max-width: 500px) {
  .container {
    padding-left: 3.5vw;
    padding-right: 3.5vw;
  }
  .hero {
    padding-top: 18px;
    padding-bottom: 18px;
    border-radius: 10px;
  }
  .testimonial-card {
    padding: 9px 8px 9px 8px;
    font-size: 0.97rem;
  }
  .features-grid > div, .services-list > div, .service-grid > div, .team-grid > div, .blog-list > div, .team-bio-card {
    padding: 6px 5px;
    min-width: 92vw;
  }
}
/* responsive flex direction for text-image-section (in case added visually later) */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* =======================================================================
   UTILITIES
   ======================================================================= */
.mt-0 {margin-top: 0!important;}
.mb-0 {margin-bottom: 0!important;}
.mt-16 {margin-top: 16px!important;}
.mb-16 {margin-bottom: 16px!important;}
.mt-32 {margin-top: 32px!important;}
.mb-32 {margin-bottom: 32px!important;}

/* Hide on desktop */
.hide-desktop {display: none!important;}
@media (max-width: 768px) {
  .hide-mobile {display: none!important;}
  .hide-desktop {display: block!important;}
}

/* =======================================================================
   END
   ======================================================================= */
