/* =====================================
   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 {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: var(--color-secondary);
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

/* =====================================
   CUSTOM PROPERTIES / BRAND COLORS     
======================================*/
:root {
  /* Brand Colors */
  --color-primary: #284057;
  --color-primary-dark: #22344A;
  --color-secondary: #F3F6F9;
  --color-accent: #C99F4A;
  --color-white: #FFFFFF;
  --color-black: #202435;
  --color-grey: #8595A9;
  --color-light: #F9FAFB;
  --color-error: #E94141;
  /* Gradient backgrounds for artistic touches */
  --hero-gradient: linear-gradient(135deg, #C99F4A 8%, #284057 100%);

  /* Fonts */
  --font-display: 'Montserrat', 'Montserrat Alt', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', 'Arial', sans-serif;

  /* Elevation & Effects */
  --shadow-thin: 0 2px 12px 0 rgba(32, 52, 74, 0.06);
  --shadow-card: 0 8px 32px 0 rgba(32, 52, 74, 0.11);
  --radius-s: 10px;
  --radius-m: 20px;

  /* Typography scale */
  --fz-xs: 14px;
  --fz-s: 16px;
  --fz-m: 18px;
  --fz-l: 24px;
  --fz-xl: 32px;
  --fz-xxl: 48px;

  /* Spacing */
  --space-xs: 8px;
  --space-s: 16px;
  --space-m: 24px;
  --space-l: 32px;
  --space-xl: 48px;
}

/* =====================================
   TYPOGRAPHY                          
======================================*/
body {
  font-family: var(--font-body);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: var(--fz-s);
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: var(--space-m);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: var(--fz-xxl);
  margin-bottom: var(--space-m);
  text-shadow: 1px 3px 0 #C99F4A30;
}
h2 {
  font-size: var(--fz-xl);
  margin-bottom: var(--space-s);
  text-shadow: 0px 2px 0 #C99F4A20;
}
h3 {
  font-size: var(--fz-l);
  margin-bottom: var(--space-xs);
}
h4, h5, h6 {
  font-size: var(--fz-m);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}
p, li {
  font-size: var(--fz-s);
  color: var(--color-primary);
  margin-bottom: var(--space-s);
  line-height: 1.7;
}
.subtitle {
  color: var(--color-accent);
  font-size: var(--fz-m);
  font-family: var(--font-display);
  margin-bottom: var(--space-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
}
strong, b {
  color: var(--color-accent);
}

/* Creative/Artistic display font accents */
.hero h1, .hero h2, .cta-primary, .cta-secondary {
  font-family: 'Montserrat', 'Montserrat Alt', Arial, sans-serif;
  letter-spacing: 0.02em;
}

/* =====================================
   LAYOUT & CONTAINERS                 
======================================*/
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-m);
  width: 100%;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.section {
  background: var(--color-white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-thin);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 35px;
    padding: 24px 10px;
    border-radius: var(--radius-s);
  }
}

/* =====================================
   HEADER, NAVIGATION                  
======================================*/
header {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-s) 0;
  box-shadow: 0 4px 16px rgba(40,64,87,0.07);
  position: relative;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-l);
  font-family: var(--font-body);
}
.main-nav a {
  color: var(--color-accent);
  font-weight: 600;
  font-size: var(--fz-s);
  letter-spacing: 0.03em;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.3s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cta-primary {
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: bold;
  font-size: var(--fz-m);
  border-radius: 24px;
  padding: 12px 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, background 0.2s, color 0.2s, transform 0.13s;
  cursor: pointer;
  border: 2px solid transparent;
  display: inline-block;
  letter-spacing: 0.04em;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 40px 0 rgba(32,52,74,0.14);
  border: 2px solid var(--color-accent);
}
.cta-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
  font-weight: bold;
  border-radius: 20px;
  padding: 10px 22px;
  font-size: var(--fz-s);
  margin-top: 6px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 6px 24px 0 rgba(32,52,74,0.1);
}
header img {
  max-height: 44px;
  margin-right: var(--space-xs);
}

