/* =========================
   Pulse Spark Asesores - style.css
   Luxury Premium Theme: Gold accents, premium fonts, sophisticated color scheme
   ========================= */

/* === CSS RESET AND NORMALIZE === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body, button, input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  color: #181A1F;
  background: #F5F7FA;
}
img, picture {
  display: block;
  max-width: 100%;
  height: auto;
}
button, [type="button"], [type="submit"] {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  background: none;
}
:focus {
  outline: 2px solid #C5A146;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 1.5em;
}
a {
  color: #223571;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C5A146;
}

/* =========================
   COLOR VARIABLES & PALETTE
   ========================= */
:root {
  --primary: #223571;
  --secondary: #6BBF59;
  --accent: #F5F7FA;
  --gold: #C5A146;
  --dark: #181A1F;
  --gray: #EEF1F4;
  --footer-bg: #191C27;
  --card-bg: #fff;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
  margin-bottom: 0.6em;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
}
h4 {
  font-size: 1.1rem;
}
p, li, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
}
blockquote {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

/* Visually separate hero subtitle & footers */
.hero-sub, .footer-newsletter p {
  font-size: 1.1rem;
  color: var(--dark);
  opacity: 0.85;
}

/* ==============
   LAYOUT CONTAINERS
   ============== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

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

/* ===================
   HEADER & NAVIGATION
   =================== */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(34,53,113,0.07);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding-top: 10px;
  padding-bottom: 10px;
}

header img {
  height: 38px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.main-nav a {
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 0 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  border-bottom: 2px solid var(--gold);
  color: var(--gold);
}
/* CTA header button */
.cta-btn {
  background: var(--gold);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.05rem;
  display: inline-block;
  border-radius: 28px;
  padding: 12px 32px;
  box-shadow: 0px 2px 8px 0 rgba(197,161,70,0.09);
  border: 1px solid var(--gold);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  margin-left: 8px;
  margin-right: 8px;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  box-shadow: 0px 2px 18px 0 rgba(197,161,70,0.13);
}

/* Burger button (mobile) */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: var(--gold);
  margin-left: 16px;
  transition: color 0.2s;
  z-index: 29;
  line-height: 1;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--primary);
}

/* =========================
   MOBILE NAVIGATION
   ========================= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 53, 113, .98);
  z-index: 100;
  padding: 32px 24px 24px 36px;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.85,0,0,.95);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 1.7rem;
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 101;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(197,161,70,0.17);
  border-color: var(--gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 70px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 6px;
  transition: color 0.22s, border 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--gold);
  border-bottom: 1.5px solid var(--gold);
}

/* HIDE desktop nav on mobile, show burger */
@media (max-width: 998px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .header-container {
    justify-content: space-between;
    gap: 12px;
  }
}

/* ===============
   HERO SECTION
   =============== */
.hero-section {
  background: var(--primary);
  color: #fff;
  padding: 68px 0 68px 0;
  display: flex;
  align-items: center;
  position: relative;
  min-height: 330px;
}
.hero-section h1 {
  color: #fff;
  font-size: 2.7rem;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.14;
  letter-spacing: 0.02em;
}
.hero-section .hero-sub {
  color: #fff;
  opacity: 0.93;
  margin-bottom: 28px;
  max-width: 460px;
}
.hero-section .cta-btn {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  font-size: 1.12rem;
  min-width: 200px;
}
.hero-section .cta-btn:hover {
  background: #fff;
  color: var(--gold);
  border: 2px solid var(--gold);
}

/* ================
   FEATURE LISTS/SERVICES
   ================ */
.feature-list,
.highlight-list,
.service-list,
.stat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-top: 16px;
  align-items: stretch;
}
.feature-list li,
.highlight-list li,
.service-list li,
.stat-list li {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(34,53,113,0.07);
  padding: 32px 28px 28px 28px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 280px;
  min-width: 250px;
  max-width: 350px;
  border: 1.5px solid var(--gray);
  transition: box-shadow .2s, border .2s;
  position: relative;
}
.feature-list li:hover,
.highlight-list li:hover,
.service-list li:hover {
  box-shadow: 0 4px 24px 0 rgba(197,161,70,0.16);
  border: 1.5px solid var(--gold);
  z-index: 2;
}
.feature-list img, .highlight-list img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  border: 1.5px solid var(--gold);
  padding: 7px;
  flex-shrink: 0;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list .price {
  display: inline-block;
  margin-top: 13px;
  color: var(--gold);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
}

/* ================
   BLOG + GRID
   ================ */
