/* ===================================
   TinyTracks 'Elegant Classic' Style
   Consistent Flexbox-Only Responsive CSS
   ===================================== */

/* Reset & Base ======================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Lora', Georgia, Times, 'Times New Roman', serif;
  color: #222;
  background: #F5F3EB;
  line-height: 1.6;
  font-size: 1rem;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #20447C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #62B3AC;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1.2em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Lora', Georgia, Times, serif;
  color: #20447C;
  font-weight: 700;
  margin-bottom: 0.5em;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 0.6em; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p, li, label, input, button {
  font-family: 'Lora', Georgia, Times, 'Times New Roman', serif;
  font-size: 1rem;
}

/* Container ========================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* Header/Navbar ===================== */
header {
  background: #fff;
  border-bottom: 1px solid #e7e5e0;
  box-shadow: 0 2px 12px 0 rgba(32,68,124,0.04);
  z-index: 101;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  gap: 16px;
}
header img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-left: 32px;
}
.main-nav a {
  font-family: 'Playfair Display', 'Lora', serif;
  font-size: 1.05rem;
  color: #20447C;
  padding: 4px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #62B3AC;
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.main-nav a:hover, .main-nav a:focus {
  color: #62B3AC;
}

.btn-primary {
  background: #20447C;
  color: #fff;
  font-family: 'Playfair Display', 'Lora', serif;
  font-size: 1.05rem;
  padding: 12px 28px;
  border-radius: 28px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(32,68,124,0.07);
  letter-spacing: 0.02em;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  cursor: pointer;
  margin-left: 16px;
  min-width: 125px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #62B3AC;
  color: #fff;
  box-shadow: 0 6px 18px 0 rgba(32,68,124,0.16);
}

/* Hamburger (mobile menu toggle) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #20447C;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.18s;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #62B3AC;
}

/* Mobile Menu Overlay  =================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245,243,235,0.98);
  box-shadow: 0 4px 48px 0 rgba(32,68,124,0.14);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.7,.3,.2,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 28px 28px 0 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #20447C;
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
  z-index: 202;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #62B3AC;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin-top: 48px;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: 'Playfair Display', 'Lora', serif;
  color: #20447C;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 0;
  transition: color 0.18s, background 0.18s;
  border-radius: 8px;
  width: 100%;
  min-width: 160px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E5ECEB;
  color: #62B3AC;
}

/* Main Layout & Section Spacing ============ */
main {
  padding-bottom: 60px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.hero {
  min-height: 340px;
  background: #fff;
  border-radius: 24px;
  margin-bottom: 58px;
  padding: 50px 0 44px 0;
  box-shadow: 0 6px 30px 0 rgba(32,68,124,0.045);
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  font-size: 2.3rem;
  margin-bottom: 0.8em;
  color: #20447C;
  font-family: 'Playfair Display', 'Lora', serif;
}

.hero p {
  font-size: 1.2rem;
  color: #2D3A4D;
  margin-bottom: 1.2em;
  max-width: 64ch;
  line-height: 1.7;
}

/* Card & Flexbox Layouts ============================ */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 32px 22px;
    box-shadow: 0 2px 18px 0 rgba(32,68,124,0.045);
    transition: box-shadow 0.18s, transform 0.17s;
}
.card:hover, .card:focus-within {
    box-shadow: 0 8px 28px 0 rgba(32,68,124,0.11);
    transform: translateY(-4px) scale(1.010);
    z-index: 2;
}
.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;
}

