/* 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 {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1A2836;
  background: #FCFCFD;
  min-height: 100vh;
}

/* BRAND COLORS AS CSS VARIABLES */
:root {
  --color-primary: #244A68;
  --color-secondary: #1A2836;
  --color-accent: #F1C35E;
  --color-light: #FCFCFD;
  --color-grey: #E3E9EF;
  --color-text: #1A2836;
  --color-shadow: rgba(36, 74, 104, 0.07);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}
@media (min-width: 600px) {
  h1 { font-size: 3rem; }
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  font-weight: 600;
}

h4, h5, h6 {
  font-size: 1rem;
  margin-bottom:10px;
}

p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--color-secondary);
}
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.18s;
}
a:hover,
a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}

ul, ol {
  padding-left: 1.3em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: bold;
}

/* STRUCTURED CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

/* FLEXBOX LAYOUTS (MANDATORY ALIGNMENT RULES) */
.content-wrapper,
.features-grid,
.services-list,
.team-list,
.values-list,
.testimonials-list,
.property-search,
.process-steps,
.thankyou-message,
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .features-grid,
  .services-list,
  .team-list,
  .testimonials-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
    align-items: stretch;
  }
  
  .property-search {
    flex-direction: row;
    gap: 32px;
    justify-content: space-between;
  }
  .contact-info {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
  }
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  
}
.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: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* GEOMETRIC STRUCTURED EFFECTS (CARDS, SHAPES) */
.feature-item,
.service-item,
.team-member,
.values-list li,
.thankyou-message,
.property-highlights-list,
.search-filter {
  background: var(--color-light);
  border-radius: 14px;
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 28px 20px;
  min-width: 220px;
  min-height: 180px;
  max-width: 320px;
  border: 2.5px solid var(--color-grey);
  transition: box-shadow 0.22s, border-color 0.19s;
  margin-bottom: 20px;
  position: relative;
}

.feature-item:hover,
.service-item:hover,
.team-member:hover,
.search-filter:hover,
.property-highlights-list:hover {
  box-shadow: 0 6px 20px rgba(36, 74, 104, 0.18);
  border-color: var(--color-primary);
}

@media (max-width: 767px) {
  .feature-item,
  .service-item {
    min-width: auto;
    max-width: 100%;
  }
}

.team-member {
  text-align: left;
  align-items: flex-start;
  gap: 10px;
}
.team-member h3 {
  margin-bottom: 4px;
}
.team-member a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 8px;
  border-bottom: 2px solid var(--color-accent);
  transition: border-bottom 0.16s;
}
.team-member a:hover {
  border-bottom: 2px solid var(--color-primary);
  color: var(--color-accent);
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(120deg, var(--color-light) 60%, #E3E9EF 100%);
  padding: 64px 0 40px 0;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  justify-content:center;
}
.hero-section h1 {
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero-section p {
  color: var(--color-secondary);
  font-size: 1.13rem;
  margin-bottom: 28px;
}

@media(min-width:768px){
  .hero-section {
    padding-top: 80px;
    padding-bottom: 64px;
  }
  .hero-section h1 {
    font-size: 2.8rem;
  }
}

/* CALL TO ACTION BUTTONS */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background 0.19s, color 0.16s, box-shadow 0.2s, transform 0.18s;
  cursor: pointer;
  gap: 8px;
  margin-top: 10px;
}
.cta-button:hover,
.cta-button:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
  transform: translateY(-2px) scale(1.033);
  box-shadow: 0 5px 16px rgba(241,195,94,0.21);
}

/* NAVIGATION BAR */
header {
  background: #fff;
  border-bottom: 2.5px solid var(--color-grey);
  z-index: 50;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  padding: 6px 8px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.16s, color 0.16s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}
header img {
  height: 48px;
  width: auto;
}

.header .cta-button {
  margin-left: auto;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: inline-flex;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-primary);
  padding: 8px 12px;
  cursor: pointer;
  z-index: 125;
  transition: color 0.17s;
}
.mobile-menu-toggle:hover {
  color: var(--color-accent);
}
@media (min-width:992px) {
  .mobile-menu-toggle {
    display:none;
  }
}

@media (max-width: 991px) {
  .main-nav,
  header .cta-button {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(36, 74, 104, 0.98);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.59,1.38,.39,.97);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 30px;
  padding-left: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  align-self: flex-end;
  padding: 20px 24px 4px 4px;
  cursor: pointer;
  margin-bottom: 6px;
  z-index: 350;
  transition: color 0.13s;
}
.mobile-menu-close:hover{
  color:var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 26px 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 13px 3px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  width: 90%;
  display: block;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}