.blog-list {
  padding: 40px 20px;
}
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  list-style: none;
  align-items: stretch;
}
.blog-grid li {
  background: var(--card-bg);
  border-radius: 15px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 350px;
  padding: 24px 23px;
  box-shadow: 0 2px 10px 0 rgba(34,53,113,0.08);
  border: 1.1px solid var(--gray);
  transition: box-shadow .18s, border .18s;
  margin-bottom: 20px;
}
.blog-grid li:hover {
  box-shadow: 0 6px 32px 0 rgba(197,161,70,0.12);
  border: 1.1px solid var(--gold);
}

/* ================
   TESTIMONIALS
   ================ */
.testimonials-preview, .testimonial-section, .testimonial-highlights {
  margin-bottom: 56px;
  padding: 34px 20px;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  align-items: stretch;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(34,53,113,0.09);
  border: 1.2px solid var(--gold);
  padding: 24px 30px 18px 30px;
  min-width: 235px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow .22s, border .22s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 34px 0 rgba(197,161,70,0.13);
  border: 1.2px solid var(--primary);
}
.testimonial-card blockquote {
  color: var(--primary);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 9px;
}
.testimonial-card footer {
  color: #181A1F;
  background-color: transparent !important;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  opacity: 0.94;
}
.testimonial-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.testimonial-nav button {
  background: var(--accent);
  border: 1.2px solid var(--gold);
  border-radius: 50%;
  font-size: 1.45rem;
  color: var(--gold);
  width: 40px;
  height: 40px;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.testimonial-nav button:hover, .testimonial-nav button:focus {
  background: var(--gold);
  color: #fff;
  border-color: var(--primary);
}

.stat-list li {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 2px 16px 0 rgba(34,53,113,0.07);
  border: 1.1px solid var(--gray);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  margin-bottom: 20px;
}
.stat-list strong {
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.stat-list span {
  color: var(--primary);
  font-size: 0.99rem;
}

/* ================
   CTA BANNER
   ================ */
.cta-banner {
  background: var(--gold);
  color: #fff;
  border-radius: 20px;
  margin: 60px 0 0 0;
  padding: 40px 20px;
  box-shadow: 0 2px 14px 0 rgba(197,161,70,0.08);
}
.cta-banner h2 {
  color: #fff;
}
.cta-banner p {
  color: #fff;
  opacity: 0.96;
  margin-bottom: 20px;
}
.cta-banner .cta-btn {
  background: #fff;
  color: var(--gold);
  border: 2px solid #fff;
  font-weight: 800;
  font-size: 1.1rem;
}
.cta-banner .cta-btn:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

/* ================
   FOOTER
   ================ */
footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 66px 0 28px 0;
}
footer p, footer address {
  color: white;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 45px;
  margin-bottom: 12px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a,.footer-legal a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.92;
  transition: color 0.2s, opacity 0.2s;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--gold);
  opacity: 1;
}
.footer-contact {
  color: #fff;
  font-size: 0.98rem;
  opacity: 0.93;
  margin-bottom: 10px;
}
.footer-contact address {
  font-style: normal;
  margin-bottom: 4px;
}
.footer-contact a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-newsletter h3 {
  color: var(--gold);
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
}
.footer-newsletter p {
  color: #fff;
  font-size: 0.98rem;
  opacity: 0.91;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.footer-social img {
  width: 32px;
  height: 32px;
  opacity: 0.94;
  transition: opacity .19s;
}
.footer-social img:hover {
  opacity: 1;
}

/* ====================
   MAP PLACEHOLDER & CONTACT DETAILS
   ==================== */
.map-placeholder {
  background: var(--gray);
  border: 1.3px solid var(--gold);
  border-radius: 20px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 380px;
}
.contact-details-block {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(197,161,70,0.06);
  border: 1.2px solid var(--gold);
  padding: 26px 22px;
  margin-bottom: 20px;
}

/* ==============
   THANK YOU PAGE
   ============== */
.thankyou-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

/* ===============
   LEGAL SECTIONS
   =============== */
.legal-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(34,53,113,0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===============
   RESPONSIVE DESIGN
   =============== */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 998px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .footer-container,
  .content-wrapper,
  .feature-list,
  .highlight-list,
  .service-list,
  .blog-grid,
  .stat-list,
  .testimonial-slider,
  .testimonial-list {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .hero-section {
    padding: 32px 0 36px 0;
    min-height: 180px;
  }
  .section {
    padding: 25px 6px;
    margin-bottom: 38px;
  }
  .cta-banner {
    border-radius: 10px;
    padding: 25px 6px;
    margin: 38px 0 0 0;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .content-wrapper {
    gap: 18px;
  }
  .feature-list li, .highlight-list li, .service-list li, .blog-grid li, .stat-list li {
    padding: 20px 9px 18px 11px;
    border-radius: 11px;
    min-width: 0;
    max-width: 100%;
  }
  .footer-container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .hero-section {
    min-height: 116px;
  }
  .testimonial-card {
    padding: 18px 10px 12px 12px;
    border-radius: 9px;
  }
  .map-placeholder {
    padding: 10px 7px;
    border-radius: 10px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .cta-btn {
    min-width: 98px;
    font-size: 0.89rem;
    padding: 10px 16px;
  }
  .mobile-menu {
    padding-left: 4vw;
    padding-right: 2vw;
  }
}
/* Force columns to stack in feature/service cards */
@media (max-width: 660px) {
  .feature-list, .highlight-list, .service-list, .blog-grid, .stat-list {
    flex-direction: column;
    gap: 17px;
  }
  .feature-list li, .highlight-list li, .service-list li, .blog-grid li, .stat-list li {
    max-width: 100%;
    min-width: 0;
  }
}

/* ===============
   SPACING PATTERNS
   =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(34,53,113,0.09);
  border: 1.2px solid var(--gold);
  padding: 24px 18px;
}
.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) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===============
   TRANSITIONS / ANIMATIONS
   =============== */
a, .cta-btn, .card, .service-list li, .testimonial-card, .blog-grid li, .mobile-menu, .mobile-nav a, .testimonial-nav button {
  transition: all 0.19s cubic-bezier(.61,.05,.43,1);
}

/* ====================
   COOKIE CONSENT BANNER
   ==================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 140;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-shadow: 0 -2px 22px 0 rgba(34,53,113,0.14);
  padding: 22px 18px 22px 18px;
  font-size: 1rem;
  border-top: 2.5px solid var(--gold);
  gap: 28px;
  opacity: 1;
  transition: opacity 0.29s cubic-bezier(.5,0,.5,1);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 320px;
  max-width: 680px;
  color: var(--primary);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btns button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 18px;
  padding: 8px 23px;
  margin: 2px 0;
  border: 1.3px solid var(--gold);
  background: #fff;
  color: var(--gold);
  cursor: pointer;
  transition: all .18s;
}
.cookie-btns button.accept {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.cookie-btns button.accept:hover {
  box-shadow: 0 2px 11px 0 rgba(197,161,70,0.17);
  color: var(--gold);
  background: #fff;
  border-color: var(--gold);
}
.cookie-btns button.reject:hover,
.cookie-btns button.reject:focus {
  background: #F5F7FA;
  color: var(--primary);
}
.cookie-btns button.settings {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.cookie-btns button.settings:hover {
  background: #fff;
  color: var(--primary);
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    padding: 18px 4vw 18px 4vw;
    font-size: 0.98rem;
    gap: 14px;
    align-items: stretch;
  }
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,53,113,0.18);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.32s cubic-bezier(.5,0,.5,1);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 34px 30px 30px 30px;
  max-width: 400px;
  width: 92vw;
  box-shadow: 0 2px 40px 0 rgba(197,161,70,0.16);
  border: 2.5px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.21rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.01rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--gold);
  width: 18px; height: 18px;
}
.cookie-category label {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category .always-on {
  font-size: 0.97rem;
  color: #6b726e;
  opacity: 0.77;
  margin-left: 7px;
}
.cookie-modal-btns {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal-btns button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 18px;
  padding: 8px 23px;
  border: 1.4px solid var(--gold);
  background: var(--gold);
  color: #fff;
  transition: all .17s;
}
.cookie-modal-btns button.cancel {
  background: #fff;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: none;
}
.cookie-modal-btns button.cancel:hover,
.cookie-modal-btns button.cancel:focus {
  background: #F5F7FA;
  color: var(--primary);
  border-color: var(--primary);
}
/* Responsive modal */
@media (max-width: 500px) {
  .cookie-modal .cookie-modal-content {
    padding: 19px 8px 14px 8px;
  }
}

/* ====================
   MISC. ACCESSIBILITY
   ==================== */
::placeholder {
  color: #BABABA;
  opacity: 1;
}

/* ====================
   PRINT FRIENDLY
   ==================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .cta-banner {
    display: none !important;
  }
  body {
    background: #fff !important;
    color: #222 !important;
  }
}

/* ===================
   END OF STYLESHEET
   =================== */
