/* ===== RESET & BASE ===== */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #F5F5F5;
  color: #222;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F5F5F5;
  color: #222;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}
* {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #3E2723;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #C49D63;
  outline: none;
}

/* ===== BRAND FONTS ===== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  color: #3E2723;
  letter-spacing: -0.02em;
}
h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.375rem; margin-bottom: 8px; }
h4 { font-size: 1.1rem; }

p, li, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
strong {
  font-weight: 700;
  color: #3E2723;
}

.subheadline, .hero p, .cta-section p {
  font-size: 1.125rem;
  font-weight: 600;
  color: #454545;
  margin-bottom: 18px;
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: #fff;
  border-bottom: 4px solid #C49D63;
  position: sticky;
  top: 0;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
  padding: 0 0 0 12px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #3E2723;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F5F5F5;
  color: #C49D63;
}
.main-nav img {
  height: 34px;
  width: auto;
  margin-right: 16px;
}
.main-nav .btn-primary {
  margin-left: auto;
}
.main-nav > a.btn-primary {
  font-size: 1rem;
  padding: 10px 28px;
}

/* Mobile hamburger toggle */
.mobile-menu-toggle {
  display: none;
  background: #C49D63;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 7px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #3E2723;
  color: #fff;
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #3E2723;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.56,0,.38,1);
  z-index: 200;
  opacity: 0.98;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #fff;
  margin-left: auto;
  padding: 16px 24px 0px 0px;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #C49D63;
}
.mobile-nav {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin-left: 40px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  width: 100%;
  padding: 12px 0;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #C49D63;
  background: rgba(196, 157, 99, 0.11);
}

/* ===== HERO & CTA SECTION ===== */
.hero {
  background: #fff;
  border-radius: 0px 0px 32px 32px;
  box-shadow: 0 8px 32px rgba(62, 39, 35, 0.08);
  margin-bottom: 54px;
  padding: 44px 0 48px 0;
  display: flex;
  align-items: center;
  min-height: 260px;
}
.hero .container {
  justify-content: center;
}
.hero h1 {
  font-size: 2.375rem;
  color: #3E2723;
  margin-bottom: 12px;
}
.hero .subheadline {
  font-size: 1.25rem;
  color: #454545;
  margin-bottom: 22px;
}
.hero .btn-primary {
  margin-top: 10px;
}

.cta-section {
  background: #3E2723;
  color: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
  margin-top: 40px;
  padding: 36px 0;
  box-shadow: 0 8px 32px rgba(62,39,35,0.11);
}
.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 10px;
}
.cta-section p {
  color: #fff;
  margin-bottom: 18px;
}
.cta-section .btn-primary {
  background: #C49D63;
  color: #fff;
  font-weight: 800;
}

/* ===== BUTTONS ===== */
.btn-primary, a.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #C49D63;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 38px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(62,39,35,0.10);
  transition: background 0.22s, box-shadow 0.22s, transform 0.12s;
}
.btn-primary:focus, .btn-primary:hover {
  background: #a37526;
  color: #fff;
  box-shadow: 0 6px 18px rgba(196,157,99,0.19);
  transform: translateY(-2px) scale(1.035);
}

.btn-secondary, a.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #3E2723;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 11px 28px;
  border: 2px solid #3E2723;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(62,39,35,0.07);
  transition: background 0.19s, color 0.19s, border 0.19s, transform 0.10s;
}
.btn-secondary:focus, .btn-secondary:hover {
  background: #3E2723;
  color: #fff;
  border-color: #C49D63;
  transform: translateY(-1px) scale(1.03);
}

/* ===== FLEX CONTENT-GRID & CARDS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(62,39,35,0.07);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(62,39,35,0.18);
  transform: translateY(-4px) scale(1.01);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
/* List in features/services */
.features .content-wrapper>ul,
.services .content-wrapper>ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ===== FEATURES ===== */
.features {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 22px rgba(62,39,35,0.08);
  margin-bottom: 60px;
  padding: 40px 0;
}
.features h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
.features ul li {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  font-size: 1.1rem;
  color: #3E2723;
}
.features ul li img {
  width: 40px; height: 40px; margin-top: 2px;
  background: #F5F5F5;
  border-radius: 50%;
  border: 2px solid #C49D63;
  padding: 7px;
}
.success-stats h3 {
  font-size: 1.3rem;
}
.success-stats ul {
  margin-top: 6px;
  padding-left: 0;
  gap: 9px;
  display: flex;
  flex-direction: column;
}