/* Hamburger Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  font-size: 2.6rem;
  color: var(--color-accent);
  background: transparent;
  border: none;
  cursor: pointer;
  margin-left: var(--space-m);
  z-index: 120;
  transition: color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--color-white);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: var(--color-primary-dark);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  z-index: 160;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  box-shadow: -8px 0 48px 0 rgba(40,64,87,0.13);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.4rem;
  color: var(--color-accent);
  background: none;
  margin: 24px 26px 6px 0;
  border: none;
  cursor: pointer;
  z-index: 162;
  transition: color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-l);
  margin: 32px 0 0 44px;
  width: 70vw;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: var(--fz-xl);
  line-height: 1.35;
  font-weight: 600;
  padding: 12px 4px;
  transition: color 0.21s, background 0.2s, border-radius 0.16s;
  border-radius: 8px;
  min-width: 70vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-primary-dark);
  background: var(--color-accent);
}

@media (max-width: 1070px) {
  .main-nav {
    gap: var(--space-m);
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: var(--space-xs);
    font-size: var(--fz-xs);
  }
}
@media (max-width: 850px) {
  .cta-primary { font-size: var(--fz-s); }
  header img { max-height: 36px; }
}
@media (max-width: 840px) {
  .main-nav { display: none; }
  .cta-primary { display: none; }
  .mobile-menu-toggle {display: block;}
}

/* =====================================
   HERO SECTION                        
======================================*/
.hero {
  width: 100%;
  background: var(--color-secondary);
  background-image: var(--hero-gradient);
  color: var(--color-primary);
  padding: 64px 0 44px 0;
  margin-bottom: var(--space-xl);
  border-radius: 0 0 var(--radius-m) var(--radius-m);
  box-shadow: 0 12px 48px 0 rgba(201,159,74,0.10);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 16px;
  align-items: flex-start;
  max-width: 750px;
}
.hero h1, .hero .subtitle { color: var(--color-white); text-shadow: 0 2px 10px #22344a64;}
.hero p {
  color: var(--color-white);
  margin-bottom: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--fz-m);
  text-shadow: 0 2px 8px #22344a32;
}
.hero .cta-primary {
  margin-top: var(--space-xs);
  box-shadow: 0 4px 20px 0 rgba(201,159,74,0.40);
}

@media (max-width: 768px) {
  .hero {
    padding: 38px 0 24px 0;
    border-radius: 0 0 var(--radius-s) var(--radius-s);
  }
  .hero .content-wrapper { gap: 10px; }
  .hero h1 { font-size: 2rem; }
}

/* =====================================
   FLEXBOX LAYOUT UTILS (MANDATORY)     
======================================*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  padding: 38px 30px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 285px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
  align-items: center;
  gap: 20px;
  background: var(--color-light);
  color: var(--color-primary);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-thin);
  padding: 20px;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: var(--fz-m);
  line-height: 1.5;
  min-width: 250px;
}
.testimonial-card span {
  display: block;
  color: var(--color-accent);
  font-weight: 700;
  margin-top: 8px;
  font-size: var(--fz-xs);
  letter-spacing: 0.02em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 900px) {
  .card-container, .content-grid, .feature-grid, .project-list, .service-list {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .card, .testimonial-card { min-width: 180px; }
}

/* =====================================
   CREATIVE/ARTISTIC LIST & FEATURE GRID
======================================*/
.feature-grid, .service-list, .project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div, .service-list > div, .project-list > div,
.service-list > li {
  background: var(--color-white);
  box-shadow: var(--shadow-thin);
  border-radius: var(--radius-m);
  padding: 28px 22px;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 345px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  border-left: 8px solid var(--color-accent);
  position: relative;
}
.feature-grid img, .service-list img, .project-list img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 11px;
  background: var(--color-accent) linear-gradient(135deg, #fff4, #C99F4A50);
  box-shadow: 0 2px 14px #c99f4a28;
  padding: 6px;
}

