/* ==========================================================================
   CSS RESET & BASE 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #233D4D;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  min-height: 100vh;
  letter-spacing: 0.01em;
  word-break: normal;
}
img {
  max-width: 100%;
  display: inline-block;
  border: 0;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: #233D4D;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #6CA273;
  outline: 0;
}
strong {
  font-weight: 600;
}
hr {
  border: none;
  border-top: 1px solid #E3E9ED;
  margin: 32px 0;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #233D4D;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.3rem; line-height: 1.25; color: #233D4D; }
h4 { font-size: 1.15rem; line-height: 1.25; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }
p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #233D4D;
  margin-bottom: 16px;
}
blockquote {
  border-left: 4px solid #6CA273;
  padding-left: 24px;
  color: #222;
  font-style: italic;
  background: #FAFAF7;
}
cite {
  font-size: 0.96rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #6CA273;
  font-style: normal;
  display: block;
  margin-top: 12px;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   LAYOUT CONTAINER CLASSES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section:last-child {
  margin-bottom: 0;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(35, 61, 77, 0.07);
  transition: box-shadow 0.2s;
  position: relative;
  padding: 20px;
  min-width: 250px;
  max-width: 340px;
  flex: 1 1 280px;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(35, 61, 77, 0.11);
}
.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: center;
  gap: 20px;
  padding: 20px 28px;
  margin: 20px 0;
  background: #F6E9D7;
  border-radius: 14px;
  box-shadow: 0 1px 5px rgba(35, 61, 77, 0.08);
  color: #222;
  font-size: 1.13rem;
  max-width: 580px;
}
.testimonial-card p {
  color: #233D4D;
  font-size: 1.13rem;
}
.testimonial-card cite {
  color: #6CA273;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Extra containers from provided HTML */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature-grid li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 5px rgba(35, 61, 77, 0.06);
  flex: 1 1 230px;
  max-width: 270px;
  min-width: 190px;
  padding: 20px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  transition: box-shadow 0.18s;
}
.feature-grid li:hover {
  box-shadow: 0 4px 16px rgba(108, 162, 115, 0.16);
}

.category-filters {
  margin-bottom: 28px;
  font-size: 0.98rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #6CA273;
}
.category-filters a {
  color: #6CA273;
  font-weight: 500;
  transition: text-decoration 0.16s;
}
.category-filters a:hover {
  text-decoration: underline;
}

.article-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.article-teasers li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(35, 61, 77, 0.09);
  flex: 1 1 265px;
  min-width: 210px;
  max-width: 350px;
  padding: 22px 18px 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.18s;
}
.article-teasers li:hover {
  box-shadow: 0 6px 24px rgba(35, 61, 77, 0.18);
}
.article-teasers h3 {
  color: #233D4D;
  font-size: 1.18rem;
}
.article-teasers a {
  align-self: flex-start;
  color: #6CA273;
  font-weight: 600;
}
.article-teasers a:hover {
  text-decoration: underline;
}

.curated-articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 28px 0;
}
.curated-articles-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 7px rgba(35, 61, 77, 0.07);
  min-width: 200px;
  max-width: 320px;
  flex: 1 1 230px;
  padding: 18px 18px 16px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.17s;
}
.curated-articles-list li:hover {
  box-shadow: 0 6px 22px rgba(35, 61, 77, 0.13);
}
.curated-articles-list h3 {
  font-size: 1.1rem;
}
.curated-articles-list a {
  align-self: flex-start;
  color: #6CA273;
  font-weight: 600;
  transition: color 0.18s;
}
.curated-articles-list a:hover {
  text-decoration: underline;
  color: #233D4D;
}
.feature-article {
  background: #F6E9D7;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(108, 162, 115, 0.11);
  padding: 22px 22px 23px 22px;
  margin: 0 0 20px 0;
  color: #233D4D;
  font-size: 1.02rem;
}
.feature-article h3 {
  margin-bottom: 8px;
  font-size: 1.07rem;
}
.topic-tags, .fauna-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 8px;
}
.topic-tags span, .fauna-highlight span {
  background: #6CA273;
  color: #fff;
  border-radius: 8px;
  padding: 3px 14px;
  font-size: 0.93rem;
  letter-spacing: 0.01em;
}
.quick-actions {
  background: #F6E9D7;
  border-radius: 12px;
  padding: 16px 16px 11px 16px;
  font-size: 1rem;
  margin-top: 26px;
}
.quick-actions h3 {
  font-size: 1.06rem;
  margin-bottom: 8px;
}
.reader-submissions {
  background: #E3E9ED;
  color: #233D4D;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.98rem;
  margin-top: 14px;
}
.tips-grid {
  margin-bottom: 60px;
  padding: 40px 0;
}

.cta-section {
  background: #F6E9D7;
  border-radius: 12px;
  margin-bottom: 48px;
  padding: 40px 20px;
}

