/* ===== Radiance Shift - Creative Artistic Style CSS ===== */
/* === 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,
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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #f6f7fa;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
table { border-collapse: collapse; border-spacing: 0; }
button { background: none; border: none; outline: none; cursor: pointer; font: inherit; }

/* ====== Variables ====== */
:root {
  --color-primary: #26314F;
  --color-secondary: #FFFFFF;
  --color-accent: #F9C846;
  --color-dark: #1b2137;
  --color-text: #22223b;
  --color-bg: #fcfcfe;
  --color-grey: #E8E8EC;
  --color-error: #E96060;
  --color-success: #4BCB8A;
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ====== Typography ====== */
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 16px;
}
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--color-primary);
  letter-spacing: -1px;
  text-shadow: 2px 6px 12px rgba(41, 49, 79, 0.08);
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-primary);
}
p, li, dd, dt {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
}
strong { font-weight: bold; color: var(--color-dark); }
.tagline {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

/* Artistic Accent Typography */
h1, h2, .cta-btn, .mobile-menu-toggle {
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ====== Layout & Containers ====== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 28px rgba(41,49,79,0.08), 0 2px 6px rgba(249,200,70,0.04);
  position: relative;
}

/* Extra artistic background accents for hero section */
section:first-of-type {
  background: linear-gradient(120deg,#FFFBEA 59%, #F9C846 100%);
  border-radius: 0 0 56px 56px;
  box-shadow: 0 4px 32px 0 rgba(249,200,70,0.120), 0 1.5px 6px #26314F22;
  margin-bottom: 64px;
}

/* ====== Artistic & Vibrant Accents ====== */
.section:before {
  content: '';
  display: block;
  position: absolute;
  top: 18px; left: 30px;
  width: 46px; height: 46px;
  background: var(--color-accent);
  opacity: 0.09;
  border-radius: 60% 40% 60% 40%/50% 70% 30% 70%;
  z-index: 0;
  pointer-events: none;
}
.section:nth-of-type(2):after {
  content: '';
  position: absolute;
  bottom: 24px; right: 16px;
  width: 32px; height: 32px;
  background: var(--color-primary);
  opacity: 0.07;
  border-radius: 40% 60% 30% 70%/80% 20% 70% 30%;
  z-index: 0;
}

/* ====== Flex Patterns per requirements ====== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px 0 rgba(38,49,79,0.05);
  padding: 32px 20px;
  flex: 1 1 240px;
  min-width: 220px;
  transition: box-shadow 0.25s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(249,200,70,0.20), 0 4px 18px 0 rgba(38,49,79,0.12);
  transform: translateY(-4px) scale(1.03) rotate(-0.8deg);
  z-index: 3;
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 14px rgba(38,49,79,0.05), 0 1.5px 4px #f9c8461a;
  border-left: 6px solid var(--color-accent);
  position: relative;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 28px 0 rgba(249,200,70,0.13);
  border-left: 6px solid var(--color-primary);
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #181d2f;
  font-family: var(--font-body);
}
.testimonial-card strong {
  font-size: 0.98rem;
  color: #3d3d5c;
  letter-spacing: 0.02em;
  font-weight: 600;
  margin-top: 4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(38,49,79,0.09);
  padding: 20px 16px;
}

/* === Features Grid Customization === */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.features-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 220px;
  min-width: 200px;
  background: #FFFBEA;
  border-radius: 16px;
  padding: 22px 18px 19px 18px;
  box-shadow: 0 2px 9px 0 rgba(41,49,79,0.08);
  border: 2px solid #FFF2C4;
  transition: border-color 0.18s;
  position: relative;
  overflow: hidden;
}
.features-grid > div:hover {
  border-color: var(--color-accent);
  box-shadow: 0 10px 24px 0 rgba(249,200,70,0.12);
}
.features-grid img {
  margin-bottom: 12px;
  width: 44px;
  height: 44px;
}
.features-grid h3 {
  color: var(--color-primary);
  margin-bottom: 8px;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}
.features-grid p {
  font-size: 0.97rem;
  color: #34344a;
}

/* ===== Button Styles ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 30px;
  box-shadow: 0 4px 18px 0 rgba(249,200,70,0.18);
  border: 2px solid var(--color-primary);
  transition: background 0.24s, color 0.18s, box-shadow 0.18s, border-color 0.18s, transform 0.19s;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 16px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 8px 32px 0 rgba(38,49,79,0.12);
  border-color: var(--color-accent);
  transform: scale(1.045) rotate(-1deg);
  text-decoration: none;
}

/* ====== Navigation Bar ====== */
header {
  background: #fff;
  box-shadow: 0 4px 20px rgba(38,49,79,0.06);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
  position: relative;
}
header nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.03rem;
  transition: color 0.15s;
  padding: 7px 8px 7px 8px;
  border-radius: 12px;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--color-accent);
  color: var(--color-dark);
}
header img {
  height: 44px;
  width: auto;
  margin-right: 10px;
}

