/* ============================================================
   LUXE GEAR EDUPRO - STYLE.CSS ("playful_dynamic" design)
   Professional, playful, responsive, flexbox-only CSS (no grid)
   ============================================================ */

/* ---------------
   0. NORMALIZE/RESET
   --------------- */
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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #303850;
  background: #F4F6FB;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #D6AF65;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #4299e1;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* === Selection === */
::selection {
  background: #FBE6B0;
  color: #303850;
}

/* ---------------
   1. BRAND VARIABLES (fallbacks included)
   --------------- */
:root {
  --color-primary: #303850;
  --color-secondary: #E6E6E6;
  --color-accent: #D6AF65;
  --color-bg: #F4F6FB;
  --color-bright1: #59D6F5;
  --color-bright2: #F7A2A2;
  --color-bright3: #FBE86D;
  --color-cta: #42C695;
  --color-danger: #EC4667;
  --border-radius: 18px;
  --shadow-card: 0 6px 32px rgba(48, 56, 80, 0.12);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #303850;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #D6AF65;
  text-shadow: 0 4px 18px rgba(249, 227, 180, 0.24), 0 2px 2px rgba(90, 214, 245,0.22);
  font-weight: 900;
  letter-spacing: 1px;
}
h2 {
  font-size: 2rem;
  color: #303850;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
h3 {
  font-size: 1.3rem;
  color: #4299e1;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

p, li, td, th, label, span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #303850;
}
strong {
  color: #D6AF65;
}

/* Fun, playful accents for a dynamic look */
.display-accent {
  font-family: 'Montserrat', cursive, sans-serif;
  color: #F7A2A2;
  font-size: 2rem;
}

/* 3. GLOBAL LAYOUT & CONTAINER */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}
/* Remove bg for first hero section for openness */
main>section:first-child .container {
  background: none;
  box-shadow: none;
  padding-top: 24px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 0;
  text-align: left;
}