.opening-hours, .map-embed, .text-section {
  margin-bottom: 24px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  background: #F6E9D7;
  min-height: 310px;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 60px 0 30px 0;
}
.hero-section .container {
  justify-content: center;
}
.hero-section .content-wrapper {
  justify-content: center;
  align-items: flex-start;
  max-width: 680px;
  gap: 0;
}
.hero-section h1 {
  color: #233D4D;
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.hero-section p {
  font-size: 1.18rem;
  margin-bottom: 26px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.cta-button,
button,
input[type=submit],
.mobile-menu-toggle,
.mobile-menu-close {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: #233D4D;
  color: #fff;
  border-radius: 9px;
  border: none;
  outline: none;
  padding: 12px 28px;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(35, 61, 77, 0.09);
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.01em;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s, transform 0.2s;
  gap: 8px;
}
.cta-button {
  background: #233D4D;
  color: #fff;
  border: none;
  padding: 12px 34px;
  font-size: 1.07rem;
  box-shadow: 0 1px 6px rgba(108, 162, 115, 0.13);
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: #6CA273;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 14px rgba(35, 61, 77, 0.11);
}
button:active, .cta-button:active {
  background: #233D4D;
  color: #fff;
  transform: scale(0.98);
}
button:disabled, .cta-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.mobile-menu-toggle {
  background: #fff;
  color: #233D4D;
  border-radius: 6px;
  font-size: 1.7rem;
  padding: 12px 20px;
  box-shadow: 0 2px 6px rgba(35, 61, 77, 0.11);
  border: 1px solid #E3E9ED;
  display: none;
  z-index: 110;
  position: relative;
  margin-left: auto;
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F6E9D7;
  color: #6CA273;
}
.mobile-menu-close {
  background: #fff;
  color: #233D4D;
  font-size: 2rem;
  border-radius: 7px;
  padding: 8px 16px;
  align-self: flex-end;
  margin-bottom: 14px;
  border: 1px solid #E3E9ED;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F6E9D7;
  color: #6CA273;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(35, 61, 77, 0.04);
  position: relative;
  z-index: 101;
  transition: box-shadow 0.16s;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 18px 20px 18px 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.03rem;
  color: #233D4D;
  padding: 8px 0;
  border-radius: 4px;
  transition: background 0.16s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F6E9D7;
  color: #6CA273;
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 24px;
  vertical-align: middle;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 120;
  background: rgba(35, 61, 77, 0.92);
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.32s cubic-bezier(.46,.03,.52,1.1), transform 0.32s cubic-bezier(.46,.03,.52,1.1);
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
  padding: 30px 40px 40px 48px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.20rem;
  font-weight: 500;
  padding: 8px 0;
  border-radius: 4px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #6CA273;
  color: #fff;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: #fff;
  border-top: 1px solid #E3E9ED;
  margin-top: 68px;
  padding: 36px 0 12px 0;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin: 24px 0 19px 0;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #6CA273;
  padding: 6px 0;
  border-radius: 4px;
}
.footer-nav a:hover { text-decoration: underline; }
footer .container {
  align-items: center;
  justify-content: center;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
footer img {
  height: 30px;
  width: auto;
}
.contact-info {
  font-size: 0.99rem;
  color: #233D4D;
  margin-bottom: 7px;
  text-align: center;
}
.contact-info img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin: 8px 0 12px 0;
}
.social-links a img {
  height: 24px;
  width: 24px;
  opacity: 0.80;
  transition: opacity 0.18s, filter 0.18s;
}
.social-links a:hover img { opacity: 1; filter: brightness(1.1); }
.copyright {
  font-size: 0.93rem;
  color: #A2ADBA;
  margin-top: 8px;
  text-align: center;
}

/* ==========================================================================
   COOKIE CONSENT BANNER & COOKIE MODAL
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #233D4D;
  color: #fff;
  padding: 28px 20px 20px 20px;
  z-index: 170;
  box-shadow: 0 -3px 32px rgba(35, 61, 77, 0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.08rem;
  transition: transform 0.33s cubic-bezier(.46,.03,.52,1.1), opacity 0.27s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 7px;
}
.cookie-btn { /* shared button style for cookie control */
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  background: #6CA273;
  color: #fff;
  border-radius: 7px;
  border: none;
  padding: 8px 20px;
  margin: 0 8px 0 0;
  transition: background 0.16s, color 0.14s;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F6E9D7;
  color: #233D4D;
}
.cookie-btn.reject {
  background: #fff;
  color: #233D4D;
  border: 1px solid #6CA273;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #6CA273;
  color: #fff;
}
.cookie-btn.settings {
  background: #233D4D;
  color: #F6E9D7;
  border: 1px solid #6CA273;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #6CA273;
  color: #fff;
}
.cookie-banner strong { color: #F6E9D7; }
.cookie-banner a {
  color: #6CA273;
  text-decoration: underline;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(35, 61, 77, 0.73);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -53%) scale(0.97);
  background: #fff;
  color: #233D4D;
  border-radius: 16px;
  min-width: 310px;
  width: 96%;
  max-width: 420px;
  z-index: 210;
  box-shadow: 0 8px 40px rgba(35, 61, 77, 0.22);
  padding: 40px 32px 28px 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.21s, transform 0.22s cubic-bezier(.46,.03,.52,1.1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -53%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 18px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  margin-bottom: 13px;
  cursor: pointer;
}
.cookie-switch {
  appearance: none;
  width: 44px;
  height: 24px;
  background: #E3E9ED;
  border-radius: 13px;
  position: relative;
  outline: none;
  transition: background 0.18s;
}
.cookie-switch:checked {
  background: #6CA273;
}
.cookie-switch::-webkit-slider-thumb {
  appearance: none;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 5px rgba(35, 61, 77, 0.09);
  transition: left 0.17s;
}
.cookie-switch:checked:before {
  left: 24px;
}
.cookie-modal .modal-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
}
@media (max-width: 470px) {
  .cookie-modal {
    width: 98vw;
    min-width: 90vw;
    padding: 24px 10px 17px 10px;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1150px) {
  .container { max-width: 97vw; }
}
@media (max-width: 980px) {
  .main-nav { gap: 16px; }
  .footer-nav { gap: 14px; }
  .feature-grid li, .article-teasers li, .curated-articles-list li, .card {
    min-width: 160px;
    max-width: 100%;
    flex: 1 1 150px;
    padding: 18px 10px;
  }
}
@media (max-width: 820px) {
  .main-nav { gap: 12px; }
  .feature-grid, .article-teasers, .curated-articles-list, .card-container {
    gap: 14px;
  }
  .footer-nav { gap: 10px; }
}
@media (max-width: 768px) {
  .main-nav, .footer-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    position: absolute;
    top: 12px;
    right: 18px;
  }
  .hero-section h1 { font-size: 1.42rem; }
  .hero-section {
    padding: 32px 0 19px 0;
  }
  .container {
    padding: 0 10px;
  }
  .features-section, .about-preview-section, .cta-section, .section {
    padding: 26px 6px;
  }
  .feature-grid, .curated-articles-list, .article-teasers, .card-container {
    gap: 10px;
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card { padding: 16px 7px; font-size: 1rem; }
  .feature-article { padding: 10px; }
  .footer-nav { flex-direction: column; align-items: center; gap: 6px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1rem; }
  .hero-section p, .about-preview-section p, .feature-article, .faq p {
    font-size: 0.99rem;
  }
  .card, .feature-grid li, .article-teasers li, .curated-articles-list li {
    padding: 12px 6px 13px 6px;
    margin-bottom: 13px;
  }
  .cookie-banner { font-size: 0.99rem; padding: 24px 7px 14px 7px; }
}

/* ==========================================================================
   SPACING & VISUAL HIERARCHY
   ========================================================================== */
main section { margin-bottom: 60px; }
main section:last-child { margin-bottom: 0; }
.content-wrapper > h1, .content-wrapper > h2 {
  margin-bottom: 16px;
}
.content-wrapper > h3 {
  margin-bottom: 9px;
}
.content-wrapper > ul, .content-wrapper > ol {
  margin-bottom: 14px;
}
.content-wrapper > ul > li, .content-wrapper > ol > li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ==========================================================================
   MICRO-INTERACTIONS & ANIMATIONS
   ========================================================================== */
.card, .card-container .card, .feature-grid li, .article-teasers li, .curated-articles-list li {
  transition: box-shadow 0.19s, transform 0.15s, background 0.11s;
}
.card:hover, .feature-grid li:hover, .article-teasers li:hover, .curated-articles-list li:hover {
  transform: translateY(-5px) scale(1.018);
  box-shadow: 0 9px 30px rgba(35, 61, 77, 0.16);
  background: #FAFAF7;
}

.cta-button { transition: background 0.2s, box-shadow 0.18s, transform 0.16s; }
.cta-button:focus { outline: 2px dotted #233D4D; }

.mobile-menu.open, .cookie-banner.visible {
  animation: fadeInSlide 0.45s cubic-bezier(.33,.01,.37,1.04);
}
@keyframes fadeInSlide {
  from { opacity: 0; transform: translateX(-100%); }
  to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   CUSTOM SCROLLBAR (Minimal)
   ========================================================================== */
::-webkit-scrollbar { width: 8px; background: #f5f7f9; }
::-webkit-scrollbar-thumb { background: #E3E9ED; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #d1dadf; }

/* ==========================================================================
   ACCESSIBILITY FOCUS STYLES
   ========================================================================== */
:focus-visible {
  outline: 2px solid #6CA273;
  outline-offset: 2px;
}

/* ==========================================================================
   PRINT BASELINE
   ========================================================================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  main { padding: 0 !important; margin: 0 !important; }
}

/* END CSS */
