/* CSS RESET & NORMALIZE */
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;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F4F7FA;
  color: #222C35;
}
ul, ol {
  padding-left: 1.5rem;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #28516B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B76A18;
  text-decoration: underline;
  outline: none;
}
button,input,select,textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
  box-sizing: border-box;
}

/* VARIABLE COLORS AND FONTS (with fallback) */
:root {
  --primary: #28516B;
  --secondary: #F4F7FA;
  --accent: #B76A18;
  --white: #fff;
  --gray-light: #F0F2F6;
  --gray-medium: #C6CFD9;
  --gray-dark: #425466;
  --black: #1F2326;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/*============== GENERAL LAYOUT ==============*/
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0; /* Strictly controlled by section spacing */
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(40, 81, 107, 0.06);
}

/*============== HEADINGS & TYPOGRAPHY ==============*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.18;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1.20;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  line-height: 1.24;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
p, ul, ol, li {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: #222C35;
  margin-bottom: 8px;
  line-height: 1.6;
}

ul, ol {
  margin-bottom: 12px;
}
ul li {
  margin-bottom: 6px;
  padding-left: 6px;
  position: relative;
}
ul li::before {
  content: '\2022';
  color: var(--primary);
  position: absolute;
  left: -16px;
}

blockquote {
  font-style: italic;
  color: var(--primary);
  background: var(--secondary);
  padding: 16px 24px;
  border-left: 4px solid var(--accent);
  margin-bottom: 12px;
  border-radius: 6px;
}

address {
  font-style: normal;
  color: #425466;
  font-size: 1rem;
  margin-bottom: 6px;
}

strong {
  color: var(--primary);
  font-weight: 700;
}

/*================ HEADER & NAVIGATION ================*/
header {
  background: var(--white);
  box-shadow: 0 3px 12px rgba(40, 81, 107, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

header img {
  height: 48px;
  margin-right: 30px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-body);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 8px 2px;
  border-radius: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  background: var(--gray-light);
}
.cta-button {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 24px;
  padding: 10px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 6px rgba(183, 106, 24, 0.07);
  border: none;
  margin-left: 14px;
  transition: background 0.18s, box-shadow 0.2s, color 0.2s;
  outline: none;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: #E4972B;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(40,81,107,0.11);
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  font-size: 2rem;
  padding: 4px 14px;
  margin-left: 22px;
  border: none;
  transition: background 0.2s;
  cursor: pointer;
  z-index: 1100;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--white);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,81,107,0.98);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.58,.01,.36,1);
  z-index: 1200;
  pointer-events: none;
  opacity: 1;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}

.mobile-menu-close {
  background: none;
  color: var(--white);
  font-size: 2rem;
  border: none;
  margin: 22px 24px 28px 8px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-end;
  gap: 14px;
  margin-right: 36px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.22rem;
  font-family: var(--font-display);
  font-weight: 600;
  background: none;
  border-radius: 8px;
  padding: 11px 34px 13px 0;
  margin-bottom: 2px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(244,247,250,0.18);
  color: var(--accent);
  outline: none;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  header .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/*============== HERO SECTION ==============*/
.hero {
  background: linear-gradient(92deg, #F4F7FA 65%, #E5EEF5 100%);
  padding: 36px 0 36px 0;
  margin-bottom: 48px;
}
.hero .container {
  justify-content: center;
}
.hero .content-wrapper {
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  background: none;
  gap: 16px;
}
.hero h1 {
  font-size: 2.2rem;
  color: var(--primary);
}
.hero p {
  font-size: 1.18rem;
  color: var(--gray-dark);
  margin-bottom: 10px;
  max-width: 540px;
}
@media (min-width: 700px) {
  .hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    max-width: 712px;
  }
  .hero h1 {
    font-size: 2.65rem;
  }
}

/*============== FEATURE/GRID SECTIONS =============*/
.features-grid,
.services-grid,
.testimonial-slider,
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 12px;
  margin-bottom: 14px;
}
.features-grid {
  flex-direction: row;
}
.feature {
  background: var(--secondary);
  border-radius: 14px;
  padding: 24px 20px 20px 20px;
  min-width: 210px;
  max-width: 276px;
  flex: 1 1 220px;
  box-shadow: 0 3px 10px rgba(40,81,107,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow .19s, border-color .19s;
  border: 1.5px solid #E7EDF2;
}
.feature img {
  height: 38px;
  margin-bottom: 10px;
}
.feature h3 {
  font-size: 1.13rem;
  margin-bottom: 2px;
  color: var(--primary);
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 6px 22px rgba(40,81,107,0.13);
  border-color: #C6CFD9;
}

.services-grid {
  flex-direction: row;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(40,81,107,0.09);
  padding: 28px 22px 18px 22px;
  margin-bottom: 20px;
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border: 1.5px solid #E7EDF2;
  transition: box-shadow .18s, border-color .18s;
}
.service-card img {
  height: 36px;
}
.service-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
}
.service-card .service-price {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--accent);
  font-weight: 700;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 7px 24px rgba(40,81,107,0.16);
  border-color: #C6CFD9;
}