/* Essential Spacing ======================== */
.features, .feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: flex-start;
}
.feature-grid {
    list-style: none;
    margin: 32px 0 0 0;
}
.feature-grid li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 22px;
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: 0 3px 16px 0 rgba(32,68,124,0.05);
    transition: box-shadow 0.19s, background 0.21s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
    background: #F5F3EB;
    box-shadow: 0 12px 38px 0 rgba(32,68,124,0.06);
}
.feature-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: #E5ECEB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* Cards: Testimonials & Product Cards ====== */
.testimonials {
  margin-bottom: 60px;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px 0 rgba(32,68,124,0.11);
    margin-bottom: 28px;
    position: relative;
    min-width: 220px;
    max-width: 440px;
    transition: box-shadow 0.17s, background 0.16s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
    background: #F5F3EB;
    box-shadow: 0 12px 32px 0 rgba(32,68,124,0.11);
}
.testimonial-card p {
    font-size: 1.15rem;
    color: #20447C;
    margin-bottom: 0.8em;
    font-family: 'Playfair Display', 'Lora', serif;
    line-height: 1.6;
}
.testimonial-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 1rem;
}
.rating-stars {
    color: #FFC560;
    font-size: 1.18rem;
    letter-spacing: 0.12em;
}

/* Product Cards =========================== */
.product-listing {
    margin-bottom: 64px;
}
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
    margin-bottom: 34px;
}
.product-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 18px 0 rgba(32,68,124,0.045);
    padding: 26px 20px;
    transition: box-shadow 0.18s, transform 0.17s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    min-width: 210px;
    max-width: 320px;
}
.product-card:hover, .product-card:focus-within {
    box-shadow: 0 6px 32px 0 rgba(32,68,124,0.14);
    transform: translateY(-3px) scale(1.012);
    z-index: 2;
}
.product-info h3 {
    color: #20447C;
    margin-bottom: 0.4em;
    font-family: 'Playfair Display', 'Lora', serif;
    font-size: 1.18rem;
}
.product-info p {
    margin-bottom: 1em;
    font-size: 1rem;
}

/* Alerts & Trust Signals =================== */
.trust-signals {
    margin-top: 24px;
    margin-bottom: 12px;
}
.trust-signals ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 38px;
    list-style: disc;
    margin-left: 1em;
    font-size: 1rem;
    color: #20447C;
}
.trust-signals li {
    margin-bottom: 0.6em;
}

