/* =======================================================
   CSS RESET & NORMALIZE - BEGIN
   ======================================================= */
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,
main, 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;}
*, *:before, *:after {box-sizing: inherit;}
body {
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #EFF3F6;
  color: #232323;
}
img {max-width: 100%; display:block;}
ul, ol {list-style: none;}
a {text-decoration: none; color: inherit;}
input, button, select, textarea {font-family: inherit; font-size: inherit;}

/* =======================================================
   LUXURY PREMIUM BRAND BASE - COLORS & FONTS
   ======================================================= */
:root {
  --brand-primary: #154273;
  --brand-secondary: #EFF3F6;
  --brand-accent: #F7A800; /* For branded accents */
  --lux-gold: #D5B773;
  --lux-dark: #112233;
  --lux-light: #FAFAF7;
  --lux-muted: #E6E5DF;
  --lux-card-bg: #fff;
  --lux-shadow: 0 6px 24px 0 rgba(30,30,40,0.08);
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 700;
  src: local('Quicksand'), url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--lux-light);
  color: var(--lux-dark);
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {font-size: 2.75rem; margin-bottom: 18px;}
h2 {font-size: 2rem; margin-bottom: 16px;}
h3 {font-size: 1.35rem; margin-bottom: 10px;}
h4 {font-size: 1.1rem; margin-bottom: 8px;}
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.4rem;}
}
p, ul, ol, li, span, strong {
  font-size: 1rem;
  color: var(--lux-dark);
  line-height: 1.7;
}
strong {font-weight: 700;}

/* =======================================================
   COMMON LAYOUT CONTAINERS & SECTIONS
   ======================================================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--lux-card-bg);
  border-radius: 24px;
  box-shadow: var(--lux-shadow);
}
@media (max-width: 768px) {
  .section {
    padding: 26px 7px;
    margin-bottom: 36px;
    border-radius: 18px;
  }
}

/* =======================================================
   HEADER & NAVIGATION
   ======================================================= */
header {
  background: var(--lux-light);
  box-shadow: 0 2px 14px rgba(21, 66, 115, 0.06);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px 16px 20px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--lux-dark);
  border-radius: 6px;
  padding: 7px 13px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--brand-primary);
  color: var(--lux-gold);
}
.cta-button.primary {
  background: var(--brand-primary);
  color: var(--lux-gold);
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 9px 32px;
  box-shadow: 0 2px 12px 0 rgba(21, 66, 115, 0.09);
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  outline: none;
  border: 2px solid transparent;
  position: relative;
  z-index: 2;
}
.cta-button.primary:hover,
.cta-button.primary:focus {
  background: var(--lux-gold);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  box-shadow: 0 4px 24px 0 rgba(21, 66, 115, 0.14);
}
.mobile-menu-toggle {
  display: none;
  background: var(--lux-gold);
  color: var(--brand-primary);
  font-size: 2.2rem;
  border: none;
  border-radius: 11px;
  padding: 2px 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.2s;
  z-index: 30;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--brand-primary);
  color: var(--lux-gold);
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .cta-button.primary { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* =======================================================
   MOBILE BURGER MENU
   ======================================================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17, 34, 51, 0.98);
  z-index: 98;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  will-change: transform;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: var(--lux-gold);
  font-size: 2.3rem;
  border: none;
  align-self: flex-end;
  margin: 24px 22px 16px 0;
  cursor: pointer;
  z-index: 100;
  transition: color 0.15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}
.mobile-nav a {
  color: var(--lux-gold);
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 17px 0;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  display: block;
  width: 96vw;
  text-align: center;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--lux-gold);
  color: var(--brand-primary);
}
@media (min-width: 1025px) {
  .mobile-menu,.mobile-menu-toggle {display:none!important;}
}

/* =======================================================
   HERO SECTION
   ======================================================= */
.hero {
  background: linear-gradient(94deg, #EFF3F6 65%, #ece8dd 100%);
  padding: 48px 0 36px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 34px rgba(21,66,115,0.09);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--brand-primary);
  text-align: center;
  line-height: 1.18;
  letter-spacing: 0.01em;
}
.hero h2 {
  color: var(--lux-gold);
  font-size: 1.18rem;
  margin-bottom: 0;
  text-align: center;
  letter-spacing: 0.015em;
}
.hero p {
  font-size: 1.18rem;
  color: var(--lux-dark);
  text-align: center;
}
@media (max-width: 768px) {
  .hero { padding: 28px 0 19px 0; border-radius: 0 0 18px 18px;}
  .hero h1 {font-size: 1.65rem;}
  .hero h2 {font-size: 1.09rem;}
  .hero .cta-button {padding: 6px 20px; font-size: 0.98rem;}
}

