/* RESET & BASE --------------------------- */
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 {
  font-family: 'Roboto', Arial, sans-serif;
  color: #184E77;
  background: #F7F7F9;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

*, *:before, *:after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1976d2;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFB300;
}

/* TYPOGRAPHY ----------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #184E77;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.15;
  animation: popTitle 1.1s cubic-bezier(.68,-0.55,.27,1.55);
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, ul, ol, li {
  font-size: 1rem;
  color: #184E77;
}
strong {
  font-weight: 700;
}

@keyframes popTitle {
  0% { transform: scale(0.95) translateY(22px); opacity: 0; }
  60% { opacity: 1; transform: scale(1.05) translateY(-6px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* LAYOUT & CONTAINERS -------------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px 0 rgba(162,192,221,0.14);
}

@media (max-width: 768px) {
  .section {
    padding: 26px 10px;
    margin-bottom: 34px;
    border-radius: 14px;
  }
  .container {
    padding: 0 8px;
  }
}

/* FLEXBOX PATTERNS ---------------------- */
.card-container, .team-grid, .feature-grid, .service-cards, .report-cards, .partnership-logos, .accreditation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card, .team-grid > div, .feature-grid > div, .service-cards > div, .report-cards > div {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(162,192,221,0.10);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 250px;
  min-width: 230px;
  padding: 30px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.15s, box-shadow 0.2s;
}
.card:hover, .team-grid > div:hover, .feature-grid > div:hover, .service-cards > div:hover, .report-cards > div:hover {
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 32px 0 rgba(161,192,221,0.16);
  z-index: 2;
}
.card img, .team-grid img, .feature-grid img, .service-cards img, .report-cards img {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 8px #A2C0DD22);
  border-radius: 20px;
  background: #F7F7F9;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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) {
  .content-grid, .card-container, .team-grid, .feature-grid, .service-cards, .report-cards {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* FEATURES & CHECKLISTS -------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 180px;
  margin-bottom: 20px;
}
.feature-checklist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 26px 0 0 0;
}
.feature-checklist li {
  background: #A2C0DD;
  border-radius: 18px;
  padding: 10px 22px;
  color: #184E77;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* HERO & MAIN CTA BUTTON ------------- */
.cta-btn {
  background: #FFB300;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.13rem;
  letter-spacing: .05em;
  padding: 14px 38px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 3px 24px 0 #FFD74050;
  margin-top: 22px;
  transition: background 0.15s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  outline: none;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1976d2;
  color: #fff;
  transform: scale(1.04) skew(-4deg);
  box-shadow: 0 8px 32px 0 #FFD74077, 0 2px 14px 0 #A2C0DD19;
  text-decoration: none;
}

/* NAVIGATION ------------------------- */
header {
  background: #184E77;
  padding: 0 0 0 0;
  box-shadow: 0 1px 18px 0 #184E7722;
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 64px;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;
}
nav img[alt="LamoDash News"] {
  height: 44px;
  margin-right: 20px;
}
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
nav ul li {
  position: relative;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 16px 10px 16px;
  border-radius: 14px;
  color: #fff;
  font-size: 1rem;
  transition: background 0.14s;
  background: transparent;
}
nav ul li a:hover, nav ul li a:focus {
  background: #FFB300;
  color: #184E77;
}
nav .cta-btn {
  margin-top: 0;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  nav ul {
    gap: 8px 11px;
  }
}
@media (max-width: 800px) {
  nav ul, nav .cta-btn {
    display: none;
  }
}

/* MOBILE MENU ---------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #FFB300;
  color: #fff;
  border: none;
  font-size: 2.3rem;
  border-radius: 18px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 12px;
  right: 18px;
  z-index: 1099;
  box-shadow: 0 2px 14px 0 #FFD74044;
  cursor: pointer;
  transition: background 0.1s, color 0.1s, transform 0.15s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #1976d2;
  color: #fff;
  transform: scale(1.1) rotate(12deg);
}
@media (max-width: 800px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 340px;
  max-width: 95vw;
  background: #fff;
  z-index: 1100;
  box-shadow: -3px 0 22px #184E7765;
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(.33,1.02,.59,1);
  display: flex;
  flex-direction: column;
  padding: 32px 24px 20px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #FFB300;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 13px;
  width: 38px;
  height: 38px;
  box-shadow: 0 2px 8px #A2C0DD20;
  cursor: pointer;
  z-index: 3;
  transition: background 0.1s, color 0.1s, transform 0.13s;
}
.mobile-menu-close:hover {
  background: #1976d2;
  color: #fff;
  transform: scale(1.07) rotate(-8deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 52px;
}
.mobile-nav a {
  color: #184E77;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 10px;
  border-radius: 12px;
  transition: background 0.14s, color 0.16s;
  background: transparent;
  outline: none;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #FFB300;
  color: #fff;
}
@media (max-width: 800px) {
  .mobile-menu {
    display: flex !important;
  }
}

/* MAIN SECTIONS & SPACING ----------------- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  border-radius: 24px;
  background: transparent;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 30px;
    padding: 24px 0;
    border-radius: 14px;
  }
}

ul, ol {
  margin-bottom: 18px;
  margin-left: 19px;
  padding-left: 16px;
}
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.text-section {
  margin-bottom: 20px;
  max-width: 780px;
  font-size: 1.04em;
  line-height: 1.7;
}

/* NEWS/ARTICLES PREVIEW ------------------ */
.news-categories, .news-category-filter, .topic-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.news-categories a, .news-category-filter a, .topic-filters a {
  color: #1976d2;
  background: #F7F7F9;
  padding: 6px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.03em;
  transition: background 0.14s, color .14s;
}
.news-categories a:hover, .news-category-filter a:hover, .topic-filters a:hover {  background:#FFB300; color: #fff; }

.chronological-listing,
.recent-articles-list,
.awards-list,
.newsletter-benefits,
.content-preview-list,
.unique-insight-highlights {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin: 20px 0 0 0;
}
.quick-links a {
  font-weight: bold;
  background: #FFB300;
  color: #fff;
  border-radius: 11px;
  padding: 8px 18px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px #FFD74060;
  transition: background .15s, color .17s;
}
.quick-links a:hover { background: #1976d2; color: #fff; }

/* SERVICES/REPORTS CARDS ---------------------- */
.service-cards, .report-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  justify-content: flex-start;
}
.service-cards > div, .report-cards > div {
  min-width: 240px;
  flex: 1 1 255px;
  margin-bottom: 20px;
}
.service-price, .purchase-option {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  color: #FFB300;
  background: #F7F7F9;
  border-radius: 10px;
  padding: 8px 16px;
  margin-top: 18px;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

/* TESTIMONIALS ---------------------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 20px;
  background: #FFEB98;
  border-radius: 22px;
  box-shadow: 0 3px 18px #FFD74022;
  color: #184E77;
  font-size: 1.11rem;
  min-width: 260px;
  max-width: 410px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 36px 0 #FFD7405e;
  transform: scale(1.04) rotate(-1deg);
}
.testimonial-card p {
  color: #184E77;
  font-size: 1.07rem;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #FFB300;
  font-weight: bold;
  font-size: 1.06rem;
  margin-top: 2px;
}
.user-avatar img {
  background: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  box-shadow: 0 2px 12px #A2C0DD54;
  border: 3px solid #FFB300;
  margin-right: 0;
}

/* TABLES & ACCREDITATIONS ------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 #A2C0DD16;
  margin-bottom: 20px;
  font-size: 1rem;
}
table th, table td {
  padding: 16px 12px;
  text-align: center;
}
table th {
  background: #184E77;
  color: #fff;
  font-family: 'Montserrat';
  font-weight: bold;
}
table tr:nth-child(even) td {
  background: #F7F7F9;
}
table tr td {
  border-bottom: 1px solid #A2C0DD27;
}

.partnership-logos, .accreditation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin: 24px 0;
}
.partnership-logos img, .accreditation-badges img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 2px 8px #A2C0DD44);
  background: #fff;
  border-radius: 11px;
  padding: 6px;
}

/* PAGINATION */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 0 0;
}
.pagination a {
  background: #A2C0DD;
  color: #184E77;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.13s, color 0.13s;
}
.pagination a:hover {
  background: #1976d2;
  color: #fff;
}

/* FOOTER --------------------------- */
footer {
  margin-top: 44px;
  padding: 48px 0 36px 0;
  background: #184E77;
  color: #fff;
  border-radius: 40px 40px 0 0;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 6px 15px;
  transition: background 0.14s, color 0.12s;
  background: transparent;
  margin-bottom: 8px;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #FFB300;
  color: #184E77;
}
.contact-info {
  gap: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: .98rem;
  color: #fff;
  margin: 0 auto;
}
.contact-info div, .contact-info > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info img {
  width: 21px;
  height: 21px;
  margin-right: 5px;
  background: #fff;
  border-radius: 6px;
  padding: 2.5px;
  box-shadow: 0 1px 8px #A2C0DD16;
}

@media (max-width: 700px) {
  .footer-menu, .contact-info {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    text-align: left;
  }
  footer {
    padding: 36px 0 24px 0;
    border-radius: 20px 20px 0 0;
  }
}
.content-wrapper .contact-info div {
  color: #000;
}

/* COOKIE CONSENT BANNER ------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #184E77;
  color: #fff;
  box-shadow: 0 -2px 16px #184E7740;
  z-index: 1200;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: slideUpIn 0.5s;
}
.cookie-banner p {
  color: white;
}
@keyframes slideUpIn {
  from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  max-width: 540px;
  text-align: center;
  font-size: 1.02em;
  margin-bottom: 8px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.cookie-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 14px;
  border: none;
  min-width: 120px;
  padding: 12px 24px;
  margin-bottom: 0;
  transition: background 0.15s, color 0.13s, transform .13s;
  box-shadow: 0 2px 12px #FFB30025;
  cursor: pointer;
}
.cookie-actions .accept {
  background: #FFB300;
  color: #fff;
}
.cookie-actions .accept:hover { background: #1976d2; }
.cookie-actions .reject {
  background: #fff;
  color: #184E77;
  border: 2px solid #A2C0DD;
}
.cookie-actions .reject:hover { background: #FFB300; color: #fff; }
.cookie-actions .settings {
  background: transparent;
  color: #FFB300;
  border: 2px solid #FFB300;
}
.cookie-actions .settings:hover { background: #FFB300; color: #fff; }

/* COOKIE MODAL ------------------------ */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24,78,119,0.79);
  z-index: 1250;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.34s;
}
@keyframes fadeInModal {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #184E77;
  border-radius: 22px;
  box-shadow: 0 8px 36px #A2C0DD66;
  max-width: 374px;
  width: 96vw;
  padding: 36px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-modal-content h2 {
  font-size: 1.35rem;
  color: #184E77;
  margin-bottom: 13px;
}
.cookie-category {
  margin-bottom: 19px;
}
.cookie-modal-content label {
  font-size: 1.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-switch {
  appearance: none;
  width: 38px; height: 22px;
  background: #A2C0DD;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  margin-right: 10px;
  transition: background .16s;
}
.cookie-switch:checked {
  background: #FFB300;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 4px; top: 4px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 7px;
  transition: left .16s;
}
.cookie-switch:checked:before {
  left: 20px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #FFB300;
  color: #fff;
  border-radius: 9px;
  border: none;
  width: 32px; height: 32px;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .12s, color .12s;
  cursor: pointer;
  z-index: 8;
}
.cookie-modal-close:hover { background: #1976d2; color: #fff; }
.cookie-modal-footer {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}
.cookie-modal-footer button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  padding: 8px 18px;
  cursor: pointer;
}
.cookie-modal-footer .accept {
  background: #FFB300;
  color: #fff;
}
.cookie-modal-footer .cancel {
  background: #A2C0DD;
  color: #184E77;
}
.cookie-modal-footer .accept:hover { background: #1976d2; }
.cookie-modal-footer .cancel:hover { background: #FFB300; color: #fff; }

/* ANIMATIONS ------------------------ */
@keyframes bounceIn {
  0% { transform: scale(0.92); opacity: 0.6; }
  60% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); }
}
.card, .card > *, .cta-btn, .testimonial-card {
  animation: bounceIn 0.84s;
  animation-fill-mode: both;
}

/* SPECIAL EFFECTS ------------------- */
.report-cards > div, .feature-grid > div {
  background: #F7F7F9;
  border: 2.5px dashed #A2C0DD99;
  box-shadow: 0 3px 18px #A2C0DD11;
}
.report-cards > div:hover, .feature-grid > div:hover {
  border-style: solid;
  border-color: #FFB300;
  box-shadow: 0 8px 28px #FFB30022;
}

blockquote {
  background: #A2C0DD;
  border-left: 6px solid #FFB300;
  color: #184E77;
  font-style: italic;
  border-radius: 10px;
  padding: 20px;
}
blockquote footer {
  font-size: .98em;
  color: #184E77;
  margin-top: 8px;
}

/* BREAKING NEWS TICKER -------------- */
.breaking-news-ticker {
  background: #FFB300;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 13px;
  padding: 12px 22px;
  margin: 10px 0 0 0;
  font-size: 1.08rem;
  animation: tickerAnim 9s linear infinite;
}
@keyframes tickerAnim {
  0% { background: #FFB300; }
  50% { background: #1976d2; }
  100% { background: #FFB300; }
}

/* PERSONALIZATION OPTIONS -------------- */
.personalization-options {
  background: #A2C0DD24;
  border-radius: 17px;
  padding: 18px 24px;
  margin-top: 10px;
}
.personalization-options h3 {
  margin-bottom: 6px;
}

.privacy-note {
  background: #F7F7F9;
  color: #184E77;
  border-radius: 11px;
  margin: 10px 0 0 0;
  font-size: .97em;
  padding: 8px 12px;
}

/* RESPONSIVENESS --------------------- */
@media (max-width: 500px) {
  h1 { font-size: 1.57rem; }
  h2 { font-size: 1.25rem; }
  .cta-btn, .cookie-actions button {
    font-size: .97rem;
    padding: 12px 15px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 10px;
  }
  .card, .report-cards > div, .service-cards > div {
    padding: 18px 10px;
  }
}

/* FUN & PLAYFUL MICROTWEAKS --------- */
.card, .feature-grid > div, .service-cards > div {
  border-bottom: 6px solid #FFB300;
  position: relative;
  z-index: 1;
}
.card:after, .feature-grid > div:after, .service-cards > div:after {
  content: '';
  display: block;
  position: absolute;
  right: 22px;
  bottom: 14px;
  width: 24px;
  height: 10px;
  background: #A2C0DD;
  border-radius: 18px 18px 0 0;
  opacity: .19;
  z-index: 0;
  animation: cardWave 2.8s infinite cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cardWave {
  0%, 100% { transform: rotate(0) scaleX(1); }
  40% { transform: scaleX(1.11) rotate(-7deg); }
  60% { transform: scaleX(.93) rotate(10deg); }
}

/* SCROLLBAR CUSTOMIZATION ------------- */
::-webkit-scrollbar { width: 8px; background: #A2C0DD44; border-radius: 8px; }
::-webkit-scrollbar-thumb { background: #A2C0DD; border-radius: 8px; }
::-webkit-scrollbar-thumb:active { background: #1976d2; }

/* FONTS ----------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

/* PRINT OPTIMIZATION ---------------- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body, .container, .content-wrapper { background: #fff !important; color: #000; }
}
