/* ======================================================================
   RESET & BASELINE NORMALIZATION
======================================================================== */
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;
  vertical-align: baseline;
  font: inherit;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
  background: #222327;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #e6e2db;
  background: #222327;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #B5832D;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #FFD58A;
  text-decoration: underline;
}
strong { font-weight: bold; }
em { font-style: italic; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
}
ul, ol {
  margin-left: 20px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #FFF8F0;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.6rem; margin-bottom: 22px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }
p { margin-bottom: 16px; }

/*
  ==============
  INDUSTRIAL MODERN COLORS & FONTS
  ==============
*/
:root {
  --primary: #374151;
  --primary-rgb: 55,65,81;
  --secondary: #B5832D;
  --secondary-dark: #99702b;
  --accent: #FFF8F0;
  --card-bg: #26282c;
  --section-bg: #232328;
  --metallic: #8c8783;
  --surface: #32343a;
  --footer-bg: #18191b;
  --focused: #FFD58A;
  --danger: #9c3621;
}

/*
====================
-- CONTAINER AND WRAPPERS
==================== */
.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--section-bg);
  border-radius: 14px;
  box-shadow: 0 4px 28px rgba(8,10,16,0.10), 0 1.5px 0.8px rgba(50,52,58, .04);
}

/*
====================
-- HEADER & NAVIGATION
==================== */
header {
  background-color: var(--primary);
  padding: 0;
  border-bottom: 0.5px solid #333438;
  position: relative;
  z-index: 30;
}
header .container {
  min-height: 68px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header a img {
  height: 38px;
  margin-right: 14px;
  vertical-align: middle;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  padding: 6px 0;
  transition: color 0.18s, border-bottom 0.18s;
  border-bottom: 2px solid transparent;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
.cta-btn {
  background: linear-gradient(90deg, var(--secondary) 60%, var(--metallic) 100%);
  color: #232328;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 24px;
  border: none;
  border-radius: 27px;
  box-shadow: 0 3px 16px rgba(135,116,43,0.12);
  cursor: pointer;
  outline: none;
  margin-left: 18px;
  transition: background 0.22s, color 0.18s, transform 0.16s, box-shadow 0.18s;
  display: inline-block;
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(90deg, var(--focused) 70%, var(--metallic) 100%);
  color: var(--primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(181,131,45,0.14);
}

/*
======================
-- MOBILE NAVIGATION
====================== */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.3rem;
  cursor: pointer;
  display: none;
  z-index: 106;
  transition: color 0.18s, transform 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 100vw;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, var(--primary) 78%, #221f1b 100%);
  box-shadow: -7px 0 21px 2px rgba(0,0,0,0.25);
  pointer-events: none;
  opacity: 0;
  transition: left 0.34s cubic-bezier(.38,1.15,.6,1), opacity 0.24s;
  z-index: 105;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  left: 0;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  right: 22px;
  top: 22px;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: #fff8f0;
  cursor: pointer;
  z-index: 111;
  transition: color 0.18s, transform 0.18s;
  padding: 4px 8px;
  border-radius: 50%;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(240,180,30,0.09);
  color: var(--secondary);
  outline: 2px solid var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin: 90px 0 0 38px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: var(--accent);
  background: none;
  padding: 12px 0;
  border: none;
  text-align: left;
  transition: color 0.17s, padding-left 0.16s;
  width: max-content;
  letter-spacing: 0.025em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  padding-left: 10px;
  outline: none;
}

@media (max-width: 1020px) {
  header nav {
    gap: 11px;
  }
  .cta-btn {
    margin-left: 7px;
    font-size: 15px;
    padding: 10px 14px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 97vw; }
}
@media (max-width: 820px) {
  .container { max-width: 99vw; }
  header .container { gap: 11px; }
}
@media (max-width: 768px) {
  header .container nav,
  .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 19px;
  }
}
@media (max-width: 540px) {
  .container { padding: 0 7px; }
}

/*
======================
-- LAYOUT UTILS (FLEX)
====================== */
.card-container,
.card-grid,
.features-grid,
.review-list,
.team-list,
.event-list,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card-container { gap: 24px; }
.card { margin-bottom: 20px; position: relative; display: flex; flex-direction: column; }
.features-grid {
  gap: 32px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.content-grid { gap: 20px; }
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  margin-bottom: 20px;
}
.testimonial-card {
  background: #FFF8F0;
  color: #212122;
  min-width: 235px;
  flex: 1 1 260px;
  border-radius: 19px;
  box-shadow: 0 3px 21px rgba(38,37,33,0.10), 0 1.5px 0.8px rgba(69, 71, 79, .06);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  border: 1.5px solid #ded3bf;
  transition: transform 0.13s, box-shadow 0.18s;
}
.testimonial-card:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 7px 28px rgba(181,131,45,0.12);
  border-color: var(--secondary);
}
.feature-item {
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 2px 13px rgba(50,52,58,0.09);
  border: 1.5px solid #44474c;
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  max-width: 295px;
  flex: 1 1 220px;
  transition: transform 0.13s, box-shadow 0.16s, border-color 0.14s;
}
.feature-item img {
  filter: grayscale(0.13) brightness(0.88);
  max-height: 39px;
}
.feature-item:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--secondary);
  box-shadow: 0 9px 24px rgba(181,131,45,0.13);
}
.feature-price {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.18rem;
  margin-top: 10px;
  letter-spacing: 0.02em;
  font-family: 'Playfair Display', serif;
}
.review-card {
  background: var(--surface);
  border-radius: 13px;
  padding: 22px 17px;
  border: 1px solid #404144;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 3px 13px rgba(50,52,58,0.065);
  transition: box-shadow .17s, border-color .18s;
}
.review-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 32px rgba(181,131,45,0.10);
}
.event-list {
  gap: 28px;
  margin-top: 16px;
}
.event-card {
  background: var(--card-bg);
  border-radius: 15px;
  border: 1.5px solid #44474c;
  box-shadow: 0 2px 13px rgba(50,52,58,0.09);
  padding: 27px 20px 21px 20px;
  min-width: 210px;
  max-width: 380px;
  flex: 1 1 230px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.15s, box-shadow 0.18s, transform .13s;
}
.event-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 10px 30px rgba(181,131,45,0.14);
  transform: translateY(-2px) scale(1.03);
}
.event-price {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.team-list {
  gap: 20px;
  margin-bottom: 20px;
}
.team-member {
  background: var(--surface);
  border-radius: 11px;
  padding: 20px 15px;
  border: 1px solid #404144;
  min-width: 185px;
  max-width: 315px;
  flex: 1 1 160px;
  box-shadow: 0 3px 13px rgba(50,52,58,0.06);
  transition: border-color 0.16s;
}
.team-member:hover {
  border-color: var(--secondary);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.text-section {
  background: var(--surface);
  border-radius: 11px;
  padding: 24px 18px;
  margin-bottom: 24px;
}

@media (max-width: 1020px) {
  .features-grid,
  .event-list,
  .testimonials-grid,
  .card-grid, .review-list, .card-container, .team-list, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .features-grid, .testimonials-grid, .event-list, .card-grid, .review-list, .card-container, .team-list, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 22px 6px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
  }
}

/*
======================
-- LISTS & FILTERS
====================== */
.review-filter {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.review-filter ul {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.review-filter li {
  color: var(--secondary);
  background: var(--card-bg);
  padding: 6px 15px;
  border-radius: 13px;
  font-size: 1rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 3px;
  letter-spacing: 0.01em;
  box-shadow: 0 1.5px 6px rgba(49,49,54,0.08);
  user-select: none;
  border: 1px solid #44474c;
  transition: background 0.13s, color 0.13s;
}
.review-filter li:hover,
.review-filter li:focus {
  background: var(--secondary);
  color: var(--primary);
  outline: none;
}

/*
======================
-- STAR RATING
====================== */
.star-rating {
  color: var(--secondary);
  font-size: 1.18rem;
  letter-spacing: 2px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  margin-top: 5px;
}
.testimonial-card .star-rating {
  font-size: 1.25rem;
  margin-top: 0;
}

/*
======================
-- FOOTER
====================== */
footer {
  background: var(--footer-bg);
  color: var(--accent);
  font-size: 1rem;
  border-top: 1.5px solid #333438;
  padding: 38px 0 22px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  flex: 2 1 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 3px;
}
.footer-brand span {
  font-size: 1.13rem;
  font-family: 'Playfair Display', serif;
  color: var(--secondary);
  margin-bottom: 7px;
}
.footer-menus {
  flex: 1 1 110px;
}
.footer-menus nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 7px;
}
.footer-menus a {
  color: #ded3bf;
  font-size: 1rem;
  transition: color 0.16s;
  padding: 2px 0;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.footer-menus a:hover,
.footer-menus a:focus {
  color: var(--secondary);
  outline: none;
}
.footer-social {
  flex: 1 1 80px;
  display: flex;
  gap: 13px;
  align-items: center;
}
.footer-social a img {
  height: 28px;
  width: 28px;
  filter: grayscale(0.12) contrast(1.08);
  transition: filter 0.15s, transform 0.13s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: none;
  transform: scale(1.1) translateY(-2px);
}
.footer-newsletter {
  flex: 2 1 270px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  margin-top: 4px;
}
.footer-newsletter p {
  color: #ded3bf;
  font-size: 1rem;
  margin-bottom: 6px;
}
.footer-newsletter input[type="email"] {
  border: 1px solid #8c8783;
  border-radius: 16px;
  padding: 11px 15px;
  font-size: 1rem;
  margin-right: 12px;
  background: #26282c;
  color: #fff8f0;
  margin-bottom: 5px;
  width: 240px;
  max-width: 86vw;
  transition: border 0.15s;
}
.footer-newsletter input[type="email"]:focus {
  border: 1.5px solid var(--secondary);
  outline: none;
}
.footer-newsletter button[type="button"] {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 700;
  padding: 9px 22px;
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.19s, color 0.15s, transform .12s;
  margin-bottom: 3px;
}
.footer-newsletter button[type="button"]:hover,
.footer-newsletter button[type="button"]:focus {
  background: var(--focused);
  color: var(--primary);
  outline: none;
  transform: translateY(-2px) scale(1.03);
}
@media (max-width:920px) {
  footer .container { gap: 21px;}
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/*
============================
-- SECTION: HERO & TEXT
============================ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--section-bg);
  border-radius: 14px;
  box-shadow: 0 4px 28px rgba(8,10,16,0.10), 0 1.5px 0.8px rgba(50, 52, 58, .04);
}
@media (max-width: 768px) {
  section { padding: 22px 7px; }
}

/*
===================
-- COOKIE BANNER
=================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(41, 43, 49, 0.96);
  border-top: 2px solid var(--secondary);
  color: var(--accent);
  font-size: 1rem;
  padding: 22px 15px 20px 15px;
  z-index: 2001;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 28px rgba(55,65,81,0.21);
  opacity: 0;
  pointer-events: none;
  transform: translateY(70px);
  transition: opacity 0.25s, transform 0.27s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner p {
  margin-bottom: 14px;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.cookie-btn {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  border: none;
  border-radius: 17px;
  padding: 9px 20px;
  min-width: 112px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 3px;
  background: var(--secondary);
  color: var(--primary);
  transition: background 0.18s, color 0.13s, box-shadow 0.14s;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--focused);
  color: var(--primary);
  box-shadow: 0 2.5px 9px rgba(181,131,45,0.15);
}
.cookie-btn.reject {
  background: var(--danger);
  color: #fff8f0;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #bc544a;
}
.cookie-btn.settings {
  background: #43434B;
  color: var(--secondary);
  border: 1.2px solid var(--secondary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* COOKIE MODAL POPUP */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(34, 36, 41, 0.75);
  z-index: 2202;
  display: none;
}
.cookie-modal-backdrop.active { display: block; }
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.98);
  background: var(--surface);
  color: var(--accent);
  padding: 38px 20px 22px 27px;
  border-radius: 21px;
  box-shadow: 0 10px 38px 0 rgba(50,52,58,0.19);
  width: 92vw;
  max-width: 425px;
  z-index: 2110;
  display: none;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.19s, opacity 0.15s;
}
.cookie-modal.visible {
  display: flex;
  opacity: 1;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 1.5rem;
  position: absolute;
  right: 17px;
  top: 13px;
  cursor: pointer;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  margin-bottom: 6px;
}
.cookie-category label {
  color: var(--focused);
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 21px; height: 21px;
}
.cookie-essential {
  opacity: 0.5; pointer-events: none;
}
.cookie-modal button {
  align-self: flex-end;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 17px;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 20px;
  cursor: pointer;
  margin-top: 14px;
  transition: transform 0.13s, background 0.14s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--focused);
  transform: translateY(-1.5px) scale(1.03);
}

