/* Zesty Engine Online - Luxury Premium Flexbox-Only CSS */
/* ---------------------------------------------------------- */
/* 1. CSS RESET AND BASELINE NORMALIZER */
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,
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;
  scroll-behavior: smooth;
  background: #f7f7f8;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #f7f7f8;
  color: #22242B;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #174873;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFB400;
  text-decoration: underline;
}

/* ---------------------------------------------------------- */
/* 2. BRAND FONTS & LUXURY TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: #174873;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #22242B;
  margin-bottom: 14px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #174873;
}
p, ul, li, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #33343A;
}
strong {
  font-weight: 700;
  letter-spacing: .02em;
}
.text-section h2, .text-section h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}

/* Luxury details */
h1, h2, h3 {
  text-shadow: 0 1px 0 #fff, 0 1.5px 5px rgba(23,72,115,0.10);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ---------------------------------------------------------- */
/* 3. CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Main body spacing for breathing room */
main > section,
main > .section {
  margin-bottom: 60px;
}

/* ---------------------------------------------------------- */
/* 4. HEADER, NAVIGATION & MOBILE MENU */
header {
  background: #ffffff;
  border-bottom: 1.5px solid #ececec;
  box-shadow: 0 2px 14px rgba(23,72,115,0.06);
  position: sticky;
  top: 0;
  z-index: 1020;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #174873;
  padding: 6px 12px;
  border-radius: 8px;
  position: relative;
  transition: color 0.15s, background 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #f7fafa;
  color: #FFB400;
  text-decoration: none;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #174873;
  color: #fffbd1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  padding: 12px 34px;
  border: none;
  border-radius: 26px;
  box-shadow: 0 3px 16px 0 rgba(23,72,115,0.11);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.20s, transform 0.22s;
  letter-spacing: 0.03em;
  position: relative;
}
.cta-button:before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  border-radius: 26px;
  border: 2px solid #FFB400;
  opacity: 0.10;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cta-button:hover, .cta-button:focus {
  background: #FFB400;
  color: #174873;
  box-shadow: 0 7px 20px 0 rgba(23,72,115,0.17);
  transform: translateY(-2px) scale(1.03);
}
.cta-button:hover:before {
  opacity: 0.26;
}

.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #174873;
  border: 1.5px solid #FFB400;
  border-radius: 10px;
  padding: 7px 16px;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.13s,color 0.13s,box-shadow 0.2s;
  z-index: 1044;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFB400;
  color: #174873;
  box-shadow: 0 0 0 3px #FFF6DE;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 380px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -2px 0 22px 0 rgba(23,72,115,.14);
  transform: translateX(106%);
  transition: transform 0.38s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 2000;
  padding: 0 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #174873;
  border: 1.5px solid #FFB400;
  border-radius: 8px;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 16px 16px 0 0;
  padding: 2px 8px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFB400;
  color: #174873;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 24px;
  margin-bottom: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.18rem;
  color: #174873;
  padding: 9px 0 9px 0;
  border-bottom: 1.5px solid #ececec;
  transition: color 0.18s, padding 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFB400;
  padding-left: 10px;
}

@media (max-width: 980px) {
  header nav { display: none; }
  .cta-button { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding-left: 14px; padding-right: 14px; }
}

/* Overlay for mobile menu */
.mobile-menu::before {
  content: '';
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  background: rgba(34,36,43, 0.33);
  z-index: -1;
  pointer-events: auto;
  display: none;
}
.mobile-menu.open::before {
  display: block;
}