/* ===== SERVICES & PRICING ===== */
.services {
  background: #fff;
  box-shadow: 0 4px 22px rgba(62,39,35,0.065);
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 38px 0 36px 0;
}
.services h2 {
  margin-bottom: 22px;
  font-size: 2rem;
}
.service-listing, .service-detailed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.service-item {
  background: #F5F5F5;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(62, 39, 35, 0.055);
  padding: 32px 22px 32px 22px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  max-width: 300px;
  transition: box-shadow 0.21s, transform 0.14s;
}
.service-item:hover {
  box-shadow: 0 8px 36px rgba(62,39,35,0.15);
  transform: translateY(-4px) scale(1.017);
}
.service-item h3 {
  color: #3E2723;
  margin-bottom: 3px;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.service-item p {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #313131;
}
.service-item ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.98rem;
  color: #5E4634;
  margin-bottom: 6px;
}
.service-price {
  font-weight: 800;
  color: #C49D63;
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.service-item .btn-secondary {
  margin-top: 8px;
}

.service-pricing {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #3E2723;
  margin-bottom: 14px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #F5F5F5;
  margin-bottom: 60px;
  padding: 40px 0 32px 0;
  border-radius: 18px;
}
.testimonials h2, .testimonials h1 {
  margin-bottom: 26px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  padding: 20px 26px 18px 24px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 20px rgba(62,39,35,0.11);
  min-width: 270px;
  max-width: 370px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.13s;
  border: 2px solid #C49D6311;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(196, 157, 99, 0.21);
  transform: translateY(-2px) scale(1.017);
}
.testimonial-card blockquote {
  font-size: 1.07rem;
  line-height: 1.5;
  color: #3E2723;
  font-weight: 600;
  margin-bottom: 5px;
}
.testimonial-card footer {
  font-size: .97rem;
  color: #C49D63;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.star-ratings {
  margin-top: 18px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #3E2723;
  background: none;
}

/* ===== BLOG ARTICLES PREVIEW ===== */
.article-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.article {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(62,39,35,0.09);
  padding: 26px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  transition: box-shadow 0.19s, transform 0.12s;
  margin-bottom: 18px;
}
.article:hover {
  box-shadow: 0 5px 20px rgba(196,157,99,0.15);
  transform: translateY(-2px) scale(1.01);
}
.article h3 {
  font-size: 1.12rem;
  color: #3E2723;
  margin-bottom: 2px;
}
.article p {
  color: #2c2621;
  font-size: 0.98rem;
}
.topic-tag {
  align-self: flex-start;
  background: #C49D63;
  color: #fff;
  font-size: .87rem;
  border-radius: 8px;
  padding: 2px 13px;
  font-weight: 700;
  letter-spacing: 0.045em;
  margin-top: 4px;
}

/* ===== FOOTER ===== */
footer {
  background: #3E2723;
  color: #fff;
  padding: 42px 0 22px 0;
  border-radius: 24px 24px 0 0;
  margin-top: 56px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 44px 20px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #C49D63;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline;
  padding: 0 12px 0 0;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.text-section {
  font-size: 1rem;
  max-width: 370px;
  margin-bottom: 10px;
}
.legal-links {
  font-size: 0.97rem;
  color: #e2cdb1;
  margin-top: 12px;
}

/* ===== OTHER COMMON STYLES ===== */
.text-section strong {
  color: #C49D63;
  font-weight: 800;
}
.company-clients {
  margin-top: 20px;
  background: #F5F5F5;
  border-radius: 10px;
  padding: 18px 20px;
}
.company-clients h3 {
  font-size: 1.1rem;
  color: #3E2723;
}
.company-clients ul {
  margin-top: 8px;
  padding-left: 0;
  gap: 7px;
  display: flex;
  flex-direction: column;
  color: #494949;
}

/* ===== FAQ LIST ===== */
.faq .content-wrapper > ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 14px;
}
.faq strong {
  color: #C49D63;
}

/* ===== COOKIE BANNER & MODAL ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #3E2723;
  color: #fff;
  padding: 22px 16px 22px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  z-index: 1001;
  box-shadow: 0 -2px 20px rgba(62,39,35,0.16);
  font-size: 1rem;
  animation: cookiebannerfadein 0.66s cubic-bezier(.4,0,.2,1);
}
@keyframes cookiebannerfadein {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  background: #C49D63;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  padding: 9px 22px;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: #fff;
  color: #3E2723;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #3E2723;
  border: 1.5px solid #C49D63;
  margin-left: 0;
}
.cookie-banner .cookie-settings:focus, .cookie-banner .cookie-settings:hover {
  background: #C49D63;
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed; top:0; left:0; right:0; bottom:0;
  background: rgba(62,39,35,0.77);
  z-index: 1010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s cubic-bezier(.4,0,.2,1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #333;
  border-radius: 18px;
  box-shadow: 0 6px 30px rgba(62,39,35,0.21);
  padding: 38px 32px;
  min-width: 320px;
  max-width: 92vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  animation: cookiemodalfadein 0.42s cubic-bezier(.4,0,.2,1);
}
@keyframes cookiemodalfadein {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #3E2723;
  font-weight: 800;
  margin-bottom: 20px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #F5F5F5;
  border-radius: 8px;
  padding: 13px 17px;
  font-size: 1.04rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #3E2723;
}
.cookie-category.essential label {
  color: #C49D63;
  font-weight: bold;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 19px;
  background: none;
  border: none;
  color: #3E2723;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: #C49D63;
}
.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  width: 100%;
}

/* ===== RESPONSIVE / MOBILE ===== */
@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
  }
  .service-listing, .service-detailed-list,
  .article-previews, .content-wrapper, .features .content-wrapper > ul {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
  .footer-nav {
    gap: 10px;
  }
  .content-wrapper {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 102;
  }
  .hero {
    border-radius: 0 0 20px 20px;
    min-height: 150px;
    padding: 28px 0 22px 0;
  }
  .section, .features, .services, .testimonials, .cta-section {
    padding: 26px 0 18px 0;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 10px;
    max-width: 99vw;
  }
  .service-listing, .service-detailed-list, .article-previews, .content-wrapper {
    flex-direction: column;
    gap: 17px;
  }
  .company-clients {
    padding: 12px 7px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card, .card, .article {
    min-width: unset;
    max-width: 100vw;
    width: 100%;
    box-sizing: border-box;
  }
  .footer-nav, .legal-links, .text-section {
    margin-bottom: 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 15px;
    padding-left: 0; padding-right: 0;
  }
  .mobile-nav {
    margin-left: 20px;
  }
  .cookie-modal {
    min-width: 70vw;
    max-width: 96vw;
    padding: 24px 7vw;
  }
}
@media (max-width: 480px) {
  html { font-size: 15px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  .container { padding-left: 2vw; padding-right: 2vw; }
  .btn-primary, .btn-secondary {
    width: 100%;
    font-size: 1.03rem;
    padding: 11px 0;
  }
  .hero, .section, .features, .services, .testimonials, .cta-section {
    padding-left: 0; padding-right: 0;
  }
}

/* ===== GEOMETRIC DECORATIONS (MODERN-BOLD) =====*/
.hero::before {
  content: '';
  display: block;
  position: absolute;
  top: -32px; left: -32px;
  width: 120px; height: 120px;
  background: #C49D63;
  opacity: 0.13;
  border-radius: 44% 56% 39% 61%/69% 33% 67% 31%;
  z-index: 1;
  pointer-events: none;
}
.hero .container, .hero .content-wrapper { position: relative; z-index: 2; }

.cta-section::after {
  content: '';
  display: block;
  position: absolute;
  right: 0; bottom: -16px;
  width: 100px; height: 75px;
  background: #C49D63;
  opacity: 0.15;
  border-radius: 54% 46% 71% 29%/40% 55% 45% 60%;
  z-index: 1;
  pointer-events: none;
}
.cta-section .container, .cta-section .content-wrapper { position: relative; z-index: 2; }

/* ===== MICRO INTERACTIONS =====*/
a, button, .btn-primary, .btn-secondary {
  transition: color 0.19s, background 0.19s, box-shadow 0.17s, transform 0.13s;
}
.card, .service-item, .testimonial-card, .article {
  transition: transform 0.15s, box-shadow 0.18s;
}
.card:hover, .service-item:hover, .testimonial-card:hover, .article:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 8px 36px rgba(196,157,99,0.19);
}

/* ===== FORM ELEMENTS (if needed) =====*/
input, select, textarea {
  padding: 11px 14px;
  border: 2px solid #C49D6355;
  border-radius: 8px;
  font-size: 1.06rem;
  background: #fff;
  color: #3E2723;
  transition: border 0.17s;
}
input:focus, select:focus, textarea:focus {
  border-color: #C49D63;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  color: #3E2723;
}

/* ===== UTILITIES ===== */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.align-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.m-auto { margin: auto !important; }

/* ===== END of style.css ===== */