@media(min-width:992px) {
  .mobile-menu {
    display:none !important;
  }
}

/* FOOTER STRUCTURED */
footer {
  background: var(--color-primary);
  color: #fff;
  margin-top: 40px;
  padding-top: 48px;
  padding-bottom: 12px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}
.footer-brand img {
  height: 46px;
  width: auto;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 7px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
}
.footer-menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.footer-menu a {
  color: #fff;
  border-bottom: 2px solid transparent;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: border-color 0.18s, color 0.16s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  border-bottom: 2px solid var(--color-accent);
  color: var(--color-accent);
}
.social-media-links {
  display: flex;
  gap: 18px;
}
.social-media-links a {
  display: flex;
  align-items: center;
}
.social-media-links img {
  width: 27px;
  height: 27px;
  filter: brightness(0) invert(1);
  transition: filter 0.18s;
}
.social-media-links a:hover img {
  filter: brightness(1.5) sepia(48%) hue-rotate(300deg) saturate(250%) contrast(1.3);
}
@media (max-width: 767px) {
  footer .container, .footer-brand {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-menu { gap: 12px; }
}

/* CARDS & MICRO-SHADOWS */
.testimonial-card {
  background: #fff;
  border-radius: 14px 14px 14px 0px;
  box-shadow: 0 2px 8px var(--color-shadow);
  border-left: 6px solid var(--color-accent);
  padding: 20px 20px 16px 28px;
  margin-bottom: 20px;
  color: var(--color-text);
  min-width: 260px;
  max-width: 480px;
  transition: box-shadow 0.2s, border-color 0.15s;
  align-items: flex-start;
}
.testimonial-card.highlight {
  border-left: 8px solid var(--color-primary);
  background: #F1F4F8;
}
.testimonial-card p {
  font-size: 1.13rem;
  margin-bottom: 8px;
  color: var(--color-text);
  line-height: 1.45;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 6px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(36,74,104,0.15);
  border-left-color: var(--color-accent);
}

/* LEGAL TEXT */
.legal-text {
  background: #fff;
  border-radius: 10px;
  border: 2.5px solid var(--color-grey);
  padding: 24px 20px;
  margin-bottom: 18px;
  color: var(--color-text);
  font-size: 1rem;
  box-shadow: 0 2px 8px var(--color-shadow);
}
.legal-text a {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-accent);
  font-weight: 600;
  transition: border-color 0.16s, color 0.16s;
}
.legal-text a:hover {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-primary);
}

/* VALUES & PRINCIPLES */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.values-list ul {
  list-style-type: square;
  margin-bottom: 0px;
  padding-left: 1.6em;
}
.values-list li {
  background: #fff;
  border-radius: 9px;
  border: 1.8px solid var(--color-grey);
  padding: 8px 12px 8px 18px;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

/* PROCESS STEPS */
.process-steps ol {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.process-steps li {
  position: relative;
  padding-left: 36px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-secondary);
}
.process-steps li:before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero) ". ";
  position: absolute;
  left: 0;
  top: -3px;
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 700;
  font-family: inherit;
  line-height: 1.2;
}

/* IMMOBILIEN SUCHE */
.property-search > * {
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 480px;
  margin-bottom: 20px;
}
.property-highlights-list {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px var(--color-shadow);
  border: 2.5px solid var(--color-grey);
  padding: 24px 20px;
  min-width: 220px;
  max-width: 480px;
  transition: box-shadow 0.2s;
}
.property-highlights-list h3 {
  margin-bottom: 12px;
}
.property-highlights-list ul {
  margin-bottom: 16px;
}

.search-filter {
  margin-bottom: 16px;
}

/* CONTACT INFORMATION */
.contact-details {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 8px var(--color-shadow);
  border: 2.5px solid var(--color-grey);
  padding: 20px 16px;
  min-width: 220px;
  max-width: 380px;
  color: var(--color-primary);
  font-weight: 500;
  gap: 6px;
  display: flex;
  flex-direction: column;
}
.contact-details img {
  width: 22px;
  height: 22px;
  margin-right: 6px;
}
.contact-details a {
  color: var(--color-primary);
  font-weight: 700;
  transition: color 0.16s;
}
.contact-details a:hover {
  color: var(--color-accent);
}
.contact-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  align-items: flex-start;
}