/* 4. FLEXBOX UTILITIES - MANDATORY RULES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* 5. MAIN NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 24px rgba(90, 214, 245, 0.06);
  z-index: 1001;
  position: sticky;
  top: 0;
}
nav.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 16px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
}
nav.main-nav a {
  font-size: 1rem;
  color: #303850;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.21s;
}
nav.main-nav .logo {
  margin-right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav.main-nav a.cta-btn {
  background: linear-gradient(90deg, #42C695 0%, #FBE86D 100%);
  color: #303850;
  border-radius: 24px;
  font-weight: 800;
  font-size: 1.08em;
  letter-spacing: 0.25px;
  box-shadow: 0 0 0 0 #D6AF65, 0 3px 12px rgba(66,198,149,0.16);
  outline: none;
  border: none;
  margin-left: auto;
  margin-right: 0;
  transition: box-shadow 0.24s, transform 0.18s, background 0.19s;
  position: relative;
  z-index: 2;
  padding: 8px 24px;
}
nav.main-nav a.cta-btn:hover,
nav.main-nav a.cta-btn:focus {
  background: #42C695;
  color: #fff;
  box-shadow: 0 2px 14px #FBE86D, 0 0 0 2px #42C695;
  transform: scale(1.04) rotate(-2deg);
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  background: #FBE86D;
  color: #303850;
  box-shadow: 0 2px 8px #FBE86D;
}

/* Burger menu */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  z-index: 1040;
  background: #F7A2A2;
  color: #303850;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 18px;
  text-align: center;
  line-height: 46px;
  border: none;
  box-shadow: 0 3px 24px rgba(90, 214, 245, .06);
  outline: none;
  transition: background 0.17s, color 0.17s, transform .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FBE86D;
  color: #42C695;
  transform: scale(1.08) rotate(2deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #303850;
  color: #fff;
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform .34s cubic-bezier(.7,.6,0,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  box-shadow: 0 8px 24px rgba(48,56,80,.25);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #f7a2a2;
  background: transparent;
  position: absolute;
  top: 26px;
  right: 30px;
  z-index: 11;
  padding: 6px;
  transition: color .21s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FBE86D;
}
.mobile-nav {
  margin-top: 74px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.mobile-nav a {
  display: block;
  padding: 22px 42px;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FBE86D;
  border-bottom: 1px solid rgba(246,246,246,0.14);
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #42C695;
  color: #fff;
}
@media (max-width: 1020px) {
  nav.main-nav {
    gap: 20px;
    padding: 10px 5vw;
  }
}
@media (max-width: 950px) {
  nav.main-nav {
    gap: 10px;
    font-size: 0.98em;
  }
}
@media (max-width: 900px) {
  nav.main-nav {
    gap: 6px;
  }
}
@media (max-width: 820px) {
  nav.main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* 6. HERO SECTIONS / CTA */
main>section:first-child h1 {
  font-size: 2.3rem;
  color: #D6AF65;
  padding-top: 8px;
  margin-bottom: 14px;
  letter-spacing: 0.6px;
  font-weight: 900;
  text-shadow: 0 2px 24px #f7a2a2,0 1px 2px #FBE86D;
}
main>section:first-child p {
  font-size: 1.18rem;
  color: #4299e1;
  margin-bottom: 28px;
}
main>section:first-child .cta-btn {
  margin-top: 12px;
}

.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.08em;
  background: linear-gradient(90deg, #42C695 24%, #59D6F5 100%);
  color: #fff;
  padding: 12px 34px;
  border-radius: 30px;
  text-shadow: 0 1px 10px rgba(90,214,245,0.19);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px #c8ecf9, 0 2px 12px #42c69593;
  margin: 8px 0;
  transition: background .15s, color .18s, box-shadow .23s, transform .13s;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FBE86D 0%, #F7A2A2 100%);
  color: #303850;
  box-shadow: 0 8px 26px #fbe86d64, 0 2px 14px #f7a2a26e;
  transform: scale(1.045) rotate(-1deg);
}

/* 7. FEATURE/CARD/COURSE GRID */
.feature-grid,
.service-cards,
.course-list,
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.feature-grid > div,
.service-card,
.course-list > .service-card,
.testimonial-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 3px 17px rgba(90,214,245,0.10), 0 9px 40px #D6AF6540;
  padding: 30px 24px 22px 24px;
  margin-bottom: 20px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  max-width: 310px;
  position: relative;
  /* Playful bounce-in animation */
  animation: playful-bounce 0.6s cubic-bezier(.6,1.8,.2,1.01) 0.16s backwards;
}
@keyframes playful-bounce {
  0% { transform: translateY(-24px) scale(0.89) rotate(-3deg); opacity: 0; }
  84% { transform: translateY(4px) scale(1.04) rotate(1deg); opacity: 1; }
  100% { transform: none; }
}

.feature-grid > div img, .service-card img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
}
.feature-grid > div h3, .service-card h3, .course-list > .service-card h2 {
  font-size: 1.28rem;
  color: #42C695;
  margin-bottom: 8px;
  font-weight: 800;
  font-family: 'Montserrat', serif, sans-serif;
  letter-spacing: 0.3px;
}
.feature-grid > div p, .service-card p, .course-list > .service-card p {
  font-size: 1rem;
  color: #303850;
  margin-bottom: 9px;
  letter-spacing: 0.01em;
}

.price {
  margin-top: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FBE86D;
  border-radius: 13px;
  color: #303850;
  font-weight: 700;
  padding: 4px 11px;
  font-size: .95em;
  letter-spacing: 0.04em;
  box-shadow: 0 0 2px 0 #D6AF6511, 0 3px 14px #fbe86d55;
}

/* 8. TESTIMONIALS - playful, readable cards */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #F7A2A2;
  color: #303850;
  border-radius: 1.4em;
  padding: 26px 22px 22px 22px;
  box-shadow: 0 3px 16px #f7a2a2a9, 0 6px 32px #42c69523;
  min-width: 260px;
  max-width: 350px;
  margin-bottom: 20px;
  position: relative;
  font-size: 1rem;
  line-height: 1.8;
}
.testimonial-card p {
  color: #303850;
  font-style: italic;
  font-size: 1.04em;
  margin-bottom: 16px;
}
.testimonial-card span {
  font-size: .94em;
  color: #464d66;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.star-rating {
  font-size: 1.35rem;
  color: #FBE86D;
  margin-bottom: 8px;
  letter-spacing: 2px;
  text-shadow: 0 1px 10px #FBE86D55;
}

/* Testimonial slider (index.php) */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}

