/*-------------------------------*
  CSS RESET & BASELINE 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; /* base size for scale */
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background: #F4F7FA;
  font-family: 'Roboto', Arial, sans-serif;
  color: #183B51;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #C44A00;
  text-decoration: none;
  transition: color 0.18s;
}

a:hover, a:focus {
  color: #FF6200;
  text-decoration: underline;
}

ul, ol {
  margin-left: 1.7em;
  margin-bottom: 1.25em;
}

ul.features-list, ul {
  list-style-type: disc;
}

strong, b {
  font-weight: bold;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/*------------------------------------------------------*
  TYPOGRAPHY
*------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  color: #183B51;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

p, li, span, a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}

.subheadline {
  font-size: 1.25rem;
  margin-bottom: 28px;
  color: #344E5B;
}

.price, .price-info {
  color: #C44A00;
  font-weight: 700;
  margin-top: 12px;
  font-size: 1rem;
}

.text-section h2 {
  margin-top: 32px;
}

.text-section ul, .text-section ol {
  margin-bottom: 24px;
}

.text-section ul li, .text-section ol li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/*------------------------------------------------------*
  HEADER & NAVIGATION
*------------------------------------------------------*/
header {
  background: #FFFFFF;
  box-shadow: 0 2px 10px 0 rgba(24,59,81,0.06);
  border-bottom: 2px solid #F4F7FA;
  position: relative;
  z-index: 22;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img {
  height: 44px;
  width: auto;
  border-radius: 12px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #183B51;
  padding: 6px 0 6px 0;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFF2E6;
  color: #C44A00;
}
.btn.cta-header {
  margin-left: 14px;
  display: none;
}

.mobile-menu-toggle {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #C44A00;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
  cursor: pointer;
  z-index: 100;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  outline: 2px solid #C44A00;
  background: #FFE3D1;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,59,81,0.98);
  color: #FFFFFF;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.77,0,.18,1);
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  font-size: 2.25rem;
  border: none;
  background: none;
  color: #FFFFFF;
  align-self: flex-end;
  margin: 22px 22px 10px 0;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 10px;
  transition: background 0.16s; 
  z-index: 6000;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #193848;
  color: #FF932B;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding-left: 46px;
  padding-right: 46px;
}
.mobile-nav a {
  color: #FFF2E6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  padding: 12px 0;
  transition: color 0.16s, background 0.16s;
  border-radius: 8px;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FF932B;
  background: #2D4B65;
  outline: none;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 14px;
  }
  header .container {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .btn.cta-header {
    display: none;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
  .main-nav {
    display: flex;
  }
  .btn.cta-header {
    display: inline-flex;
  }
}
@media (max-width: 600px) {
  .mobile-menu {
    padding-left: 0;
    padding-right: 0;
  }
  .mobile-nav {
    padding-left: 22px;
    padding-right: 22px;
  }
}
/*------------------------------------------------------*
  BUTTONS
*------------------------------------------------------*/
.btn, button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  padding: 12px 26px;
  transition: background 0.18s, color 0.16s, box-shadow 0.20s;
  margin-top: 8px;
  margin-bottom: 8px;
  outline: none;
  box-shadow: 0 2px 8px 0 rgba(255,98,0,0.06);
  letter-spacing: 0.04em;
  display: inline-block;
}

.btn-primary {
  background: #FF6200;
  color: #FFFFFF;
  box-shadow: 0 2px 12px 0 rgba(255,98,0,0.13);
  border-radius: 28px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #C44A00;
  color: #fffbe9;
  box-shadow: 0 6px 20px 0 rgba(255,98,0,0.23);
}

.btn-secondary, .cookie-settings-button {
  background: #F4F7FA;
  color: #C44A00;
  border: 2px solid #C44A00;
  box-shadow: none;
  border-radius: 24px;
  padding: 12px 24px;
  margin-right: 10px;
}
.btn-secondary:hover, .btn-secondary:focus, .cookie-settings-button:hover, .cookie-settings-button:focus {
  background: #FFF2E6;
  color: #FF6200;
  box-shadow: 0 2px 12px 0 rgba(255,98,0,0.08);
}
/* Cookie banner special: */
.cookie-banner .btn {
  margin: 8px 6px 8px 0;
}

/*------------------------------------------------------*
  HERO, SECTIONS & LAYOUT
*------------------------------------------------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 28px;
  box-shadow: 0 8px 36px 0 rgba(24,59,81, 0.07);
}

main > section {
  margin-bottom: 60px;
}

.hero-section {
  background: linear-gradient(90deg, #FFF2E6 60%, #F4F7FA 100%);
  padding: 60px 0 56px 0;
  border-radius: 0 0 60px 60px;
  box-shadow: 0 6px 30px 0 rgba(255,98,0,0.08);
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  max-width: 680px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/*------------------------------------------------------*
  FEATURES FLEX LAYOUTS (FLEXBOX ONLY!)
*------------------------------------------------------*/
.features-grid, .services-list, .team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.features-grid {
  justify-content: flex-start;
  align-items: stretch;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 220px;
  min-width: 170px;
  flex: 1 1 160px;
  background: #FFF;
  padding: 24px 20px 18px 20px;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(255,98,0,0.07);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 12px 30px 0 rgba(255,98,0,0.19);
  transform: translateY(-6px) scale(1.014);
}
.features-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin: 0 0 16px 0;
}
.features-list li {
  background: #FFF2E6;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: 0 2px 10px 0 rgba(255,98,0, 0.08);
  margin-bottom: 10px;
  min-width: 210px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.features-list li img {
  width: 32px;
  height: 32px;
}

@media (max-width: 800px) {
  .features-grid, .services-list, .team-bios {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item {
    width: 100%;
    min-width: 0;
  }
}

/*------------------------------------------------------*
  SERVICES FLEX LIST
*------------------------------------------------------*/
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
  align-items: stretch;
}
.service-card {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 320px;
  background: #FFF2E6;
  margin-bottom: 20px;
  padding: 24px 20px 16px 20px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 22px 0 rgba(255,98,0,0.08);
  transition: box-shadow 0.19s, transform 0.18s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 12px 36px 0 rgba(255,98,0,0.14);
  transform: translateY(-4px) scale(1.01);
}

@media (max-width: 900px) {
  .services-list {
    flex-direction: column;
    gap: 16px;
  }
  .service-card {
    max-width: 100%;
    min-width: 0;
  }
}

/*------------------------------------------------------*
  TEAM BIOS
*------------------------------------------------------*/
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  background: #FFF2E6;
  border-radius: 20px;
  padding: 18px 20px;
  min-width: 220px;
  flex: 1 1 170px;
  box-shadow: 0 2px 8px 0 rgba(255,98,0,0.07);
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.15s;
}
.team-member:hover, .team-member:focus-within {
  box-shadow: 0 6px 22px 0 rgba(255,98,0,0.16);
  transform: scale(1.013);
}

.certification-list h4 {
  margin-top: 20px;
}
.certification-list ul {
  margin-bottom: 14px;
}
.certification-list li {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

/*------------------------------------------------------*
  CARDS FLEX CONTAINERS   
*------------------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 4px 20px 0 rgba(24,59,81, 0.07);
  margin-bottom: 20px;
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}

@media (max-width: 800px) {
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
}

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

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}

/*------------------------------------------------------*
  CTA SECTION
*------------------------------------------------------*/
.cta-section {
  background: #FFF2E6;
  border-radius: 30px;
  box-shadow: 0 6px 40px 0 rgba(255,98,0,0.08);
  margin-bottom: 60px;
}
.cta-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}


/*------------------------------------------------------*
  TESTIMONIALS & REVIEWS
*------------------------------------------------------*/
.testimonials-section {
  background: #FFF;
  border-radius: 30px;
  box-shadow: 0 8px 36px 0 rgba(24,59,81, 0.11);
  padding: 44px 0;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF2E6;
  border-radius: 22px;
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 340px;
  box-shadow: 0 4px 12px 0 rgba(24,59,81,0.10);
  flex: 1 1 230px;
  color: #183B51;
  font-size: 1rem;
  transition: box-shadow 0.17s, transform 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 30px 0 rgba(255,98,0,0.16);
  transform: scale(1.025);
}
.testimonial-card p {
  font-size: 1.06rem;
  font-style: italic;
  color: #183B51;
  text-align: center;
}
.testimonial-author {
  display: block;
  color: #C44A00;
  font-weight: 700;
  font-size: 0.99rem;
  margin-top: 4px;
}

.review-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin-bottom: 14px;
  margin-top: 6px;
  justify-content: center;
}
.review-highlights li {
  background: #F4F7FA;
  padding: 10px 18px;
  border-radius: 18px;
  color: #C44A00;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(255,98,0,0.07);
}