/* =======================================================
   FLEX PATTERNS - SECTIONS, CARDS, GRIDS
   ======================================================= */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: var(--lux-card-bg); border-radius: 14px; box-shadow: var(--lux-shadow); overflow: hidden; }
.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; align-items: center; gap: 20px; padding: 20px; margin-bottom: 20px; border-radius: 18px; box-shadow: var(--lux-shadow); background: #fff; border-left: 6px solid var(--lux-gold); transition: box-shadow 0.2s, border-color 0.2s; }
.testimonial-card:hover { box-shadow: 0 6px 24px 0 rgba(247,168,0,0.13), var(--lux-shadow); border-color: var(--brand-primary); }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; background: var(--lux-card-bg); border-radius: 14px; box-shadow: var(--lux-shadow); padding: 22px 18px; margin-bottom: 20px; transition: box-shadow 0.18s; min-width: 240px; max-width: 355px; border: 1px solid var(--lux-muted);}
.feature-item img {max-width: 46px;}
.feature-item h3 { color: var(--brand-primary); margin-bottom: 7px; }
.feature-item:hover { box-shadow: 0 8px 28px rgba(21,66,115,0.13), var(--lux-shadow); border-color: var(--lux-gold); }
.features .feature-grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: flex-start; }
@media (max-width: 900px) {
  .features .feature-grid { flex-direction: column; gap: 18px; }
  .feature-item { width: 100%; max-width: 100%; }
}

/* =========================
   HIGHLIGHTS/QUICK LINKS
   ========================= */
.highlights, .quick-links, .activity-highlights, .local-secrets, .reader-submission-teaser {
  background: var(--lux-card-bg);
  border-radius: 18px;
  box-shadow: var(--lux-shadow);
  margin-bottom: 32px;
  padding: 22px 16px;
}
.highlight-list {
  margin-bottom: 16px;
  font-size: 1.07rem;
  color: var(--lux-dark);
}
.highlight-list li {
  list-style-position: inside;
  margin-bottom: 9px;
}
.quicklink, .quick-links a {
  color: var(--lux-gold);
  font-weight: 700;
  transition: color 0.18s, border-bottom 0.18s;
  border-bottom: 1px dashed var(--lux-gold);
}
.quicklink:hover, .quick-links a:hover {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

/* =========================
   TESTIMONIALS / RATINGS
   ========================= */
.testimonials {
  background: #F6F6F3;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.user-rating-overview {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 13px;
  font-size: 1.05rem;
  color: var(--brand-primary);
  font-family: 'Quicksand', Arial, sans-serif;
}
.user-rating-overview img {
  height: 24px;
  width: 24px;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: var(--lux-dark);
  margin-bottom: 0;
  font-family: 'Quicksand', Arial, sans-serif;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--brand-primary);
  font-style: italic;
  margin-left: 12px;
}

/* =========================
   ACTIVITY LISTINGS & FILTER
   ========================= */
.activity-listing {
  background: var(--lux-card-bg);
  border-radius: 14px;
  box-shadow: var(--lux-shadow);
  padding: 20px 13px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.activity-listing li {
  padding: 8px 0 10px 0;
  font-size: 1.08rem;
  border-bottom: 1px solid var(--lux-muted);
}
.activity-listing li:last-child { border-bottom: none;}
.filters, .howto-steps, .value-list, .bullet-points ul, .faq-list, .article-list ul,
.mini-story-list ul, .family-favorites ul {
  margin: 8px 0 0 0;
  padding: 0 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.filters strong { color: var(--brand-primary); font-weight: 700; font-size: 1.1rem; margin-right: 9px;}
.filters span { background: var(--lux-muted); border-radius: 8px; padding: 4px 8px; margin-right: 4px; font-size: 0.97rem; color: var(--brand-primary); }

/* =========================
   FOOTER
   ========================= */
footer {
  background: var(--lux-dark);
  color: var(--lux-gold);
  padding: 34px 0 19px 0;
  border-radius: 28px 28px 0 0;
  position: relative;
  z-index: 10;
}
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-nav {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--lux-gold);
  font-size: 1.01rem;
  font-family: 'Quicksand', Arial, sans-serif;
  border-bottom: 1px dotted var(--lux-gold);
  transition: color 0.2s, border-bottom 0.18s;
}
.footer-nav a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}
footer p {
  color: var(--lux-gold);
  opacity: 0.85;
  font-size: 0.98rem;
  text-align: center;
}