/* 9. TABLES & FORMS */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  margin-top: 16px;
  background: #fff;
  box-shadow: 0 2px 10px #30385014, 0 5px 24px #d6af6512;
  border-radius: 16px;
  overflow: hidden;
}
th, td {
  padding: 10px 12px;
  border-bottom: 1px solid #E6E6E6;
  text-align: left;
  font-size: 1em;
}
th {
  background: #42C695;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
tbody tr:nth-child(odd) {
  background: #FAFAFB;
}
tbody tr:nth-child(even) {
  background: #F7A2A224;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* 10. FOOTER - playful with info */
footer {
  background: #303850;
  color: #fff;
  padding: 0;
  margin-top: 60px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px;
}
.footer-main .logo {
  flex: 0 1 116px;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #FBE86D;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F7A2A2;
}
.contact-details p {
  font-size: .97em;
  margin-bottom: 4px;
  color: #e6e6e6;
}

/* 11. CONTACT & SOCIAL LINKS */
.contact-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #303850;
  font-size: 1em;
  background: #FBE86D11;
  padding: 7px 13px;
  border-radius: 10px;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px 0 8px 0;
  background: #F7A2A220;
  padding: 21px 16px;
  border-radius: 1em;
}
.map-placeholder img {
  width: 90px;
  margin-bottom: 12px;
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #4299e1;
  color: #fff;
  border-radius: 50%;
  transition: background .19s, transform .16s;
}
.social-links a:hover, .social-links a:focus {
  background: #42C695;
  transform: scale(1.14) rotate(-8deg);
}
.social-links img {
  width: 22px;
  height: 22px;
}

/* 12. PLAYFUL MICRO-INTERACTIONS
--------------------*/
.feature-grid > div:hover,
.service-card:hover,
.course-list > .service-card:hover,
.testimonial-card:hover {
  box-shadow: 0 12px 48px #FBE86D80, 0 4px 18px #30385024;
  transform: translateY(-5px) scale(1.015) rotate(-1deg);
  transition: box-shadow .23s, transform .18s;
}

/* Fun element wiggle for playful accent */
@keyframes wiggle {
  0%, 100% { transform: rotate(-2deg); }
  40% { transform: rotate(2.7deg); }
  60% { transform: rotate(-2.7deg); }
  80% { transform: rotate(1.3deg); }
}
.logo img:hover {
  animation: wiggle 0.5s linear both;
}

/* 13. RESPONSIVE --------------- */
@media (max-width: 1210px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .footer-main {
    max-width: 98vw;
    padding: 30px 8px;
  }
}
@media (max-width: 960px) {
  .feature-grid, .service-cards, .course-list, .testimonial-grid, .testimonial-slider {
    justify-content: center;
    gap: 18px;
  }
  .footer-main {
    gap: 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 650px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .feature-grid > div, .service-card, .testimonial-card {
    min-width: unset;
    max-width: 99vw;
    width: 100%;
    padding: 16px 12px 17px 12px;
    font-size: 0.98em;
  }
  .testimonial-card { font-size: .97em; }
  nav.main-nav { font-size: .95em; }
}
@media (max-width: 535px) {
  .footer-main { flex-direction: column; gap: 10px; }
  .container, .footer-main { padding: 10px 2vw; }
  .contact-details p { font-size: .91em; }
  th, td { padding: 7px 7px; font-size: .95em; }
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

/* 14. COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 3000;
  background: #F7A2A2;
  color: #303850;
  box-shadow: 0 -2px 22px #D6AF6530, 0 -4px 18px #4299e120;
  padding: 18px 24px 14px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-radius: 18px 18px 0 0;
  animation: pop-in .4s;
}
@keyframes pop-in {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner__message {
  flex: 1;
  min-width: 160px;
}
.cookie-banner__actions {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  font-family: Montserrat, Arial, sans-serif;
  padding: 10px 20px;
  border-radius: 22px;
  font-size: 1em;
  font-weight: 700;
  border: none;
  outline: none;
  margin-right: 0;
  margin-bottom: 0;
  transition: background .16s, color .16s, box-shadow .17s, transform .16s;
}
.cookie-btn.accept {
  background: #42C695;
  color: #fff;
  box-shadow: 0 3px 18px #42C69537;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #4299e1;
  color: #fff;
  box-shadow: 0 7px 25px #4299e13a;
  transform: scale(1.06);
}
.cookie-btn.reject {
  background: #F7A2A2;
  color: #303850;
  border: 1.3px solid #30385022;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #EC4667;
  color: #fff;
}
.cookie-btn.settings {
  background: #FBE86D;
  color: #303850;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #303850;
  color: #FBE86D;
}

@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    font-size: .98em;
    padding: 14px 5vw 10px 5vw;
  }
  .cookie-btn { width: 100%; }
  .cookie-banner__actions { flex-direction: column; gap: 9px; }
}

/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  z-index: 3200;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,37,51,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: fade-in .21s;
}
@keyframes fade-in {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal__content {
  background: #fff;
  color: #303850;
  padding: 32px 24px;
  max-width: 370px;
  width: 92vw;
  border-radius: 16px;
  box-shadow: 0 8px 36px #F7A2A2BB, 0 12px 44px #42C69523;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: pop-in .37s;
}
.cookie-modal__content h2 {
  color: #4299e1;
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #f7a2a2a6;
  padding: 9px 12px;
  border-radius: 8px;
  margin-bottom: 9px;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #e6e6e6;
  border-radius: 25px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-toggle:checked {
  background: #42C695;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2.2px;
  width: 19px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px #30385014;
  transition: left 0.17s;
}
.cookie-toggle:checked:before {
  left: 18px;
  background: #FBE86D;
}
/* Always on category */
.cookie-category.essential {
  background: #FBE86Dcc;
  opacity: 1;
}
.cookie-category.essential .cookie-toggle {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 2rem;
  background: none;
  color: #4299e1;
  border: none;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #EC4667;
}


/* 15. MISC - playful/energetic accents */
hr {
  border: none;
  height: 2px;
  margin: 32px 0 24px 0;
  background: linear-gradient(90deg,#42c69533 0%,#f7a2a2cc 100%);
}
dt, dd {
  margin-bottom: 7px;
}

/* ---------------
   16. PRINT SUPPORT
   --------------- */
@media print {
  header, nav, .main-nav, .mobile-menu, .cookie-banner, .cookie-modal, .footer-main { display: none !important; }
  section, .container { box-shadow: none !important; background: #fff !important; }
}
/* ==== END OF STYLE.CSS ==== */
