/* ============================================================
   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 { height: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; line-height: 1.5; }
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul { list-style: none; }
img, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  box-sizing: border-box;
  background: none;
  border: none;
  outline: none;
  border-radius: 0;
}
:focus { outline: 2px solid #B0C5A4; outline-offset: 2px; }

/* ============================================================
   BRAND VARIABLES (with CSS custom property fallback)
   ============================================================ */
:root {
  --c-primary: #404854;
  --c-secondary: #B0C5A4;
  --c-accent: #F2F3ED;
  --c-heading-dark: #2d323b;
  --c-bg: #FFF;
  --c-border: #D6E3DB;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;

  --radius-small: 8px;
  --radius-big: 20px;
  --shadow-card: 0 4px 16px rgba(64, 72, 84, 0.06);
}

/* ========================
   BASE LAYOUT & TYPOGRAPHY
   ======================== */
body {
  background: var(--c-bg);
  color: var(--c-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
main {
  flex: 1 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--c-heading-dark);
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: none;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
p, li, ul, ol, .text-section {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-primary);
}
strong { font-weight: 700; }

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}

.values-list, .contact-info, .tip-list, .how-to-guides, .recent-posts-list, .benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

ul.values-list li, ul.contact-info li, ul.benefit-list li {
  position: relative;
  padding-left: 32px;
  min-height: 28px;
  display: flex;
  align-items: center;
  color: var(--c-primary);
}
ul.values-list li img, ul.contact-info li img, ul.benefit-list li img {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
}

/* ==================
   HEADER
   ================== */
header {
  background: var(--c-accent);
  box-shadow: 0 2px 8px rgba(64, 72, 84, 0.04);
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
  min-height: 70px;
}
.logo img {
  height: 48px;
}
nav.main-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.main-menu a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--c-primary);
  padding: 2px 4px;
  transition: color 0.17s;
  border-bottom: 2px solid transparent;
  border-radius: 2px;
}
nav.main-menu a:hover, nav.main-menu a:focus {
  color: var(--c-secondary);
  border-bottom: 2px solid var(--c-secondary);
  background: rgba(176,197,164,0.06);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 1rem;
  color: var(--c-heading-dark);
  background: var(--c-secondary);
  border-radius: var(--radius-big);
  padding: 12px 32px;
  margin-left: 16px;
  box-shadow: 0 2px 8px rgba(64, 72, 84, 0.06);
  border: 2px solid var(--c-secondary);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s,
              box-shadow 0.18s, transform 0.17s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--c-primary);
  color: var(--c-accent);
  border-color: var(--c-primary);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 16px rgba(64, 72, 84, 0.13);
}

/* Hamburger for mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--c-secondary);
  color: var(--c-heading-dark);
  font-size: 2rem;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--c-secondary);
  position: absolute;
  top: 18px;
  right: 16px;
  z-index: 1099;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--c-primary);
  color: var(--c-accent);
}

/* ===============
   MOBILE MENU
   =============== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--c-primary);
  z-index: 1111;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.65,.05,.36,1);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: var(--c-accent);
  background: none;
  border: none;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  z-index: 1120;
  cursor: pointer;
  transition: color 0.12s, background 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--c-secondary);
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 90px;
  margin-left: 32px;
}
.mobile-nav a {
  color: var(--c-accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: 0.05em;
  padding: 7px 0;
  border-left: 3px solid transparent;
  transition: color 0.14s, border-color 0.18s, padding 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--c-secondary);
  border-left: 3px solid var(--c-secondary);
  background: rgba(176,197,164,0.15);
  padding-left: 12px;
  border-radius: var(--radius-small);
}

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

/* ============
   MAIN SECTIONS
   ============ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}

/* Add geometric section backgrounds (corners/sharp blocks) */
section.hero {
  background: var(--c-accent);
  border-bottom-left-radius: 72px;
  border-bottom-right-radius: 90px;
  box-shadow: 0 10px 44px -28px rgba(64,72,84,0.08);
  padding-bottom: 64px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

/* Card container & card spacing */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--c-accent);
  border-radius: var(--radius-big);
  box-shadow: var(--shadow-card);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 28px rgba(64,72,84,0.17);
  transform: translateY(-2px) scale(1.01);
}

.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;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--c-accent);
  border-left: 6px solid var(--c-secondary);
  border-radius: var(--radius-big);
  box-shadow: var(--shadow-card);
  padding: 20px 28px;
  margin-bottom: 24px;
  max-width: 480px;
  transition: box-shadow 0.18s, border-color 0.12s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: var(--c-primary);
  box-shadow: 0 8px 32px rgba(64,72,84,0.13);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--c-primary);
  letter-spacing: 0.02em;
}
.testimonial-author {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--c-heading-dark);
}