/* =======================================================
   MISC UTILITY - BUTTONS, LINKS, MODALS, ETC.
   ======================================================= */
.button, .cta-button, button {
  appearance: none;
  cursor: pointer;
}
button, .cta-button, .btn {
  transition: all 0.18s;
}
[tabindex] {outline: none;}

/* Quote & blockquote for text-section */
.text-section p {
  margin-bottom: 11px;
  font-size: 1.08rem;
}
blockquote {
  border-left: 4px solid var(--lux-gold);
  background: var(--lux-light);
  padding: 18px 15px;
  margin: 20px 0;
  font-style: italic;
  color: var(--brand-primary);
  font-family: 'Quicksand', Arial, sans-serif;
  border-radius: 12px;
}
.value-list li,
.howto-steps li,
.bullet-points ul li,
.faq-list li,
.article-list ul li,
.mini-story-list ul li,
.family-favorites ul li {
  padding-left: 8px;
  background: none;
  color: var(--lux-dark);
  margin-bottom: 7px;
}
.value-list li strong, .howto-steps li strong {color: var(--lux-gold);}

/* =====================================
   RESPONSIVE FLEXBOX PATTERNS & ADAPTS
   ===================================== */
@media (max-width: 768px) {
  .header-container {flex-direction: row; gap: 7px; padding: 10px 6px;}
  .content-grid,
  .card-container,
  .features .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section { flex-direction: column; gap: 16px;}
  .footer-container {padding: 0 6px;}
}

/* =====================================
   COOKIES CONSENT BANNER & MODAL
   ===================================== */
#cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  z-index: 1199;
  background: #fff;
  color: var(--brand-primary);
  box-shadow: 0 -2px 26px rgba(21,66,115,0.07);
  padding: 22px 8px 22px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  border-top: 2.5px solid var(--lux-gold);
  transition: transform 0.26s cubic-bezier(.8,0,.18,1);
}
#cookie-consent-banner[aria-hidden="true"] {
  transform: translateY(120%);
  pointer-events: none;
}
#cookie-consent-banner[aria-hidden="false"] {
  transform: translateY(0);
  pointer-events: auto;
}
#cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 7px;
}
#cookie-consent-banner button {
  border: none;
  border-radius: 24px;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 25px;
  margin: 0 7px 0 0;
  transition: background 0.15s, color 0.15s;
  box-shadow: 0 1px 8px 0 rgba(21,66,115,0.05);
}
#cookie-consent-banner .accept-all {
  background: var(--lux-gold);
  color: var(--brand-primary);
}
#cookie-consent-banner .accept-all:hover,
#cookie-consent-banner .accept-all:focus {
  background: var(--brand-primary);
  color: var(--lux-gold);
}
#cookie-consent-banner .reject-all {
  background: var(--brand-primary);
  color: var(--lux-gold);
}
#cookie-consent-banner .reject-all:hover,
#cookie-consent-banner .reject-all:focus {
  background: var(--lux-gold);
  color: var(--brand-primary);
}
#cookie-consent-banner .cookie-settings {
  background: #fff;
  color: var(--brand-primary);
  border: 2px solid var(--lux-gold);
  box-shadow: none;
}
#cookie-consent-banner .cookie-settings:hover,
#cookie-consent-banner .cookie-settings:focus {
  background: var(--lux-gold);
  color: var(--brand-primary);
}