@media (max-width: 900px) {
  .features-grid, .services-grid {
    flex-direction: column;
  }
  .feature, .service-card {
    max-width: 100%;
    min-width: 0;
  }
}

/*============== FAQ SECTION ==============*/
.faq {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
}
.faq-item {
  background: var(--secondary);
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(40,81,107,0.08);
  margin-bottom: 12px;
  position: relative;
}
.faq-item h3 {
  font-size: 1.04rem;
  margin-bottom: 3px;
  color: var(--primary);
}
.faq-item p {
  font-size: 1rem;
  color: #222C35;
}

/*============== CTA BANNER ==============*/
.cta-banner {
  background: linear-gradient(92deg, #E6EEF4 85%, #FFF 100%);
  margin-bottom: 60px;
  padding: 40px 0;
  border-radius: 15px;
}
.cta-banner .container {
  justify-content: center;
}
.cta-banner .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}
.cta-banner h2 {
  color: var(--primary);
  font-size: 1.7rem;
  margin-bottom: 10px;
}
.cta-banner .cta-button {
  font-size: 1.12rem;
  padding: 11px 36px;
  border-radius: 28px;
  box-shadow: 0 3px 8px rgba(40,81,107,0.08);
}
@media (max-width: 500px) {
  .cta-banner .cta-button {
    font-size: 1rem;
    padding: 9px 18px;
  }
}

/*============== TESTIMONIALS ==============*/
.testimonial-slider, .testimonial-grid {
  gap: 24px;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 7px rgba(40,81,107,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 340px;
  position: relative;
  border: 1.5px solid #E7EDF2;
  z-index: 1;
  transition: box-shadow .18s, border-color .18s;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: var(--primary);
  font-weight: 600;
  font-family: var(--font-display);
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 28px rgba(40,81,107,0.11);
  border-color: #C6CFD9;
}
.testimonial-icon {
  margin-bottom: 8px;
  margin-top: 4px;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  color: var(--primary);
  font-style: italic;
  padding: 0;
  margin-bottom: 4px;
}
@media (max-width: 900px) {
  .testimonial-slider, .testimonial-grid {
    flex-direction: column;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
}
.testimonial-card p {
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1rem;
  margin: 0 0 6px 0;
  line-height: 1.6;
}

/*============== MAP PLACEHOLDER ==============*/
.map-placeholder {
  background: var(--gray-light);
  color: var(--gray-dark);
  font-family: var(--font-display);
  font-size: 1.05rem;
  border-radius: 9px;
  padding: 30px 0;
  margin: 14px 0 0 0;
  text-align: center;
  letter-spacing: 0.05em;
}

/*============== FOOTER ==============*/
footer {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 44px 0 34px 0;
  margin-top: 44px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 44px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: #EAECEE;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 2px;
  transition: color 0.18s, text-decoration 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  text-decoration: underline;
}
.brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 0;
}
.brand-block img {
  height: 36px;
  margin-bottom: 8px;
}
.brand-block span, .brand-block address {
  color: #E0E5EA;
  font-family: var(--font-body);
  font-size: 1rem;
}
.brand-block a {
  color: #E7E9F0;
  text-decoration: underline;
  font-size: 1rem;
}
.brand-block a:hover {
  color: var(--accent);
}
.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-links a {
  color: #E7E9F0;
  font-size: 1.4rem;
  transition: color .16s;
}
.social-links a:hover {
  color: var(--accent);
}
@media (max-width: 1100px) {
  footer .container {
    gap: 22px;
  }
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
}

/*============== RESPONSIVE FLEX UTILS ==============*/
.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: 20px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 7px rgba(40,81,107,0.10);
  padding: 22px 20px;
  flex: 1 1 220px;
  transition: box-shadow .18s;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*============== SPACING CLASS FOR ALL SECTIONS ==============*/
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}

@media (max-width: 768px) {
  .section {
    padding: 25px 7px;
    margin-bottom: 40px;
  }
  .cta-banner {
    padding: 25px 0;
    margin-bottom: 34px;
  }
  section {
    margin-bottom: 34px;
    padding: 25px 0 0 0;
  }
}