/* Ensure testimonial text is always dark on very light bg for contrast */
.testimonial-card,
.testimonial-quote,
.testimonial-author { color: #353943; background: var(--c-accent); }

/*
  Feature Grid & Feature Items
*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 8px;
  justify-content: flex-start;
}
.feature {
  background: var(--c-bg);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 220px;
  flex: 1 1 210px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 18px 18px 20px;
  transition: box-shadow 0.18s, border-color 0.16s, transform 0.14s;
  border: 2px solid transparent;
}
.feature:hover, .feature:focus-within {
  border: 2px solid var(--c-secondary);
  box-shadow: 0 8px 24px rgba(64,72,84,0.15);
  transform: translateY(-3px) scale(1.02);
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.feature h3 {
  font-size: 1.08rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--c-heading-dark);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.feature p {
  font-size: 0.99rem;
  color: var(--c-primary);
  line-height: 1.5;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 6px;
}
.service {
  background: var(--c-accent);
  border-radius: var(--radius-big);
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 260px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border: 2px solid transparent;
  transition: box-shadow 0.18s, border-color 0.12s, transform 0.13s;
  position: relative;
}
.service:hover, .service:focus-within {
  box-shadow: 0 8px 28px rgba(64,72,84,0.14);
  border: 2px solid var(--c-secondary);
  transform: translateY(-3px) scale(1.02);
}
.service img {
  width: 38px;
  height: 38px;
}
.service h3 {
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.08rem;
}
.service-price {
  margin-top: 12px;
  font-size: 1.04rem;
  color: var(--c-secondary);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.benefit-list img {
  width: 32px;
  height: 32px;
}

.key-results-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
}
.result {
  background: var(--c-accent);
  border-radius: var(--radius-small);
  box-shadow: 0 3px 12px rgba(64,72,84,0.03);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
  font-size: 1rem;
  font-family: var(--font-display);
  color: var(--c-primary);
  min-width: 220px;
  transition: box-shadow 0.14s, transform 0.12s;
}
.result img { width: 36px; height: 36px; }
.result span { font-size: 1.02rem; }
.result:hover, .result:focus-within {
  box-shadow: 0 8px 32px rgba(64,72,84,0.16);
  transform: scale(1.025);
}

/* ==========
   BLOG
   ========== */
.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.recent-posts-list li {
  background: var(--c-accent);
  border-radius: var(--radius-big);
  box-shadow: 0 4px 14px rgba(64,72,84,0.05);
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: box-shadow 0.14s, transform 0.13s;
}
.recent-posts-list li:hover, .recent-posts-list li:focus-within {
  box-shadow: 0 8px 24px rgba(64,72,84,0.14);
  transform: translateY(-2px) scale(1.01);
}

.blog-category-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.blog-category-filters a {
  background: var(--c-secondary);
  color: var(--c-heading-dark);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  transition: background 0.13s, color 0.11s;
}
.blog-category-filters a:hover, .blog-category-filters a:focus {
  background: var(--c-primary);
  color: var(--c-accent);
}

/* CTA button wrappers */
.content-wrapper > a.btn-primary { margin-top: 12px; }

/* ===============
   CASE-STUDY
   =============== */
.case-study {
  background: var(--c-accent);
  border-radius: var(--radius-small);
  padding: 20px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(64,72,84,0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-study h3 { margin-bottom: 6px; }

/* ============
   FOOTER
   ============ */
footer {
  background: var(--c-accent);
  padding: 36px 0 18px 0;
  position: relative;
  border-top-left-radius: 52px;
  border-top-right-radius: 36px;
  margin-top: 44px;
  border-top: 2px solid var(--c-border);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 10px;
}
.footer-menu a {
  color: var(--c-primary);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1rem;
  transition: color 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--c-secondary);
}
.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.social-links img {
  width: 28px;
  height: 28px;
  transition: transform 0.18s;
  cursor: pointer;
}
.social-links img:hover, .social-links img:focus {
  transform: scale(1.14) rotate(-7deg);
}
.copyright {
  font-size: 0.93rem;
  color: #58606a;
  margin-top: 12px;
}

/* =====================================
   COOKIE CONSENT BANNER & COOKIE MODAL
   ===================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  background: var(--c-primary);
  color: var(--c-accent);
  z-index: 9999;
  box-shadow: 0 -2px 12px rgba(64,72,84,0.16);
  padding: 22px 10px 18px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  animation: slideupCookie 0.5s cubic-bezier(.19,1,.22,1);
}
@keyframes slideupCookie {
  from { transform: translateY(100%); opacity: 0.4; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 0.98rem;
  color: var(--c-accent);
  margin: 0 0 8px 0;
}
.cookie-btn {
  padding: 10px 18px;
  margin: 0 5px;
  border-radius: var(--radius-small);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--c-secondary);
  background: var(--c-secondary);
  color: var(--c-heading-dark);
  transition: background 0.2s, color 0.16s, border-color 0.13s, transform 0.13s;
  cursor: pointer;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--c-accent);
  color: var(--c-primary);
  border-color: var(--c-accent);
  transform: scale(1.03);
}
.cookie-btn.cookie-settings {
  background: transparent;
  color: var(--c-accent);
  border-color: var(--c-secondary);
}
.cookie-btn.cookie-settings:hover {
  background: var(--c-secondary);
  color: var(--c-heading-dark);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(64, 72, 84, 0.48);
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinModal 0.33s cubic-bezier(.22,.61,.36,1);
}
@keyframes fadeinModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--c-accent);
  color: var(--c-primary);
  border-radius: var(--radius-big);
  box-shadow: 0 6px 48px rgba(64, 72, 84, 0.17);
  padding: 36px 24px;
  min-width: 320px;
  max-width: 98vw;
  z-index: 10030;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: scalePopup 0.29s cubic-bezier(.3,.89,.38,1.16);
  position: relative;
}
@keyframes scalePopup {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--c-heading-dark);
  margin-bottom: 8px;
}
.cookie-category {
  display: flex; align-items: center;
  gap: 16px; margin-bottom: 16px;
  font-size: 1rem;
  color: var(--c-primary);
}
.cookie-category .toggle {
  margin-left: 8px;
  width: 36px; height: 20px;
  background: #E8EDE8;
  border-radius: 12px;
  display: inline-block;
  position: relative;
}
.cookie-category .toggle input[type='checkbox'] { display: none; }
.cookie-category .toggle .slider {
  position: absolute; height: 16px; width: 16px;
  top: 2px; left: 3px;
  background: var(--c-secondary);
  border-radius: 50%;
  transition: left 0.2s, background 0.18s;
}
.cookie-category .toggle input:checked + .slider {
  background: var(--c-primary);
  left: 17px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px; right: 20px;
  background: none;
  border: none;
  font-size: 1.28rem;
  cursor: pointer;
  color: var(--c-primary);
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--c-secondary);
}

/* =======
   MISC
   ======= */
.map-directions {
  margin-top: 20px;
  background: var(--c-accent);
  border-radius: var(--radius-small);
  padding: 18px 18px;
  box-shadow: 0 2px 12px rgba(64,72,84,0.05);
  color: var(--c-primary);
  font-size: 1rem;
}

/* ===============
   RESPONSIVE DESIGN
   =============== */
@media (max-width: 1000px) {
  .feature-grid, .service-list, .key-results-grid {
    gap: 18px;
  }
}
@media (max-width: 880px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-menu {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.165rem; }
  section { padding: 26px 3vw; }
  .hero { padding-bottom: 32px; border-radius: 0 0 38px 38px; }
  .card-container, .feature-grid, .service-list, .key-results-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-grid { flex-direction: column; gap: 18px; }
  .testimonial-card,
  .case-study,
  .feature,
  .service,
  .result {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .blog-category-filters { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 600px) {
  .logo img {
    height: 38px;
  }
  .btn-primary {
    padding: 10px 17px;
    font-size: 0.97rem;
  }
  .footer-menu, .social-links {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }
  .footer-menu a { font-size: 0.98rem; }
}
@media (max-width: 470px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 2vw 18px 2vw;
  }
}

/* ===================
   GEOMETRIC ELEMENTS
   =================== */
/* Subtle accent geometric backgrounds for cards and hero */
.section::after, .feature::before, .service::before, .testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.feature::before {
  width: 46px; height: 46px;
  top: 10px; right: 10px;
  border-radius: 7px 16px 1px 28px;
  background: rgba(176,197,164,0.07);
}
.service::before {
  width: 54px; height: 28px;
  bottom: 6px; right: 12px;
  background: rgba(176,197,164,0.10);
  border-radius: 11px 16px 33px 7px;
}
.testimonial-card::before {
  width: 22px; height: 72px;
  left: -13px; top: 0;
  background: rgba(176,197,164,0.15);
  border-radius: 16px 2px 23px 27px;
}

/* Remove unwanted geometrics on mobile for clarity */
@media (max-width: 600px) {
  .feature::before, .service::before, .testimonial-card::before { display: none; }
}

/* ===========
   UTILITIES
   =========== */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.align-center { text-align: center !important; }

/* Accessibility: Force visible focus */
a:focus, button:focus, [tabindex]:focus {
  outline: 2px solid var(--c-secondary) !important;
  outline-offset: 2px !important;
}

/* ===============
   MICRO-ANIMATIONS
   =============== */
a, .btn-primary, .cookie-btn, .service, .feature, .testimonial-card, .recent-posts-list li, .result, .footer-menu a, .blog-category-filters a {
  transition: all 0.16s cubic-bezier(.46,.03,.52,1.02);
}

/* ============================
   HIDE/SHOW CLASSES UTILITIES
   ============================ */
.hide-on-mobile { display: block !important; }
.show-on-mobile { display: none !important; }
@media (max-width:1024px){
  .hide-on-mobile { display: none !important; }
  .show-on-mobile { display: block !important; }
}