/* ---------------------------------------------------------- */
/* 5. HERO SECTION & CTA */
.hero, .cta {
  background: linear-gradient(113deg, #f7fafe 57%, #FFFFFF 100%);
  border-radius: 22px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 40px 0 rgba(23,72,115,0.08);
}
.hero .container, .cta .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  min-height: 340px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.hero h1 {
  color: #174873;
  font-size: 2.5rem;
  font-weight: 900;
}
.hero p {
  font-size: 1.23rem;
  color: #22242B;
  margin-bottom: 24px;
}

.cta .content-wrapper {
  align-items: flex-start;
}
.cta h2 {
  color: #174873;
  font-weight: 900;
}

@media (max-width: 768px) {
  .hero, .cta {
    border-radius: 0;
    min-height: unset;
    margin-bottom: 36px;
  }
  .hero .container, .cta .container {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

/* ---------------------------------------------------------- */
/* 6. CARDS, SECTION, FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(23,72,115,0.07);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 34px rgba(23,72,115,0.13);
  transform: translateY(-4px) scale(1.03);
}
.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;
}
@media (max-width: 768px) {
  .card-container, .content-grid, .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
}

/* ---------------------------------------------------------- */
/* 7. FEATURES FLEXBOX LAYOUT */
.features {
  padding: 40px 0;
}
.features .content-wrapper { gap: 28px; }
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 170px;
  min-width: 200px;
  max-width: 310px;
  background: #fff;
  border-radius: 15px;
  padding: 34px 22px 30px 22px;
  box-shadow: 0 2px 11px rgba(255,180,0,0.06), 0 0.5px 0 #fff inset;
  border: 1.5px solid #F3F3F2;
  position: relative;
  transition: box-shadow 0.18s, border 0.18s;
}
.feature-item img {
  width: 38px;
  height: 38px;
}
.feature-item h3, .feature-item p {
  margin: 0;
}
.feature-item strong {
  color: #174873;
}
.feature-item:hover, .feature-item:focus-within {
  border-color: #FFB400;
  box-shadow: 0 6px 22px rgba(255,180,0,.10);
  z-index: 2;
}
@media (max-width: 950px) {
  .feature-grid { flex-direction: column; gap: 20px; }
}

/* ---------------------------------------------------------- */
/* 8. TESTIMONIALS LUXURY CARDS */
.testimonials { background: #fff; border-radius: 18px; margin-bottom: 60px; }
.testimonials .content-wrapper { gap: 30px; }
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 28px 24px 28px;
  background: #f5f6f9;
  border-radius: 16px;
  box-shadow: 0 4px 28px 2px rgba(23,72,115,0.07);
  flex: 1 1 270px;
  min-width: 210px;
  max-width: 350px;
  border: 1.5px solid #E9E9E9;
  transition: box-shadow 0.15s, border 0.15s;
  position: relative;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #252325;
  line-height: 1.55;
  margin: 0 0 8px 0;
}
.testimonial-details {
  display: flex;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  color: #174873;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: #FFB400;
  box-shadow: 0 10px 34px 0 rgba(255,180,0,0.12);
}
@media (max-width: 900px) {
  .testimonial-list { flex-direction: column; gap: 20px; }
}
/* Ensure color contrast */
.testimonial-card,
.testimonial-card p,
.testimonial-details {
  color: #22242B;
  background: #f5f6f9;
}

/* ---------------------------------------------------------- */
/* 9. SERVICE LISTS ICONS */
.service-list, .service-icons-list, .team ul, .features ul, .pricing-tables ul, .faq-accordion {
  padding-left: 0;
  list-style: none;
  margin-top: 8px;
  margin-bottom: 12px;
}
.service-list li,
.service-icons-list li,
.features ul li,
.team ul li,
.pricing-tables ul li {
  font-size: 1.03rem;
  color: #26334B;
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
  line-height: 1.75;
}
.service-icons-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.service-icons-list img {
  width: 28px; height: 28px;
}

/* ---------------------------------------------------------- */
/* 10. ACCORDION FAQ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  color: #174873;
  margin-bottom: 3px;
  cursor: pointer;
  position: relative;
}
.faq-item p {
  font-size: 1rem;
  color: #252325;
  margin-left: 0.5em;
  margin-top: 1px;
}
.help-contact-prompt {
  font-size: .97rem;
  color: #174873;
  margin-top: 15px;
}
.help-contact-prompt a { color: #FFB400; font-weight: 600; }

/* ---------------------------------------------------------- */
/* 11. SECTION & LAYOUT SPACING (MANDATORY) */
.section,
.features, .testimonials, .services, .cta, .about, .team, .services-overview, .pricing-tables, .booking, .faq, .confirmation, .legal, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .testimonial-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .section,
  .features, .testimonials, .services, .cta, .about, .team, .services-overview, .pricing-tables, .booking, .faq, .confirmation, .legal, .contact {
    padding: 20px 10px;
    margin-bottom: 34px;
  }
  .feature-grid, .testimonial-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* ---------------------------------------------------------- */
/* 12. CONTACT/FOOTER */
footer {
  background: #174873;
  padding: 42px 0 18px 0;
  color: #fffbe7;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 18px;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
}
.footer-info {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-details {
  font-size: 0.97rem;
  color: #fffbd1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-details img {
  width: 17px; height: 17px; margin-right: 6px;
  filter: brightness(1.4) invert(1) drop-shadow(0 0 10px #FFB40033);
  vertical-align: middle;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 19px;
  flex-wrap: wrap;
  margin: 0 0 12px 0;
}
.footer-nav a {
  color: #FFB400;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.16s, border-bottom 0.15s;
  padding-bottom: 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fffbe3;
  border-bottom: 1.5px solid #fffbe1;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-links a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #FFFFFF;
  transition: background 0.2s, box-shadow 0.2s;
  border: 1.5px solid #FFB400;
}
.social-links a:hover {
  background: #FFB400;
}
.social-links img {
  width: 21px;
  height: 21px;
  filter: none;
}
@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .footer-info { flex-direction: column; gap: 8px; }
}
@media (max-width: 580px) {
  footer {
    padding: 26px 0 10px 0;
  }   
}

/* ---------------------------------------------------------- */
/* 13. UTILITY: BUTTONS, MODALS, FORMS (for cookie/call-to-action) */
button, input[type="button"], input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: #174873;
  color: #fffbd1;
  padding: 10px 28px;
  border: none;
  border-radius: 26px;
  outline: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
button:hover, button:focus, input[type="button"]:hover, input[type="submit"]:hover {
  background: #FFB400;
  color: #174873;
}

/* ---------------------------------------------------------- */
/* 14. COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #22242B;
  border-top: 2px solid #FFB400;
  box-shadow: 0 -2px 18px 0 rgba(23,72,115,0.09);
  z-index: 8888;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 22px;
  gap: 24px;
  transition: bottom 0.4s cubic-bezier(0.706,0.038,0.282,1.043);
  font-size: 1.025rem;
}
.cookie-banner.hide {
  bottom: -130px;
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 24px;
  border: none;
  background: #174873;
  color: #fffbd1;
  box-shadow: 0 2px 10px 0 rgba(23,72,115,0.06);
  transition: background 0.14s, color 0.14s;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #174873;
  border: 2px solid #FFB400;
}
.cookie-banner button:hover, .cookie-banner .cookie-settings-btn:hover {
  background: #FFB400;
  color: #174873;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    font-size: .98rem;
    padding: 17px 7px;
  }
  .cookie-banner .cookie-buttons { gap: 10px; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(35,36,43,0.46);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: cookieModalFade .25s cubic-bezier(.66,-0.1,.2,.99);
}
@keyframes cookieModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 13px;
  min-width: 340px;
  max-width: 97vw;
  min-height: 270px;
  padding: 35px 28px 28px 28px;
  box-shadow: 0 15px 50px 2px rgba(23,72,115,0.19);
  color: #252325;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  color: #174873;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: #FFB400;
  width: 18px;
  height: 18px;
}
.essential-cookie {
  font-weight: 700;
  color: #174873;
}
.cookie-modal-content .modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  color: #174873;
  font-size: 1.8rem;
  border: none;
  position: absolute;
  right: 12px; top: 7px;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 6px;
  transition: background 0.12s, color 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFB400;
  color: #174873;
}

@media (max-width: 470px) {
  .cookie-modal-content {
    min-width: 94vw;
    padding: 18px 7px;
  }
  .cookie-modal-content .modal-actions { flex-direction: column; gap: 9px; }
}

/* ---------------------------------------------------------- */
/* 15. LUXURY DETAILS & REFINED DECORATIVE ACCENTS */
.feature-item:before, .testimonial-card:before, .card:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  left: 0; top: 0;
  width: 100%;
  height: 5px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, #FFB400 60%, #174873 140%);
  opacity: .10;
}
.feature-item:before, .testimonial-card:before {
  height: 4px;
}
.testimonial-card:before {
  top: 0px;
  opacity: .14;
}
.testimonial-card span:last-child {
  color: #FFB400;
  font-weight: 900;
  font-size: 1.11em;
  letter-spacing: 1px;
}
.card:before {
  height: 5px;
  opacity: .08;
}

/* Subtle accent bar below h2 */
h2:after {
  content: '';
  display: block;
  margin-top: 5px;
  width: 48px;
  height: 3.5px;
  background: #FFB400;
  border-radius: 8px;
  opacity: .28;
}

/* ---------------------------------------------------------- */
/* 16. ACCESSIBILITY: FOCUS STATES */
a:focus, .cta-button:focus, button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #FFB400;
  outline-offset: 2.5px;
  box-shadow: 0 0 0 3px #FFE19788;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #FFB400;
}

/* ---------------------------------------------------------- */
/* 17. RESPONSIVE OPTIMIZATION */
@media (max-width: 768px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.12rem; }
  .footer-nav, .social-links {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 420px) {
  .footer-nav, .social-links {
    flex-direction: column;
    gap: 6px;
  }
}

/* ---------------------------------------------------------- */
/* 18. MISC UTILITY CLASSES */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mt-2 { margin-top: 20px !important; }
.mb-2 { margin-bottom: 20px !important; }

// End of Zesty Engine Online CSS