/* ====== Mobile Menu Hamburger Button ====== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 44px;
  padding: 4px 16px 0 16px;
  margin-left: 12px;
  border: 2px solid var(--color-primary);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 2px 8px #26314F33;
}

/* ====== Mobile Menu ====== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,49,79,0.965);
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.45,1.55,.38,1), opacity 0.34s;
  z-index: 1220;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin-top: 18px;
  margin-left: 18px;
  font-size: 2.2rem;
  color: var(--color-accent);
  background: var(--color-primary);
  padding: 2px 16px 4px 16px;
  border-radius: 42px;
  border: 2px solid var(--color-accent);
  transition: background 0.18s, color 0.14s, box-shadow 0.16s;
  align-self: flex-start;
  z-index: 5;
}
.mobile-menu-close:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 2px 10px #F9C84633;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  margin-left: 30px;
  width: 80vw;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.4rem;
  background: none;
  padding: 12px 0;
  border-bottom: 2px solid #f2f2f688;
  transition: color 0.15s, background 0.16s;
  border-radius: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: none;
}

/* Hide regular nav/cta on mobile */
@media (max-width: 990px) {
  header nav, header .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* Show regular nav on desktop */
@media (min-width: 991px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===== Footer ===== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 36px 0 0 0;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  box-shadow: 0 -8px 32px rgba(38,49,79,0.09);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #F9C84633;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
footer nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 4px 0;
  transition: color 0.14s;
}
footer nav a:hover {
  color: #fff;
  text-decoration: underline;
}
footer img {
  height: 40px;
  width: auto;
}
footer div p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 3px;
  margin-top: 2px;
}
footer p img {
  height: 18px;
  width: 18px;
  margin-right: 3px;
}
footer > .container > div:last-child {
  min-width: 240px;
}

/* ===== Tables ===== */
table {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 8px #26314F10;
  margin-bottom: 20px;
}
th, td {
  text-align: left;
  padding: 11px 15px;
}
th {
  background: var(--color-primary);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.03rem;
  letter-spacing: 0.01em;
}
td {
  background: #fff;
  color: var(--color-primary);
  font-size: 0.98rem;
  border-bottom: 1px solid #d7d7e9;
}
tr:last-child td {
  border-bottom: none;
}

/* ====== List and Definition Layouts ====== */
ul, li {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 8px;
  padding-left: 0;
  list-style: none;
}
ul>li:before {
  content: '\2022';
  color: var(--color-accent);
  font-weight: bold;
  display: inline-block;
  width: 1.1em;
  margin-left: -1.1em;
  font-size: 1.3em;
}
ol {
  font-family: var(--font-body);
  margin-left: 1.2em;
  margin-bottom: 16px;
}
ol>li {
  counter-increment: li;
}
ol>li:before {
  content: counter(li) '.';
  color: var(--color-accent);
  font-weight: 700;
  margin-right: 9px;
}

dl {
  margin-bottom: 20px;
}
dt {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
  margin-top: 18px;
}
dd {
  margin-bottom: 12px;
}

/* ====== Artistic Timeline Graphic ====== */
.timeline-graphic {
  display: flex;
  align-items: center;
  margin: 34px 0 16px 0;
}

