/* 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,
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 {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #18191A;
  background: #fff;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  background: none;
  color: #174A69;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #000;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
}
img {
  max-width: 100%;
  display: block;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}
:focus {
  outline: 2px solid #174A69;
  outline-offset: 2px;
}

/* BRAND FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  letter-spacing: -0.02em;
  color: #07080B;
}
h1 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  color: #232325;
  margin-bottom: 12px;
}
strong {
  font-weight: 600;
  color: #111;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* HEADER */
header {
  background: #fff;
  border-bottom: 2px solid #E6EAED;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
header img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #232325;
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover, .main-nav a.active {
  color: #174A69;
  text-decoration: none;
}
.btn-primary {
  background: #18191A;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 32px;
  border: none;
  box-shadow: 0 3px 23px 0 rgba(14,25,36,0.08);
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  margin-left: 32px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
  background: #174A69;
  color: #fff;
  box-shadow: 0 6px 34px 0 rgba(23,74,105,0.10);
  text-decoration: none;
}
.mobile-menu-toggle {
  background: #18191A;
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
  margin-left: 20px;
  z-index: 300;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #232325;
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  z-index: 5002;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 19, 21, 0.99);
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.79,.03,.41,.94);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  color: #fff;
  background: none;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 5003;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E6EAED;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  padding: 96px 0 0 0;
  gap: 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 0;
  transition: color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E6EAED;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
  .btn-primary {
    padding: 12px 24px;
    margin-left: 22px;
    font-size: 1rem;
  }
  header .container {
    gap: 12px;
  }
}
@media (max-width: 830px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .btn-primary {
    margin-left: 0;
    margin-right: 8px;
  }
}
@media (max-width: 596px) {
  header img {
    height: 38px;
  }
}

/* HERO SECTION */
.hero {
  background: #fff;
  border-bottom: 1px solid #ECECEC;
  padding-top: 40px;
  padding-bottom: 42px;
  margin-bottom: 0px;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}
.hero h1 {
  font-size: 2.3rem;
  color: #07080B;
  margin-bottom: 4px;
}
.hero p {
  font-size: 1.15rem;
  color: #232325;
  margin-bottom: 10px;
}

/* SECTIONS */
section {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section + section {
  margin-top: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}

/* GRID CONTENTS FLEXBOX */
.feature-grid,
.service-previews,
.values-list,
.marina-types-grid,
.route-categories-grid,
.guides-list,
.latest-blog-posts-list,
.marina-overview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 12px;
  justify-content: space-between;
}
.feature-grid > div, .service-previews > div,
.values-list > div, .marina-types-grid > div,
.route-categories-grid > div, .guides-list > div,
.latest-blog-posts-list > div, .marina-overview-list > div {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.055);
  padding: 32px 24px;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 330px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.19s;
}
.feature-grid > div:hover, .service-previews > div:hover,
.values-list > div:hover, .marina-types-grid > div:hover,
.route-categories-grid > div:hover, .guides-list > div:hover,
.latest-blog-posts-list > div:hover, .marina-overview-list > div:hover {
  box-shadow: 0 4px 24px 0 rgba(17, 20, 22, 0.12);
  transform: translateY(-3px);
}
.feature-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}

/* CARDS AND TESTIMONIALS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.055);
  padding: 28px 22px;
  min-width: 230px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(14,33,53,0.16);
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  margin: 0 0 24px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #18191A;
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 rgba(0,0,0,0.11);
  padding: 32px 26px;
  min-width: 250px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.18s;
  border: 1.5px solid #E6EAED;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #232325;
  margin-bottom: 12px;
}
.testimonial-card span {
  font-size: 1rem;
  color: #18191a;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  opacity: 0.78;
}

/* FLEX UTILITY CLASSES */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BUTTONS */
.btn-primary:active {
  background: #07080B;
}

section .btn-primary {
  align-self: flex-start;
}
.service-previews > div a,
.guides-list > div a {
  color: #174A69;
  font-weight: 600;
  text-decoration: underline;
  margin: 12px 0 0 0;
  transition: color 0.17s;
}
.service-previews > div a:hover, .guides-list > div a:hover {
  color: #07080B;
}