/*
======================
-- MISC
====================== */
hr {
  border: none;
  height: 1px;
  background: #44444a;
  margin: 18px 0 15px 0;
}
address {
  font-style: normal;
  font-size: 1rem;
  color: #ded3bf;
  margin-bottom: 3px;
}
dt {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 18px;
  margin-bottom: 2px;
}
dd {
  margin-bottom: 12px;
  color: #ded3bf;
  font-size: 1rem;
}
input[type="email"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #b6b6b8;
}
input[type="email"]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #b6b6b8;
}
input[type="email"]::placeholder, textarea::placeholder {
  color: #b6b6b8;
}

/* FAQ & Text block */
dd, .text-section p, .text-section ul, .text-section ol { color: #ded3bf; }

/* Accessibility - outline on buttons */
button:focus-visible, .cta-btn:focus-visible, a:focus-visible {
  outline: 2.5px solid var(--secondary);
  outline-offset: 1.75px;
}

/*
======================
-- RESPONSIVE ADJUSTMENTS
====================== */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .container { padding: 0 3.5vw; }
  .features-grid, .testimonials-grid, .event-list, .card-grid, .review-list, .card-container, .team-list, .content-grid {
    gap: 12px;
  }
  .feature-item, .event-card, .team-member, .review-card {
    padding-left: 9px;
    padding-right: 9px;
  }
  .footer-newsletter input[type="email"] {
    width: 98vw;
  }
}

/* =======================
   MICRO-INTERACTIONS
======================== */
.card,
.feature-item,
.review-card,
.event-card,
.team-member,
.testimonial-card {
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.15s, background 0.12s;
}
.card:hover,
.feature-item:hover,
.review-card:hover,
.event-card:hover,
.team-member:hover,
.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(181,131,45,0.16), 0 2px 9px rgba(135,116,43,0.08);
  border-color: var(--secondary);
}

.cta-btn,
.cookie-btn {
  transition: background 0.17s, color 0.14s, box-shadow 0.17s, transform 0.16s;
}

/* ==================
   PRINT STYLES
=================== */
@media print {
  header, footer, .mobile-menu, .cta-btn, .cookie-banner, .cookie-modal, .cookie-modal-backdrop {
    display: none !important;
  }
  .container, .content-wrapper, section {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}