@media (max-width: 850px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 12px;
  }
}

/*------------------------------------------------------*
  FOOTER
*------------------------------------------------------*/
footer {
  padding: 44px 0 26px 0;
  background: #183B51;
  color: #FFFFFF;
  border-radius: 42px 42px 0 0;
  box-shadow: 0 -4px 22px 0 rgba(24,59,81, 0.23);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 48px;
  width: auto;
  border-radius: 12px;
  margin-bottom: 8px;
  background: #FFF2E6;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
.footer-menu a {
  color: #FFF2E6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  transition: color 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #FF932B;
}

.contact-info {
  font-size: 0.98rem;
  color: #FFF2E6;
  margin-bottom: 10px;
}

.newsletter-signup {
  margin-bottom: 10px;
  font-size: 0.97rem;
  color: #FFF;
}

.social-links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFF2E6;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: box-shadow 0.17s, background 0.14s;
}
.social-links a:hover, .social-links a:focus {
  background: #FF6200;
  box-shadow: 0 4px 18px 0 rgba(255,98,0,0.22);
}
.social-links img {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
}

/*------------------------------------------------------*
  MAP & CONTACT DETAILS
*------------------------------------------------------*/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.map-placeholder {
  background: #F4F7FA;
  border-radius: 18px;
  padding: 24px 18px;
  margin-top: 10px;
  color: #C44A00;
  font-weight: bold;
  box-shadow: 0 2px 6px 0 rgba(255,98,0,0.09);
}

