/* CSS RESET & NORMALIZE */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
html, body { height: 100%; margin: 0; padding: 0; }
body { background: #F5F7FA; color: #244B5A; font-family: 'Roboto', Arial, sans-serif; font-size: 16px; line-height: 1.7; min-height: 100vh; position: relative; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; color: #244B5A; margin: 0 0 16px 0; }
h1 { font-size: 2.5rem; font-weight: 900; letter-spacing: -1px; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
a { color: #244B5A; text-decoration: none; transition: color 0.22s cubic-bezier(.44,1.2,.6,1); }
a:hover, a:focus { color: #F9BE00; text-decoration: underline; }

/* PRIMARY BRAND COLORS */
:root {
  --brand-primary: #244B5A;
  --brand-secondary: #F9BE00;
  --brand-accent: #F5F7FA;
  --brand-support: #6ADDD7;
  --brand-playful: #FF6392;
  --brand-card-border: #EAF0F6;
  --brand-shadow: rgba(36,75,90,0.10);
  --brand-shadow-dark: rgba(36,75,90,0.18);
  --brand-card-bg: #fff;
  --brand-footer-bg: #244B5A;
  --brand-footer-fg: #fff;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ================== HEADER + NAVIGATION STYLES ================== */
header {
  background: var(--brand-accent);
  box-shadow: 0 2px 12px var(--brand-shadow);
  z-index: 200;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
header img[alt='Radiant Quartz Akademia'] { height: 48px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 7px;
  transition: background 0.15s;
}
.main-nav a:not(.btn-primary):hover,
.main-nav a:not(.btn-primary):focus {
  background: var(--brand-support);
  color: #fff;
}
.btn-primary {
  background: var(--brand-secondary);
  color: var(--brand-primary) !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 25px;
  font-size: 1.09rem;
  border-radius: 40px;
  border: none;
  box-shadow: 0 2px 16px var(--brand-shadow);
  position: relative;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.14s;
  outline: none;
  text-align: center;
  margin-left: 15px;
  white-space: nowrap;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FF6392;
  color: #fff !important;
  transform: translateY(-2px) scale(1.05) rotate(-2deg);
}

.btn-secondary {
  background: var(--brand-support);
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 23px;
  border-radius: 40px;
  border: none;
  margin-top: 10px;
  font-size: 1rem;
  letter-spacing: 0.2px;
  box-shadow: 0 1px 8px var(--brand-shadow);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.14s;
  text-align: center;
  display: inline-block;
  outline: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  transform: translateY(-1.5px) scale(1.04) rotate(2deg);
}

/* Hide mobile menu by default, show toggle on mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-secondary);
  border: none;
  border-radius: 7px;
  font-size: 2.2rem;
  padding: 6px 14px 4px 14px;
  color: var(--brand-primary);
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.14s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FF6392;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 999;
  transform: translateX(-100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transition: transform 0.35s cubic-bezier(.7,1.5,0.5,1);
  box-shadow: 0 4px 32px var(--brand-shadow-dark);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--brand-playful);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 7px;
  margin: 23px 0 12px 18px;
  padding: 4px 18px 4px 14px;
  align-self: flex-start;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
  z-index: 1005;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 18px 38px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  padding: 9px 5px;
  border-radius: 8px;
  transition: background 0.16s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-support);
  color: #fff;
}
/* Hide main menu on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =============== SECTIONS, SPACING, LAYOUTS =============== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 27px;
}
@media (max-width: 650px) {
  section {
    padding: 32px 8px;
  }
}

/* Feature/Grid/timeline/Card Patterns */
.feature-grid,.benefits-grid,.course-list,.mentor-list,.step-timeline,.faq-list,.post-grid,.mentors-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.mentor-list > div, .course-list > div, .benefits-grid > div, .feature-grid > div, .step-timeline > div, .faq-list > div, .post-grid > div, .mentors-preview > div {
  background: var(--brand-card-bg);
  border: 2px solid var(--brand-card-border);
  box-shadow: 0 2px 18px var(--brand-shadow);
  border-radius: 23px;
  padding: 22px 26px;
  min-width: 220px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.mentor-list > div:hover, .course-list > div:hover, .benefits-grid > div:hover, .feature-grid > div:hover,
.step-timeline > div:hover, .post-grid > div:hover, .mentors-preview > div:hover {
  transform: translateY(-4px) scale(1.035) rotate(-1.5deg);
  box-shadow: 0 8px 30px var(--brand-shadow-dark);
  border-color: #FF6392;
  z-index: 2;
}

.mentor-list > div h3, .course-list > div h3, .feature-grid > div h3, .benefits-grid > div h3, .step-timeline > div strong,
.mentors-preview > div strong { color: #FF6392; font-family: 'Montserrat', Arial, sans-serif; font-size: 1.08rem; margin-bottom: 3px; }
.mentors-preview > div strong { font-size: 1.16rem; }
.mentor-list > div strong, .course-list > div strong { color: var(--brand-secondary); font-weight: 700; }

.step-timeline > div img,
.feature-grid > div img,
.benefits-grid > div img {
  width: 54px;
  margin-bottom: 7px;
}

/* List/ul inside content cards */
li {
  margin-bottom: 11px;
  padding-left: 0;
  font-size: 1.01rem;
}
ul {
  margin: 0 0 12px 1em;
  padding: 0;
}

/* ================ TESTIMONIALS ================ */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  border: 2px solid #EAF0F6;
  border-radius: 30px;
  box-shadow: 0 2px 24px var(--brand-shadow);
  padding: 24px 32px;
  min-width: 260px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  color: #244B5A;
  font-size: 1.06rem;
  transition: box-shadow 0.18s, border-color 0.17s, transform 0.15s;
}
.testimonial-card:hover {
  border-color: #FF6392;
  box-shadow: 0 8px 32px var(--brand-shadow-dark);
  transform: scale(1.03) rotate(-1.5deg);
}
.testimonial-card p {
  color: #244B5A;
  font-size: 1.14rem;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.6;
}
.testimonial-card span {
  display: block;
  color: var(--brand-secondary);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 10px;
}

/* CTA Banner */
section:last-of-type .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}
section:last-of-type h2 {
  font-size: 2.4rem;
  color: #244B5A;
}
section:last-of-type .btn-primary {
  margin-top: 8px;
}

/* =============== ABOUT / TEXT SECTION / TIMELINE ================ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 12px;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
}
.timeline h3 {
  color: var(--brand-secondary);
  font-size: 1.09rem;
  margin-bottom: 2px;
}
.timeline p { margin-bottom: 6px; }

/* =============== CONTENT GRIDS =============== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 2px solid var(--brand-card-border);
  box-shadow: 0 2px 18px var(--brand-shadow);
  border-radius: 24px;
  padding: 25px 32px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .2s, transform .11s;
}
.card:hover {
  box-shadow: 0 10px 34px var(--brand-shadow-dark);
  transform: scale(1.04) rotate(-2deg);
  border-color: var(--brand-support);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* =============== IMAGE/TEXT SECTIONS =============== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* =============== TESTIMONIAL CARD =============== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/* =============== FEATURE ITEM PATTERN =============== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============== BLOG CATEGORIES =============== */
.blog-categories {
  display: flex;
  gap: 16px;
  margin-bottom: 19px;
}
.blog-categories a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #fff;
  background: #244B5A;
  padding: 7px 18px;
  border-radius: 40px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
}
.blog-categories a:hover, .blog-categories a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

.post-grid > div h3 { color: var(--brand-support); font-weight: 800; font-family: 'Montserrat', Arial, sans-serif; font-size: 1.18rem; }
.post-grid > div p { font-size: 1rem; }
.post-grid > div {
  min-width: 230px;
  flex: 1 1 290px;
  border: 2px solid #FF6392;
  background: #fff;
  border-radius: 19px;
}

/* =============== COMPANY DETAILS, MAP =============== */
.company-details {
  background: #fffbe9;
  border: 1.5px solid #F9BE00;
  border-radius: 20px;
  padding: 18px 25px;
  margin-bottom: 19px;
  box-shadow: 0 2px 14px var(--brand-shadow);
}
.company-details img {
  width: 20px;
  vertical-align: middle;
  margin-right: 4px;
}
.map-embed {
  background: #f1fafd;
  border: 1.5px solid #6ADDD7;
  border-radius: 16px;
  padding: 18px 25px;
  box-shadow: 0 4px 12px var(--brand-shadow-dark);
  color: #244B5A;
  font-size: 1rem;
}

/* =============== FORMS (if any added in future) =============== */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
}

/* =============== FOOTER =============== */
footer {
  background: var(--brand-footer-bg);
  color: var(--brand-footer-fg);
  padding-top: 35px;
  position: relative;
  z-index: 20;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-top > * { margin-bottom: 16px; }
.footer-top img[alt='Radiant Quartz Akademia'] {
  width: 140px;
  margin-bottom: 12px;
}
.footer-top nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-top nav a {
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  padding: 3px 0;
  border-radius: 5px;
  transition: background 0.12s, color 0.16s;
  font-weight: 500;
}
.footer-top nav a:hover,
.footer-top nav a:focus {
  background: var(--brand-support);
  color: var(--brand-primary) !important;
}
.footer-contact {
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 7px;
}
.footer-contact img { width: 19px; vertical-align: middle; margin-right: 4px; }
.footer-contact span { display: block; font-size: 0.93rem; color: #F9BE00; margin-top: 7px; }
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}
.footer-social a img {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background: #fff;
  transition: transform 0.14s, box-shadow 0.13s;
  box-shadow: 0 2px 12px var(--brand-shadow-dark);
}
.footer-social a:hover img { transform: scale(1.15) rotate(4deg); box-shadow: 0 8px 24px var(--brand-playful); }
.footer-bottom {
  text-align: center;
  padding: 20px 0 10px 0;
  font-size: 0.98rem;
  color: #fff;
}

/* =============== COOKIE CONSENT BANNER & MODAL =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff;
  color: #244B5A;
  box-shadow: 0 -2px 24px var(--brand-shadow-dark);
  padding: 22px 20px 18px 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  animation: cookie-enter 0.7s cubic-bezier(.2,1.6,.4,1.1);
}
@keyframes cookie-enter {
  0%{transform:translateY(76px);opacity:0;}
  80%{transform:translateY(-8px);opacity:.7;}
  100%{transform:translateY(0);opacity:1;}
}
.cookie-banner p {
  margin: 0 0 8px 0;
  text-align: center;
  font-size: 1.04rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}
.cookie-banner button {
  padding: 9px 18px;
  border-radius: 39px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 1.6px 9px var(--brand-shadow-dark);
  margin-bottom: 0;
  transition: background 0.12s, color 0.15s, transform 0.15s;
}
.cookie-banner .cookie-accept {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-banner .cookie-reject {
  background: #FF6392;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: var(--brand-support);
  color: var(--brand-primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.05);
  box-shadow: 0 6px 34px var(--brand-shadow-dark);
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(19,45,57, 0.71);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  color: #244B5A;
  border-radius: 22px;
  box-shadow: 0 10px 94px var(--brand-shadow-dark);
  padding: 32px 26px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 330px;
  max-width: min(95vw, 400px);
  animation: cookie-modal-pop-in 0.46s cubic-bezier(.65,1.7,.4,1.15);
  position: relative;
}
@keyframes cookie-modal-pop-in {
  0%{transform:scale(0.84) translateY(80px); opacity: 0}
  70%{transform:scale(1.08) translateY(-10px);}
  100%{transform:scale(1) translateY(0); opacity:1}
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 17px; right: 20px;
  background: transparent;
  color: #FF6392;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: var(--brand-secondary);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 2px;
}
.cookie-category label {
  font-size: 1.04rem;
  font-weight: 600;
  color: #244B5A;
  margin-bottom: 0;
  line-height: 1.3;
  cursor: pointer;
}
.cookie-category input[type='checkbox'] {
  width: 23px;
  height: 23px;
  accent-color: var(--brand-support);
  margin-right: 5px;
}
.cookie-category input[type='checkbox']:disabled {
  accent-color: #ccc;
}
.cookie-category .always-on {
  font-size: 0.94rem;
  color: #bbb;
  margin-left: 5px;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 8px;
}
.cookie-modal .modal-actions button {
  padding: 9px 22px;
  border-radius: 40px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  transition: background 0.14s, color 0.14s;
}
.cookie-modal .modal-actions button:hover, .cookie-modal .modal-actions button:focus {
  background: #FF6392;
  color: #fff;
}

/* =========== RESPONSIVENESS =========== */
@media (max-width: 1100px) {
  .container { max-width: 94vw; }
  .feature-grid > div, .mentor-list > div, .course-list > div, .benefits-grid > div, .step-timeline > div, .post-grid > div, .mentors-preview > div { min-width: 180px; }
}
@media (max-width: 900px) {
  .footer-top { flex-direction: column; align-items: flex-start; gap: 23px; }
}
@media (max-width: 700px) {
  .feature-grid, .benefits-grid, .course-list, .mentor-list, .step-timeline, .faq-list, .post-grid, .mentors-preview {
    flex-direction: column;
    gap: 20px;
  }
  .step-timeline > div, .feature-grid > div, .benefits-grid > div, .mentor-list > div, .course-list > div, .post-grid > div, .mentors-preview > div {
    min-width: 0;
    width: 100%;
    max-width: unset;
    padding: 19px 15px;
  }
  .testimonial-slider { flex-direction: column; gap: 20px; }
  .testimonial-card { min-width: 0; width: 100%; padding: 17px 10px; }
  .company-details, .map-embed { padding: 13px 7px; }
}
@media (max-width: 480px) {
  .container { padding: 0 3vw; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .btn-primary, .btn-secondary, .cookie-banner button, .cookie-modal .modal-actions button { font-size: 0.96rem; padding: 8px 13px; }
  .mobile-nav a { font-size: 1.04rem; padding: 8px 3px; }
}

/* =============== SCROLLBAR =============== */
body::-webkit-scrollbar { width: 11px; background: #F5F7FA; }
body::-webkit-scrollbar-thumb { background: #F9BE00; border-radius: 6px; }

/* =============== ANIMATIONS & INTERACTIONS =============== */
.card, .feature-grid > div, .mentor-list > div, .benefits-grid > div, .step-timeline > div, .post-grid > div, .mentors-preview > div {
  animation: pop-appear 0.58s cubic-bezier(.56,2,.1,1.2) both;
}
@keyframes pop-appear { 0%{opacity:0;transform:scale(.96) translateY(30px);} 100%{opacity:1;transform:scale(1) translateY(0);} }
.testimonial-card { animation: pop-appear 0.7s 0.08s cubic-bezier(.48,1.9,.1,1.2) both;}
.btn-primary, .btn-secondary {
  box-shadow: 0 2px 14px var(--brand-shadow);
  transition: box-shadow .16s, background .18s, color .17s, transform .16s;
}
.btn-primary:active, .btn-secondary:active { filter: brightness(.90); }

/* ================ TYPOGRAPHY - FUN PLAYFUL DYNAMIC ================ */
h1, h2, h3, .blog-categories a, .btn-primary, .btn-secondary, .cookie-banner button, .cookie-modal .modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
}
h1, h2 { text-shadow: 1px 1px 0 #fffbe9, 0 3px 8px #F9BE0033; }
h1 { color: #FF6392; }
h2 { color: #244B5A; }
h3, strong { color: #FF6392; }

/* ================ MISC ================ */
::-webkit-input-placeholder { color: #aaa; }
::-moz-placeholder { color: #aaa; }
:-ms-input-placeholder { color: #aaa; }
::placeholder { color: #aaa; }

hr { border: none; height: 1px; background: #EAF0F6; margin: 32px 0; }

/* Hide unwanted outline unless focused for accessibility */
a, button { outline-color: #FF6392; }

/* =============== FUN EXTRAS =============== */
.feature-grid > div::before, .benefits-grid > div::before, .mentor-list > div::before,
.post-grid > div::before, .course-list > div::before {
  content: '';
  background: var(--brand-support);
  width: 24px; height: 24px;
  border-radius: 50%;
  position: absolute;
  top: 14px; left: 13px;
  z-index: 0;
  opacity: 0.24;
  animation: blob-bounce 2.6s infinite alternate ease-in-out;
  pointer-events: none;
}
@keyframes blob-bounce {
  0% { transform: scale(1.02) translateY(0); }
  42% { transform: scale(1.22) translateY(3px); }
  75% { transform: scale(.88) translateY(-7px); }
  100% { transform: scale(1) translateY(0); }
}

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

/* ============ HELPER CLASSES ============== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }

/****** END OF STYLES ******/