/* Category / Tag Lists ==================== */
.category-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 20px;
    margin-bottom: 22px;
    padding: 0;
}
.category-list li {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 8px 0 rgba(32,68,124,0.04);
    padding: 16px 22px;
    transition: background 0.18s, box-shadow 0.21s;
    margin-bottom: 20px;
    min-width: 170px;
}
.category-list li:hover, .category-list li:focus-within {
    background: #E5ECEB;
    box-shadow: 0 7px 22px 0 rgba(32,68,124,0.07);
}
.category-list a {
    color: #20447C;
    font-family: 'Playfair Display', 'Lora', serif;
    font-size: 1.08rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.category-list strong {
    font-weight: 700;
    color: #20447C;
}
.category-list span {
    color: #555;
    font-size: 0.99rem;
    margin-top: 1px;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 10px;
}
.category-tags a {
    background: #E5ECEB;
    border-radius: 24px;
    font-size: 1rem;
    padding: 6px 20px;
    font-family: 'Playfair Display', 'Lora', serif;
    color: #20447C;
    border: 1px solid #D7E6E3;
    transition: background 0.16s, color 0.16s, border 0.16s;
}
.category-tags a:hover, .category-tags a:focus {
    background: #62B3AC;
    color: #fff;
    border-color: #62B3AC;
}

/* Article Blog Cards ================= */
.featured-articles .article-list {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}
.featured-articles article {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 8px 0 rgba(32,68,124,0.05);
    padding: 22px 22px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    min-width: 210px;
    max-width: 350px;
    transition: box-shadow 0.14s;
}
.featured-articles article:hover, .featured-articles article:focus-within {
    box-shadow: 0 6px 26px 0 rgba(32,68,124,0.13);
}

/* Footer ================================= */
footer {
  background: #20447C;
  color: #fff;
  padding: 64px 0 0 0;
  font-size: 1rem;
  border-top: 1px solid #e7e5e0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 0 24px 0;
}
.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}
.footer-mission {
  flex: 1 1 220px;
  min-width: 200px;
  color: #DCE4EA;
  font-size: 1.06rem;
  margin-bottom: 10px;
}
.footer-contact ul {
  list-style: none;
  margin: 0; padding: 0;
  color: #E5ECEB;
}
.footer-contact li {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.footer-contact img {
  width: 18px; height: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  color: #fff;
}
.footer-links a {
  font-size: 1rem;
  color: #f9f9f9;
  transition: color 0.16s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #62B3AC;
}
.footer-social {
  display: flex;
  gap: 17px;
  margin-top: 12px;
}
.footer-social img {
  width: 26px;
  height: 26px;
  filter: brightness(1.2);
  transition: filter 0.14s, transform 0.17s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: brightness(2.2) drop-shadow(0 1.2px 0 #62B3AC);
  transform: scale(1.08) rotate(-4deg);
}

/* Contact / Info Cards ==================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}
.map-location {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #20447C;
  margin-top: 12px;
}
.map-location img {
  width: 24px;
  height: 24px;
}

/* Downloadable Materials ================= */
.downloadable-materials ul {
  margin-top: 8px;
  padding-left: 1.4em;
  margin-bottom: 10px;
}
.quick-tips ul {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 1.3em;
}

/* CTA Sections ========================== */
.cta {
  background: #20447C;
  color: #fff;
  text-align: center;
  border-radius: 18px;
  padding: 48px 26px;
  margin-bottom: 38px;
  box-shadow: 0 4px 22px 0 rgba(32,68,124,0.055);
}
.cta h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 18px;
}
.cta p {
  color: #DCE4EA;
  margin-bottom: 26px;
}
.cta .btn-primary {
  background: #62B3AC;
  color: #fff;
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: #1A2F55;
}

.cta-message {
  font-size: 1.18rem;
  background: #F5F3EB;
  color: #20447C;
  border-radius: 10px;
  padding: 22px 16px;
  margin: 22px 0;
  font-family: 'Lora', Georgia, Times, serif;
}

.next-steps {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(32,68,124,0.045);
  padding: 18px 18px 18px 22px;
  margin: 34px 0;
}
.next-steps h2 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.next-steps ul {
  margin-left: 1.2em;
  margin-bottom: 2px;
}

/* FAQ =================================== */
.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}
.faq-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(32,68,124,0.045);
  padding: 18px 18px 18px 22px;
  color: #2D3A4D;
}

/* Search/Filter Bar ===================== */
.search-bar {
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-bar label {
  font-family: 'Lora',-serif;
  font-size: 1rem;
  color: #20447C;
}
.search-bar input[type='text'] {
  padding: 5px 14px;
  border-radius: 8px;
  border: 1px solid #D7E6E3;
  font-size: 1rem;
  font-family: 'Lora', serif;
  background: #fff;
  color: #20447C;
}
.filters {
  margin-top: 18px;
  color: #20447C;
  font-size: 1rem;
}

/* Brand List Cards ======================= */
.brand-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 18px;
}
.brand-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 8px 0 rgba(32,68,124,0.041);
    padding: 14px 18px;
    font-size: 1.08rem;
    color: #20447C;
    min-width: 210px;
}
.brand-list strong {
    color: #20447C;
    font-weight: 700;
}