#cookie-pref-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1300;
  background: rgba(17,34,51, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
#cookie-pref-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-pref-content {
  background: #fff;
  border-radius: 20px;
  max-width: 384px;
  width: 96vw;
  padding: 35px 22px 26px 22px;
  box-shadow: 0 6px 32px rgba(21,66,115,0.17);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: modalIn .38s cubic-bezier(.7,0,.2,1) both;
}
@keyframes modalIn {from{transform: scale(0.95) translateY(80px); opacity:0} to{transform:none; opacity:1}}
.cookie-pref-content h2 {
  color: var(--brand-primary);
  margin-bottom: 6px;
}
.cookie-pref-cats {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-pref-cats label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--lux-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--lux-muted);
}
.cookie-pref-cats label:last-child {border-bottom: none;}
.cookie-pref-cats .toggle {
  appearance: none;
  width: 38px; height: 22px;
  background: var(--lux-muted);
  border-radius: 11px;
  position: relative;
  outline: none;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-pref-cats .toggle:checked {
  background: var(--lux-gold);
}
.cookie-pref-cats .toggle:before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 2px;
  transition: left 0.16s;
  box-shadow: 0 1px 2px rgba(21,66,115,0.11);
}
.cookie-pref-cats .toggle:checked:before {
  left: 18px;
}
.cookie-pref-cats .toggle[disabled] {
  opacity: 0.58;
  cursor: default;
}
.cookie-pref-close {
  position: absolute;
  top: 15px; right: 18px;
  color: var(--lux-gold);
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-pref-close:hover,
.cookie-pref-close:focus {
  color: var(--brand-primary);
}
.cookie-pref-footer {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-pref-footer button {
  padding: 7px 23px;
  border-radius: 22px;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.cookie-pref-footer .save-btn {
  background: var(--lux-gold);
  color: var(--brand-primary);
  border: none;
}
.cookie-pref-footer .save-btn:hover {
  background: var(--brand-primary); color: var(--lux-gold);
}

/* =====================================
   MISC TUNEUPS FOR CLEAR LUXURY LOOK
   ===================================== */
::-webkit-scrollbar {
  width: 10px;
  background: #ece8dd;
}
::-webkit-scrollbar-thumb {
  background: var(--lux-gold);
  border-radius: 6px;
}
h1, h2, h3, h4, h5, h6 {
  text-shadow: 0 1px 0 #fff, 0 2px 8px rgba(218,182,104,0.09);
}

/* Links hover underline for clarity */
a { text-decoration: none; border-bottom: 1px solid transparent; transition: color 0.17s, border-bottom 0.15s; }
a:hover { color: var(--lux-gold); border-bottom: 1px solid var(--lux-gold); }

/* SHADOW & BORDER utilities for cards */
.card, .feature-item, .testimonial-card {
  box-shadow: var(--lux-shadow);
  border-radius: 14px;
}

/* Contact Icons adjustment */
.info-block img {
  display: inline-block;
  vertical-align: middle;
  width: 21px;
  margin-right: 7px;
}
.info-block p {font-size: 1.07rem; margin-bottom: 9px;}

/* FAQ - Better contrast */
.faq-list li { color: var(--lux-dark); background: #f7f6f0; border-radius: 9px; padding: 11px 13px; }

/* Responsive spacing for all sections */
@media (max-width: 768px) {
  .footer-nav, .footer-container {flex-direction: column; align-items: flex-start; gap: 6px;}
  .footer-nav {gap: 9px;}
}
/* Minor breakpoint for buttons */
@media (max-width: 540px) {
  .cta-button.primary, button {padding: 7px 12px; font-size: 0.95rem;}
}

/* =========================
   HIGHLIGHTED GOLD BORDER
   ========================= */
.card, .feature-item, .testimonial-card, .section, .highlights, .activity-listing {
  border: 1.5px solid #ECD595;
}

/* =========================
   TRANSITIONS & MICRO-ANIMATIONS
   ========================= */
.cta-button, .feature-item, .testimonial-card, .card, .quicklink, .footer-nav a,
.main-nav a, .mobile-nav a, button {
  transition: box-shadow 0.22s, color 0.18s, background 0.17s, border 0.18s;
}
/* Subtle shadow grow */
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 12px 34px 0 rgba(218,182,104,0.12), var(--lux-shadow);
}

/* ===============
   ACCESSIBILITY
   =============== */
button:focus, .cta-button.primary:focus, .main-nav a:focus, .mobile-nav a:focus, .footer-nav a:focus {
  outline: 2px solid var(--lux-gold);
  outline-offset: 2px;
}

/* ===============
   Z-INDEX/LAYERING
   =============== */
header, .mobile-menu, .mobile-menu-toggle, #cookie-consent-banner, #cookie-pref-modal {
  z-index: 99;
}

/* ===============
   PRINT SAFE
   =============== */
@media print {
  header, .main-nav, .cta-button, .mobile-menu, .footer-container, #cookie-consent-banner, #cookie-pref-modal {
    display: none !important; }
  main {margin: 0;}
}