/*==== BUTTON/INTERACTIONS ====*/
button, .cta-button, .button {
  cursor: pointer;
  transition: background 0.17s, color 0.16s, box-shadow 0.17s;
}
.button,
.cta-button.secondary {
  background: var(--primary);
  color: var(--white);
  border-radius: 21px;
  padding: 8px 22px;
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 500;
  margin: 10px 0 0 0;
  box-shadow: 0 2px 7px rgba(40,81,107,0.09);
}
.button:hover, .cta-button.secondary:hover {
  background: var(--accent);
  color: var(--white);
}

/*==== FORM ====*/
input, textarea, select {
  background: var(--secondary);
  border-radius: 7px;
  border: 1.5px solid #D9E1EA;
  padding: 10px 16px;
  font-size: 1rem;
  margin-bottom: 18px;
  color: #222C35;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
}
label {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 5px;
  display: inline-block;
  font-family: var(--font-display);
}

/*============== COOKIE CONSENT BANNER ==============*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F8FBFF;
  border-top: 2px solid #E7EDF2;
  box-shadow: 0 -4px 24px rgba(40,81,107,0.15);
  padding: 18px 24px 18px 24px;
  z-index: 1400;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  font-family: var(--font-body);
}
.cookie-banner p {
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cookie-banner button {
  padding: 8px 18px;
  border-radius: 22px;
  border: none;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  margin-left: 0;
}
.cookie-accept {
  background: var(--accent);
  color: var(--white);
  margin-left: 0;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #B76A18;
}
.cookie-reject {
  background: #E7EDF2;
  color: var(--primary);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #D1D9E0;
  color: var(--accent);
}
.cookie-settings {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #E7EDF2;
  color: var(--accent);
  border-color: var(--accent);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 7px 14px 7px;
    font-size: 0.97rem;
  }
  .cookie-banner-buttons {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(39, 62, 89, 0.78);
  z-index: 1500;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}
.cookie-modal.active {
  display: flex;
  animation: fadeIn 0.31s ease;
}
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.cookie-modal-content {
  background: #FBFEFF;
  border-radius: 15px;
  width: 100%;
  max-width: 410px;
  padding: 32px 26px 24px 26px;
  box-shadow: 0 6px 48px rgba(40,81,107,0.19);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: slideUp 0.41s cubic-bezier(.65,-0.01,.26,1);
}
@keyframes slideUp {
  from {transform: translateY(60px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 18px;
  background: none;
  color: var(--primary);
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--accent);
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1.05rem;
  font-family: var(--font-body);
  color: var(--primary);
  margin-bottom: 0;
}
.cookie-switch {
  width: 44px;
  height: 26px;
  background: #E0E5EA;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background .14s;
}
.cookie-switch input {
  opacity: 0;
  width: 44px;
  height: 26px;
  position: absolute;
  left: 0; top: 0;
  cursor: pointer;
}
.cookie-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 22px; height: 22px;
  background: var(--primary);
  border-radius: 50%;
  transition: left 0.17s, background 0.17s;
}
.cookie-switch input:checked + .cookie-slider {
  left: 20px;
  background: var(--accent);
}
.cookie-category.essential .cookie-switch {
  background: #D6DFEC;
  cursor: not-allowed;
}
.cookie-category.essential .cookie-slider {
  background: #ABB3BF;
}
.cookie-note {
  color: #86939E;
  font-size: 0.92rem;
}

/*============== UTILITY CLASSES ==============*/
.mt-8 { margin-top: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-20 { margin-bottom: 20px; }
.mt-24 { margin-top: 24px; }
.pt-24 { padding-top: 24px; }
.pb-24 { padding-bottom: 24px; }
.gap-16 { gap: 16px; }

/*============== SCROLLBAR ============== */
::-webkit-scrollbar {
  width: 10px;
  background: #F4F7FA;
}
::-webkit-scrollbar-thumb {
  background: #D6DFEC;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/*============== MEDIA QUERIES ===============*/
@media (max-width: 780px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.40rem; }
  .container { padding-left: 8px; padding-right: 8px; }
  .brand-block img { height: 27px; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.30rem; }
  h2 { font-size: 1.18rem; }
}

/*============== ANIMATIONS ===============*/
.cta-button, .button, .main-nav a, .service-card, .feature, .testimonial-card, .cookie-banner button, .mobile-menu {
  transition: background 0.19s, color 0.16s, box-shadow 0.2s, border 0.16s, transform 0.2s;
}
.service-card:hover, .feature:hover, .testimonial-card:hover {
  transform: translateY(-4px) scale(1.015);
}

/*============== PRINT STYLES ==============*/
@media print {
  header, .main-nav, .mobile-menu, .mobile-menu-toggle, .cta-banner, .cookie-banner, .cookie-modal, .footer-nav, .social-links { display: none !important; }
  .container, .content-wrapper, .section { box-shadow: none !important; background: #fff !important; }
}