/*------------------------------------------------------*
COOKIES CONSENT BANNER & MODAL
*------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF2E6;
  color: #183B51;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
  padding: 26px 12vw 18px 12vw;
  box-shadow: 0 -4px 24px 0 rgba(24,59,81,0.14);
  z-index: 9999;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
}
.cookie-banner .cookie-message {
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.7;
}
.cookie-banner .btn {
  min-width: 140px;
}

@media (max-width: 750px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 22px 12px;
    font-size: .98rem;
  }
  .cookie-banner .btn {
    min-width: 110px;
    width: 100%;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 10001;
  background: rgba(24,59,81,0.67);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.25s;
}
@keyframes fade-in {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #FFF2E6;
  border-radius: 28px;
  box-shadow: 0 10px 60px 0 rgba(24,59,81,0.18);
  padding: 42px 36px 36px 36px;
  min-width: 300px;
  max-width: 96vw;
  color: #183B51;
  position: relative;
  animation: modal-in 0.22s cubic-bezier(.7,0,.17,1);
}
@keyframes modal-in {
  from { transform: translateY(36px) scale(.97); opacity:0.1; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 14px;
}
.cookie-modal ul {
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #C44A00;
  border-radius: 8px;
}
.cookie-category label {
  font-size: 1.08rem;
  color: #183B51;
}
.cookie-category.essential label {
  font-weight: bold;
  color: #FF6200;
  opacity: .6;
}
.cookie-modal .btn {
  margin: 0 10px 0 0;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 1.23rem;
  background: transparent;
  border: none;
  color: #FF6200;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background 0.14s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #FFE3D1;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 24px 9px;
  }
}

/*------------------------------------------------------*
  UTILITY CLASSES & SPACING
*------------------------------------------------------*/
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.pb-1 { padding-bottom: 8px !important; }
.pb-2 { padding-bottom: 16px !important; }
.pb-3 { padding-bottom: 24px !important; }

/* Cards, sections, content blocks minimum margin */
.card, .service-card, .feature-item, .testimonial-card, .team-member, section, .content-wrapper {
  margin-bottom: 20px;
}

/*------------------------------------------------------*
  RESPONSIVE DESIGN - MOBILE-FIRST
*------------------------------------------------------*/
@media (max-width: 1200px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 650px) {
  .hero-section {
    padding: 30px 0 24px 0;
    border-radius: 0 0 28px 28px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
}
@media (max-width: 540px) {
  html {
    font-size: 14px;
  }
  .container {
    padding-left: 2px;
    padding-right: 2px;
  }
}

/*------------------------------------------------------*
  ANIMATION ENHANCEMENTS
*------------------------------------------------------*/
.btn, .service-card, .feature-item, .testimonial-card, .team-member, .card, .main-nav a, .footer-menu a, .social-links a {
  transition: background 0.15s, box-shadow 0.20s, color 0.15s, transform 0.15s;
}

/*------------------------------------------------------*
  HIDE ELEMENT UTILITY
*------------------------------------------------------*/
.hide, [hidden] {
  display: none !important;
}

/*------------------------------------------------------*
  ACCESSIBILITY FOCUS STATE
*------------------------------------------------------*/
:focus-visible {
  outline: 2px solid #FF6200 !important;
  outline-offset: 1px;
  z-index: 10000;
}

/*------------------------------------------------------*
  PRINT STYLES
*------------------------------------------------------*/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .container { max-width: 100%; width: 100%; }
}