.service-list ul, .service-list li {
  gap: 10px;
  display: flex;
  align-items: flex-start;
}
.service-list li a {
  font-weight: 600;
  color: var(--color-primary);
  margin-right: 8px;
  transition: color 0.2s;
}
.service-list li a:hover, .service-list li a:focus {
  color: var(--color-accent);
}

/* =====================================
   ACCORDION (FAQ)                     
======================================*/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--color-light);
  border-left: 6px solid var(--color-accent);
  border-radius: var(--radius-m);
  box-shadow: 0 2px 8px #c99f4a14;
  padding: 18px 18px 8px 28px;
}
.faq-item h3 {
  margin-bottom: 8px;
  font-size: var(--fz-m);
  color: var(--color-primary-dark);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.faq-item p {
  color: var(--color-primary);
  margin-bottom: 0;
}

/* =====================================
   STARS RATING                        
======================================*/
.stars-rating {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fz-s);
  color: var(--color-primary-dark);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* =====================================
   CONTACT DETAILS                     
======================================*/
.contact-details {
  background: var(--color-light);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-thin);
  padding: 16px 28px 16px 18px;
  margin-bottom: 18px;
}
.contact-details a {
  color: var(--color-accent);
  font-weight: 600;
  transition: color 0.15s;
}
.contact-details a:hover, .contact-details a:focus {
  color: var(--color-primary-dark);
}

/* =====================================
   FOOTER                              
======================================*/
footer {
  width: 100%;
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 46px 0 18px 0;
  border-top-left-radius: var(--radius-m);
  border-top-right-radius: var(--radius-m);
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-m);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
}
.footer-nav a {
  color: var(--color-accent);
  font-weight: 600;
  font-size: var(--fz-xs);
  letter-spacing: 0.04em;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-white);
}
.footer-contact p, .footer-contact a {
  font-size: var(--fz-xs);
  color: var(--color-white);
  font-weight: 400;
  opacity: 0.87;
  letter-spacing: 0.01em;
}
footer span {
  color: #bbb;
  font-size: 14px;
  margin-top: 16px;
  letter-spacing: 0.02em;
}
footer img {
  margin-bottom: var(--space-xs);
  max-height: 32px;
}

@media (max-width: 700px) {
  .footer-nav { gap: var(--space-s); }
  footer .content-wrapper {gap: var(--space-xs);}
}

/* =====================================
   BUTTONS, INTERACTIVES               
======================================*/
button, .btn {
  font-family: var(--font-display);
  border-radius: 24px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: var(--fz-s);
  cursor: pointer;
  outline: none;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  box-shadow: 0 2px 12px 0 rgba(40, 64, 87, 0.06);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.11s;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: var(--color-primary-dark);
  color: var(--color-accent);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px 0 rgba(32,52,74,0.11);
}

/* =====================================
   ARTISTIC/CREATIVE 
   Decorative Splashes (minimal, only for accents) 
======================================*/
.section::before {
  content: "";
  display: block;
  position: absolute;
  top: -42px; left: -30px;
  width: 58px; height: 58px;
  background: var(--color-accent);
  opacity: 0.09;
  border-radius: 41% 49% 51% 49% / 50% 51% 49% 49%;
  z-index: 0;
  filter: blur(2px);
  pointer-events: none;
}
.section h2 {
  position: relative;
  z-index: 2;
}

.section .content-wrapper {
  position: relative;
  z-index: 2;
}

@media (max-width: 700px) {
  .section::before {
    display: none;
  }
}