/* BLOG CATEGORIES, FAQ, ETC (List Groups) */
.downloadable-resources ul,
.safety-checklists ul,
.faq-section ul,
.essential-tips ul,
.notable-attractions ul,
.step-by-step-guides ul,
.expert-tips ul,
.blog-categories ul,
.recommended-posts ul,
.marina-facilities-highlights ul,
.continents-list ul,
.difficulty-levels ul,
.planning-tips ul,
.safety-recommendations ul,
.local-legislation-overview ul
{
  margin-top: 12px;
  margin-bottom: 12px;
}
.downloadable-resources ul li,
.safety-checklists ul li,
.faq-section ul li,
.essential-tips ul li,
.notable-attractions ul li,
.step-by-step-guides ul li,
.expert-tips ul li,
.blog-categories ul li,
.recommended-posts ul li,
.marina-facilities-highlights ul li,
.continents-list ul li,
.difficulty-levels ul li,
.planning-tips ul li,
.safety-recommendations ul li,
.local-legislation-overview ul li
{
  margin-bottom: 8px;
  font-size: 1rem;
  color: #232325;
}

/* CONTACT SECTION */
.contact-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.1rem;
}
.contact-details img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}
.map-location {
  background: #F8F9FA;
  border-radius: 14px;
  padding: 24px 20px;
  margin-top: 20px;
  font-size: 1rem;
}

/* FOOTER */
footer {
  background: #18191A;
  color: #fff;
  border-top: 2px solid #232325;
  padding: 36px 0 26px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 22px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.85;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  transition: color 0.17s, opacity 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F1F6F8;
  opacity: 1;
  text-decoration: underline;
}
.brand-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.brand-info img {
  width: 110px;
  margin: 0 auto 12px auto;
}
.brand-info p {
  color: #F1F6F8;
  font-size: 1rem;
  opacity: 0.88;
}
.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.07rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 10px;
  opacity: 0.96;
}

/* COOKIE BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8888;
  background: #18191A;
  color: #fff;
  width: 100%;
  box-shadow: 0 -4px 24px rgba(14, 23, 43, 0.08);
  padding: 24px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: cookieFadeIn 0.30s cubic-bezier(.6,.12,.5,.94);
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #f1f6f8;
  font-size: 1rem;
  margin-bottom: 10px;
  text-align: center;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 5px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  background: #fff;
  color: #18191A;
  border: none;
  border-radius: 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 24px;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(23,30,45,0.09);
  transition: background 0.17s, color 0.17s;
}
.cookie-btn.accept {
  background: #174A69;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #17807B;
  color: #fff;
}
.cookie-btn.reject {
  background: #232325;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #07080B;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #174A69;
  border: 1.5px solid #174A69;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F1F6F8;
  color: #174A69;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 8899;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,21,27,0.74);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieFadeIn 0.3s;
}
.cookie-modal {
  background: #fff;
  color: #07080B;
  border-radius: 18px;
  max-width: 382px;
  padding: 36px 26px 30px 26px;
  box-shadow: 0 5px 60px 0 rgba(23,30,44,0.19);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.cookie-modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.39rem;
  font-weight: 600;
  color: #174A69;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-category {
  padding: 10px 0;
  border-bottom: 1px solid #ECECEC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}
.cookie-modal-category:last-child {
  border-bottom: none;
}
.cookie-modal-category span {
  font-size: 1rem;
  color: #07080B;
}
.cookie-modal-category .toggle-switch {
  margin-left: 18px;
}
.toggle-switch {
  display: inline-flex;
  align-items: center;
  width: 42px;
  height: 24px;
  background: #e2e5e9;
  border-radius: 16px;
  position: relative;
  transition: background 0.21s;
  cursor: pointer;
}
.toggle-switch input {
  display: none;
}
.toggle-slider {
  width: 20px;
  height: 20px;
  background: #18191A;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.21s, background 0.17s;
}
.toggle-switch input:checked + .toggle-slider {
  left: 20px;
  background: #174A69;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-actions .cookie-btn {
  min-width: 100px;
  font-size: 1rem;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 17px;
  background: none;
  color: #232325;
  font-size: 1.22rem;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #17807B;
}

/* PAGE SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px 0 20px;
}
.content-wrapper:last-child {
  margin-bottom: 0;
}

/* MONOCHROME DRAMATIC CONTRAST */
body, section, .card, .testimonial-card, .content-wrapper > div, .feature-grid > div, .service-previews > div {
  background: #fff;
}
h1, h2, h3 {
  color: #07080B;
}
p, li, span, label {
  color: #222;
}