/* GEOMETRIC SECTIONS (for strong CTAs) */
.cta-section {
  background: linear-gradient(108deg, var(--color-accent) 80%, #fff 100%);
  padding: 44px 0;
  margin-top: 28px;
  border-radius: 16px 0 0 0;
  box-shadow: 0 2px 12px var(--color-shadow);
}
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.7);
  border-radius: 13px;
  padding: 24px 18px;
  box-shadow: 0 2px 8px rgba(241,195,94,0.065);
}
.cta h2 {
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 1.7rem;
}

/* THANK YOU PAGE MESSAGE */
.thankyou-message {
  background: #fff;
  border-radius: 10px;
  border: 2.5px solid var(--color-grey);
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 28px 20px;
  font-size: 1.13rem;
  color: var(--color-primary);
  gap: 22px;
  align-items: flex-start;
}
.thankyou-message ul {
  margin-bottom: 12px;
}

/* SPACING FOR ALL SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
/* For first section or hero, reduce top padding */
main section:first-child, .hero-section {
  padding-top: 16px;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .section, section {
    padding: 32px 0 0 0;
  }
  .cta-section {
    padding: 36px 0;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 10px;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
}

/* IMAGES IN CARDS/FEATURES */
.feature-item img,
.service-item img,
.team-member img {
  width: 47px;
  height: 47px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--color-grey);
  object-fit: contain;
  box-shadow: 0 0 0 3px var(--color-light);
}

/* ANIMATIONS/MICRO-INTERACTIONS FOR CARDS */
.card, .feature-item, .service-item, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.19s;
}
.card:hover, .feature-item:hover, .service-item:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.018);
  box-shadow: 0 8px 28px rgba(36, 74, 104, 0.18);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  width: 100%;
  background: #fff;
  border-top: 2.5px solid var(--color-grey);
  box-shadow: 0 -2px 16px rgba(36,74,104,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 16px 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.33s, opacity 0.25s;
  opacity: 1;
  transform: none;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner__message {
  flex:1 1 300px;
  color: var(--color-secondary);
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  padding: 9px 20px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.16s, color 0.14s, transform 0.13s;
  margin-left: 0;
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn.accept:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: scale(1.04);
}
.cookie-btn.reject {
  background: #eee;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.cookie-btn.reject:hover {
  background: #fff2df;
  color: var(--color-accent);
}
.cookie-btn.settings {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btn.settings:hover {
  background: var(--color-primary);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 10px 14px 10px;
  }
  .cookie-banner__actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .cookie-btn {
    width: 100%;
    margin: 0;
  }
}

/* COOKIE BANNER MODAL */
.cookie-modal-overlay {
  display: none;
  z-index: 600;
  position: fixed;
  inset: 0;
  background: rgba(36, 74, 104, 0.82);
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px 18px 10px 10px;
  box-shadow: 0 10px 36px rgba(36,74,104,0.18);
  max-width: 380px;
  width: 96vw;
  padding: 32px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin-bottom: 0;
}
.cookie-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
}
.cookie-category label {
  font-size: 1rem;
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-actions {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 10px;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover {
  color: var(--color-accent);
}

/* VISUAL HIERARCHY - HEADINGS */
h1, .headline-xl { font-size: 2.25rem; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; }
h2, .headline-lg { font-size: 1.5rem; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; }
h3, .headline-md { font-size: 1.13rem; font-weight: 600; }

@media (min-width: 600px) {
  h1, .headline-xl { font-size: 3rem; }
  h2, .headline-lg { font-size: 2rem; }
}

/* MODERN, ANGULAR FONTS FOR GEOMETRY */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

body, html {
  min-height: 100vh;
  background: var(--color-light);
}

/* MISCELLANEOUS GEOMETRICS */
.feature-item,
.service-item {
  clip-path: polygon(0% 0%, 96% 0%, 100% 9%, 100% 100%, 4% 100%, 0 92%);
}
.testimonial-card {
  clip-path: polygon(0 0, 98% 0, 100% 7%, 100% 100%, 2% 100%, 0 93%);
}

/* ENSURE NO OVERLAP */
main > section,
.container > * {
  margin-bottom: 24px;
}

/* IMAGE FLUID */
img {
  max-width: 100%;
  height: auto;
}

/* ::-webkit-scrollbar for subtle geometric scroll effect */
::-webkit-scrollbar {
  width: 7px;
  background: var(--color-grey);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 10px;
}

/* END OF CSS FILE */