/* =====================================
   RESPONSIVE LAYOUT                   
======================================*/
@media (max-width: 1020px) {
  .container {
    padding: 0 8px;
  }
  .card, .feature-grid > div, .service-list > div, .project-list > div {
    min-width: 160px;
    padding: 20px 10px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .feature-grid, .service-list, .project-list {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch;
  }
  .contact-details, .testimonial-card, .card, .feature-grid > div, .service-list > div, .project-list > div {
    min-width: 0;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
}

@media (max-width: 490px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.15rem; }
  .card, .card-content, .testimonial-card, .contact-details {
    padding: 10px;
  }
  .cta-primary, .cta-secondary, button {
    padding: 8px 16px;
    font-size: var(--fz-xs);
  }
}

/* =====================================
   MICRO-ANIMATIONS & TRANSITIONS      
======================================*/
.hero .cta-primary {
  animation: pulseAccent 2.2s infinite cubic-bezier(0.4,0,0.2,1);
}
@keyframes pulseAccent {
  0%   {box-shadow: 0 4px 14px 0 #C99F4A55;}
  60%  {box-shadow: 0 8px 38px 0 #C99F4Aaa;}
  100% {box-shadow: 0 4px 14px 0 #C99F4A44;}
}

.testimonial-card {
  transition: box-shadow 0.18s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px #C99F4A33;
  transform: scale(1.027) translateY(-3px);
}

input, textarea, select {
  border-radius: 8px;
  border: 1.5px solid #e5e7eb;
  padding: 12px 14px;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: var(--fz-s);
  margin-bottom: var(--space-s);
  width: 100%;
  transition: border 0.17s, box-shadow 0.1s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 4px #C99F4A44;
}


/* =====================================
   COOKIE BANNER                       
======================================*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-primary-dark);
  color: var(--color-white);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  box-shadow: 0 -2px 16px 0 rgba(40,64,87,0.18);
  font-size: var(--fz-s);
  gap: 24px;
  animation: slideInBottom 0.55s cubic-bezier(0.4,0,0.2,1);
}
@keyframes slideInBottom {
  0%   { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  margin-left: 12px;
  border-radius: 18px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: bold;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  font-size: var(--fz-s);
  transition: box-shadow 0.16s, background 0.2s, color 0.18s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-white);
  color: var(--color-accent);
  box-shadow: 0 4px 16px #C99F4A22;
}
.cookie-banner .cookie-settings {
  background: var(--color-light);
  color: var(--color-primary);
  font-weight: normal;
  margin-left: 18px;
  border: 1px solid #bbb;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed; left:0; top:0;
  width:100vw; height:100vh;
  background: rgba(40,64,87,0.34);
  z-index: 501;
  display: flex; align-items: center; justify-content: center;
  animation: fadeInOverlay 0.3s;
}
@keyframes fadeInOverlay {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: var(--radius-m);
  min-width: 320px; max-width: 480px;
  padding: 32px 26px 24px 32px;
  box-shadow: 0 16px 64px #22344a33;
  position: relative;
  animation: fadeInModal 0.4s cubic-bezier(.47,1.64,.41,.8);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes fadeInModal {
  0%   {transform: scale(0.95) translateY(30px);opacity: 0;}
  100% {transform: scale(1)    translateY(0);   opacity: 1;}
}
.cookie-modal h2 {
  font-size: var(--fz-m);
  color: var(--color-accent);
  margin-bottom: 2px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 6px;
}
.cookie-modal .cookie-type {
  font-weight: 600;
  margin-right: 5px;
  color: var(--color-primary-dark);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  color: var(--color-accent);
  border: none;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 3;
  transition: color 0.13s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: var(--color-primary-dark);
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-buttons button {
  border-radius: 13px;
  font-size: var(--fz-s);
  padding: 8px 20px;
  font-weight: 600;
}


@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    font-size: var(--fz-xs);
    padding: 12px 6px;
  }
  .cookie-modal {
    min-width: 0; max-width: 90vw; padding: 18px 6vw 20px 6vw;
  }
}

/* Accessibility: focus style */
:focus {
  outline: 2px dotted var(--color-accent);
  outline-offset: 3px;
}

/* Miscellaneous */
::-webkit-scrollbar {
  width: 8px;background: #dadada00;
}
::-webkit-scrollbar-thumb {
  background: #C99F4A42; border-radius: 6px;
}

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

/* ======================
   END OF STYLE.CSS
====================== */