.card, .feature-grid > div, .service-previews > div, .testimonial-card {
  box-shadow: 0 2px 20px 0 rgba(17,21,24,0.09);
  border: 1.2px solid #E6EAED;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding: 0 10px;
  }
  .feature-grid > div, .service-previews > div,
  .values-list > div, .marina-types-grid > div,
  .route-categories-grid > div, .guides-list > div,
  .latest-blog-posts-list > div, .marina-overview-list > div {
    padding: 24px 12px;
    min-width: 180px;
    max-width: 50vw;
  }
  .testimonial-card {
    min-width: 160px;
    max-width: 96vw;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    padding: 0 10px;
  }
  .main-nav {
    display: none;
  }
  .section, section {
    margin-bottom: 46px;
    padding: 28px 6px 0 6px;
  }
  .content-wrapper, .feature-grid, .service-previews, .values-list, .marina-types-grid, .route-categories-grid, .guides-list, .latest-blog-posts-list, .marina-overview-list, .testimonial-slider, .card-container, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px !important;
  }
  .feature-grid > div, .service-previews > div, .values-list > div, .marina-types-grid > div, .route-categories-grid > div, .guides-list > div, .latest-blog-posts-list > div, .marina-overview-list > div, .testimonial-card {
    max-width: 100vw;
    min-width: 60vw;
    padding: 18px 10px;
  }
  .testimonial-slider {
    gap: 18px;
  }
  .hero .content-wrapper {
    gap: 14px;
    max-width: 94vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  footer .container {
    gap: 22px;
    padding: 0 10px;
  }
  .brand-info img {
    width: 88px;
  }
}
@media (max-width: 530px) {
  .container {
    max-width: 100vw;
    padding: 0 2vw;
  }
  .feature-grid > div, .service-previews > div,
  .values-list > div, .marina-types-grid > div, .route-categories-grid > div, .guides-list > div, .latest-blog-posts-list > div, .marina-overview-list > div, .testimonial-card {
    padding: 9vw 2.5vw;
    font-size: 0.97rem;
  }
  .brand-info img {
    width: 62px;
  }
  .footer-nav {
    gap: 13px;
  }
}

/* SHADOWS AND RADIUS */
.card, .feature-grid > div, .service-previews > div, .testimonial-card {
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(15,13,19,0.08);
}
/* MICRO INTERACTIONS */
.card, .feature-grid > div, .testimonial-card, .service-previews > div,
.values-list > div, .marina-types-grid > div,
.route-categories-grid > div, .guides-list > div,
.latest-blog-posts-list > div, .marina-overview-list > div {
  transition: box-shadow 0.19s, transform 0.11s;
}
.card:hover, .feature-grid > div:hover, .service-previews > div:hover, .testimonial-card:hover {
  box-shadow: 0 6px 38px 0 rgba(17,24,31,0.13);
  transform: translateY(-3px) scale(1.01);
}

/* VISUAL HIERARCHY */
h1, h2 {
  border-left: 6px solid #18191a;
  padding-left: 16px;
  margin-bottom: 20px;
  background: none;
}
h3 {
  color: #174A69;
  margin-bottom: 10px;
  background: none;
}

/* LISTS & OL */
ol {
  list-style: decimal inside;
  padding-left: 0;
}

/* ACCENT BACKGROUND FOR SECTIONS IF NEEDED */
.marina-facilities-highlights, .essential-tips, .safety-recommendations, .map-location {
  background: #F8F9FA;
}

/* MODALS/LAYERS Z-INDEX RULES */
.mobile-menu {
  z-index: 5002;
}
.cookie-banner {
  z-index: 8888;
}
.cookie-modal-overlay {
  z-index: 8899;
}

/* PREVENT ABSOLUTE OVERLAP OF CONTENT */
.content-wrapper, .feature-grid, .testimonial-slider {
  position: relative;
  z-index: 1;
}

/* MEDIA QUERIES: FONTS SCALE */
@media (max-width: 730px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.05rem; }
  p, li { font-size: 0.98rem; }
}

/* SCROLLBARS */
body, .mobile-menu, .cookie-modal {
  scrollbar-color: #18191A #e9e9e9;
  scrollbar-width: thin;
}

/* CUSTOM SELECTION */
::selection {
  background: #232325;
  color: #fff;
}
::-webkit-selection {
  background: #232325;
  color: #fff;
}

/* HIDE SCROLL ON BODY WHEN MODAL/MENU OPEN */
.body-modal-open {
  overflow: hidden;
}

/* ACCESSIBILITY & HIGH CONTRAST BUTTONS */
.btn-primary:focus, .cookie-btn:focus {
  outline: 2.5px dashed #17807B;
  outline-offset: 0.5px;
}

/* FORMS (if present in the future) */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #CED4DA;
  background: #fff;
  color: #18191A;
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  border-color: #174A69;
  outline: none;
}

/* MONOCHROME SOPHISTICATED OVERRIDES */
body, section, .card, .testimonial-card, .footer, .cookie-modal {
  background: #fff;
  color: #18191A;
}
h1, h2, h3, h4, h5, h6 {
  color: #07080B;
}
p, span, li {
  color: #222;
}
.btn-primary, .cookie-btn.accept, .cookie-btn.reject {
  box-shadow: 0 3px 23px 0 rgba(14,25,36,0.10);
}

/* --- END OF CSS --- */