/* Modal & Overlay for Cookie Banner ====== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 2px solid #20447C;
  box-shadow: 0 -3px 21px 0 rgba(32,68,124,0.07);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 18px 22px 24px;
  justify-content: space-between;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.34s cubic-bezier(.75,.07,.29,1);
}
.cookie-banner.hidden {
  opacity: 0; pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-banner-content {
  flex: 1 1 350px;
  color: #20447C;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
.cookie-banner .btn-cookie {
  border-radius: 24px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  padding: 9px 24px;
  border: none;
  color: #fff;
  transition: background 0.19s, color 0.19s;
  box-shadow: 0 1px 8px 0 rgba(32,68,124,0.04);
  cursor: pointer;
}
.btn-cookie.accept {
  background: #20447C;
}
.btn-cookie.accept:hover, .btn-cookie.accept:focus {
  background: #62B3AC;
  color: #fff;
}
.btn-cookie.reject {
  background: #B59775;
}
.btn-cookie.reject:hover, .btn-cookie.reject:focus {
  background: #20447C;
}
.btn-cookie.settings {
  background: #E5ECEB;
  color: #20447C;
  border: 1px solid #62B3AC;
}
.btn-cookie.settings:hover, .btn-cookie.settings:focus {
  background: #62B3AC;
  color: #fff;
}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed; top:0; left:0; right:0; bottom:0;
  background: rgba(32,68,124,0.31);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  padding: 38px 30px 28px 30px;
  min-width: min(98vw, 360px);
  min-height: 260px;
  box-shadow: 0 4px 40px 0 rgba(32,68,124,0.31);
  z-index: 10002;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  animation: modalIn 0.18s cubic-bezier(.81,.15,.31,1);
}
@keyframes modalIn {
  from {transform: translateY(80px) scale(0.93); opacity:0;}
  to {transform: none; opacity:1;}
}
.cookie-modal h3 {
  font-family: 'Playfair Display', 'Lora', serif;
  color: #20447C;
  margin-bottom: 12px;
  font-size: 1.26rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #62B3AC;
  width: 1.2em; height: 1.2em;
}
.cookie-category label {
  font-size: 1rem;
  color: #20447C;
  font-family: 'Lora', serif;
}
.cookie-category .category-desc {
  color: #555F64;
  font-size: 0.98rem;
}
.cookie-category.essential label {
  color: #B59775;
  font-weight: 500;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 8px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px; right: 17px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #20447C;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .modal-close:hover,.cookie-modal .modal-close:focus {
  color: #62B3AC;
}

/* Misc ====================== */
::-webkit-input-placeholder { color: #B1BBC5; }
::-moz-placeholder { color: #B1BBC5; }
:-ms-input-placeholder { color: #B1BBC5; }
::placeholder { color: #B1BBC5; }

input:disabled {
  cursor: not-allowed;
  background: #F5F3EB;
  color: #B1BBC5;
}

/* Accessibility, Focus State  ============= */
a:focus-visible, .btn-primary:focus-visible, .btn-cookie:focus-visible {
  outline: 2px solid #62B3AC;
  outline-offset: 2px;
}

/* Responsive Design ======================= */
@media (max-width: 1100px) {
  .container {
    padding: 0 12px;
  }
  .footer .content-wrapper {
    gap: 22px 22px;
  }
}
@media (max-width: 980px) {
  .hero h1 { font-size: 2rem; }
  .content-wrapper { gap: 18px; }
}
@media (max-width: 870px) {
  .main-nav {
    gap: 16px;
    margin-left: 12px;
  }
  .footer .content-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .section {
    margin-bottom: 42px;
    padding: 28px 8px;
  }
  .container {
    padding: 0 7px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  .hero, .cta {
    padding: 29px 0 22px 0;
    border-radius: 14px;
  }
  .hero h1 { font-size: 1.32rem; }
  .features, .feature-grid, .product-grid, .category-list, .brand-list, .content-grid, .article-list {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card, .card, .product-card, .faq-list li, .brand-list li, .category-list li {
    min-width: 0;
    max-width: 100%;
    padding: 18px 12px;
  }
  .hero .container, .cta .container {
    padding: 0 4px;
  }
  .category-tags {
    gap: 8px;
  }
  .mobile-menu {
    padding-top: 20px;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 14px;
  }
  .header .container, .footer .container {
    padding: 0 2.5vw;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 7px 18px 10px;
  }
  .cookie-banner .cookie-banner-content {
    font-size: 0.99rem;
  }
  .cookie-modal {
    padding: 20px 9px 16px 13px;
    min-width: 88vw;
  }
}

/* Fonts Import ==================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Lora:wght@400;600;700&display=swap');