/* ===== Cookie Consent Banner ===== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe1;
  color: var(--color-primary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 32px 16px 24px;
  box-shadow: 0 -2px 18px #26314F15;
  z-index: 2001;
  font-family: var(--font-body);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  animation: cookie-slide-in 0.7s cubic-bezier(.44,1.5,.47,1);
  font-size: 1rem;
  width: 100vw;
  max-width: 100vw;
}
@keyframes cookie-slide-in {
  from {transform: translateY(110%); opacity: 0.3; }
  to {transform: translateY(0); opacity: 1; }
}
.cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn {
  padding: 9px 22px;
  border-radius: 19px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid var(--color-primary);
  background: var(--color-accent);
  color: var(--color-primary);
  transition: background .19s, color .15s, box-shadow 0.16s, border-color 0.17s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--color-primary);
  color: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 4px 14px #F9C84633;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-error);
  border-color: var(--color-error);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--color-error);
  color: #fff;
  border-color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-accent);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(38, 49, 79, 0.78);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2002;
  transition: opacity 0.32s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  padding: 32px 18px 28px 18px;
  border-radius: 32px;
  min-width: 320px;
  max-width: 92vw;
  max-height: 89vh;
  overflow-y: auto;
  box-shadow: 0 8px 38px #26314F33;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal-content h3 {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.cookie-modal-category label {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-primary);
  cursor: pointer;
}
.cookie-modal-category input[type=checkbox] {
  width: 22px; height: 22px;
  accent-color: var(--color-accent);
}
.cookie-modal-essential {
  color: #333;
  font-size: 0.95rem;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 6px 18px 0 18px;
  border-radius: 22px;
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  border: 2px solid var(--color-primary);
  transition: background 0.12s, color 0.14s;
}
.cookie-modal-close:hover,.cookie-modal-close:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}

/* ===== Responsive Layouts ===== */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
}
@media (max-width: 991px) {
  .container { max-width: 98vw; }
  .features-grid > div { min-width: 180px; }
}
@media (max-width: 820px) {
  .features-grid {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
    max-width: 98vw;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 4px;
  }
  .content-wrapper {
    gap: 13px;
    margin-bottom: 13px;
  }
  h1, .h1 { font-size: 1.4rem; margin-bottom: 12px; }
  h2, .h2 { font-size: 1.13rem; margin-bottom: 9px; }
  h3, .h3 { font-size: 1rem; } 
  .features-grid { flex-direction: column; gap: 12px; }
  .features-grid > div, .card {
    min-width: 0; width: 100%;
    box-sizing: border-box;
  }
  .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    padding: 15px;
    margin-bottom: 14px;
    border-radius: 13px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 11px;
    padding: 13px 12px 12px 7px;
    font-size: 0.95rem;
  }
  .cookie-btn-group {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-modal-content {
    min-width: 90vw;
    padding: 24px 8px 19px 8px;
  }
  footer .container {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  footer, header {
    border-radius: 0;
  }
  footer img {
    height: 33px;
  }
}

@media (max-width: 510px) {
  .section { border-radius: 0; }
  .features-grid > div { border-radius: 9px; }
  .testimonial-card, .card { border-radius: 9px; }
  .cookie-modal-content { border-radius: 16px; }
  .cookie-consent-banner { border-radius: 0; }
}

/* ===== Artistic/Unique Elements (Brush Underline, Splashes) ===== */
h1, h2 {
  position: relative;
  z-index: 2;
}
h1:after, h2:after {
  content: '';
  display: block;
  position: absolute;
  left: 0; bottom: -6px;
  width: 48px;
  height: 14px;
  background: url('../assets/underline-brush.svg') repeat-x;
  opacity: 0.17;
  z-index: 1;
  pointer-events: none;
}
h2:after { width: 36px; height: 9px; }

/* Remove artistic underline where appropriate */
footer h1:after, footer h2:after,
header h1:after, header h2:after { display: none; }

/* ===== Forms & Inputs (if any, for future) ===== */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  border: 1.4px solid var(--color-grey);
  background: #fff;
  padding: 11px 13px;
  border-radius: 14px;
  margin-bottom: 8px;
  transition: border-color 0.19s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  outline: none;
}

::-webkit-scrollbar {
  width: 7px; background: #f2efea;
}
::-webkit-scrollbar-thumb {
  background: #F9C846aa; border-radius: 13px;
}

/* ========== Helper Spacing ========== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }

/* ========== Accessibility, Focus State, Interactions ========== */
a, button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn, .cookie-modal-close {
  outline: none;
  transition: box-shadow 0.14s, border-color 0.14s;
}
a:focus-visible, button:focus-visible, .cta-btn:focus-visible {
  box-shadow: 0 0 0 3px #F9C84644;
}

/* ===== Hide visually but keep accessible ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); border: 0;
}

/* ========== Animations for Micro Interactions ========== */
.cta-btn, .cookie-btn, .mobile-menu-toggle, .card, .testimonial-card, .features-grid > div {
  transition: transform 0.15s cubic-bezier(.44,1.5,.47,1), box-shadow 0.16s, border-color .19s, background 0.17s;
}
.cta-btn:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(0.97) rotate(-1deg);
  box-shadow: none;
}

.card:active, .testimonial-card:active, .features-grid > div:active {
  transform: scale(0.97) rotate(-1.3deg);
}

/***********************
 * Artistic Fonts Loading (NOTE: Must be supplied by HTML/<link>)
 ***********************/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Open+Sans:wght@400;600&display=swap');
