/* =======================
   CSS RESET & BASE STYLES
   ======================= */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #141c24;
  color: #F6FAFF;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
:focus {
  outline: 2px solid #FBDC4D;
  outline-offset: 2px;
}

/* ===============================
   BRAND & COLOR CUSTOM PROPERTIES
   =============================== */
:root {
  --primary: #233D4D;
  --secondary: #546A7B;
  --accent: #FBDC4D;
  --text-base: #F6FAFF;
  --surface: #202B38;
  --surface-card: #263342;
  --surface-light: #283C4F;
  --neon-blue: #38C9FF;
  --neon-pink: #FF39D0;
  --shadow: rgba(27, 168, 255, 0.11) 0px 2px 16px 0px;
  --radius: 18px;
  --radius-sm: 10px;
  --transition: 0.23s cubic-bezier(0.76,0.01,0.32,1);
  --font-display: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ===========================
   TYPOGRAPHY & HEADINGS
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  color: #F6FAFF;
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 500;
}
p, li, address {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #cce6ff;
}
strong {
  color: var(--accent);
  font-weight: 700;
}

/* =====================
   LAYOUT STRUCTURE
   ===================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  background: linear-gradient(90deg, var(--primary) 65%, var(--secondary) 95%);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding: 40px 0 24px 0;
  gap: 24px;
}
.hero h1 {
  color: var(--accent);
  text-shadow: 0 2px 24px var(--neon-blue);
}
.hero p {
  font-size: 1.18rem;
  color: #f0f7fa;
  max-width:730px;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  background: var(--primary);
  box-shadow: 0 2px 16px rgba(54, 203, 241, 0.09);
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 99;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 24px 0 8px 0;
}
header nav img {
  height: 44px;
  width: auto;
  margin-right: 8px;
  filter: drop-shadow(0 0 10px #00ffe7a0);
}
header nav a {
  font-family: var(--font-display);
  padding: 8px 16px;
  color: #f0f4fa;
  font-size: 1rem;
  position: relative;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.19s, color 0.19s;
}
header nav a:hover,
header nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
.cta-btn {
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 0 var(--neon-blue),0 4px 16px rgba(30,200,255,0.12);
  margin-left: 24px;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
  display: inline-block;
  border: none;
  text-shadow: 0 1px 5px #fef3a5da;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--neon-blue);
  color: #14202c;
  box-shadow: 0 0 10px 0 var(--accent), 0 4px 36px var(--neon-blue);
}
header .cta-btn {
  margin-left: auto;
}

/* ====== MOBILE MENU BUTTON ====== */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  font-size: 2.1rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px var(--neon-blue);
  margin-left: 16px;
  transition: background 0.17s;
  z-index: 109;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--neon-blue);
  color: #fff;
}

/* ====== MOBILE MENU OVERLAY ====== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(22,34,50,0.99);
  box-shadow: 0 0 72px var(--neon-blue);
  z-index: 1200;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity var(--transition), transform var(--transition), visibility 0s 0.23s;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  transition: opacity var(--transition), transform var(--transition), visibility 0s;
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--neon-blue);
  color: #14202c;
  font-size: 2.5rem;
  margin: 24px 28px 8px 0;
  padding: 4px 14px;
  border-radius: 36px;
  box-shadow: 0 0 30px 0 var(--neon-pink);
  transition: background 0.2s;
  z-index: 1203;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--neon-pink);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 44px 0 44px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid #2d4258;
  transition: color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--neon-blue);
}

/* Hide desktop nav on small screens */
@media (max-width: 990px) {
  header nav {
    display: none;
  }
  header .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .cta-btn {
    margin-left: 0;
  }
}

@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===========
   FOOTER
   =========== */
footer {
  padding: 36px 0 25px 0;
  background: var(--primary);
  color: #ccd8e6;
  border-top: 2px solid var(--accent);
  box-shadow: 0 -4px 22px #233d4da0;
  margin-top: 80px;
}
footer .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}
footer nav a {
  color: #ebfae8;
  font-size: 1rem;
  font-family: var(--font-display);
  opacity: 0.8;
  border-radius: 6px;
  padding: 4px 9px;
  transition: color 0.18s, background 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--accent);
  background: #242633;
}
footer .brand-section {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  font-weight: 500;
}
footer .brand-section img {
  width: 38px; 
  height: 38px;
  filter: drop-shadow(0 0 7px #38c9ffc5);
}
footer address {
  font-style: normal;
  color: #aec4d4;
  font-size: 1rem;
  margin-top: 8px;
  line-height: 1.5;
}

/* =====================
   FLEXBOX PATTERNS
   (DO NOT USE GRID)
   ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--surface-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 26px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 2px 32px 0 var(--neon-blue);
  transform: translateY(-2px) scale(1.015);
  z-index: 1;
}
.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;
  justify-content: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  color: #1b2433;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 17px 0 #38c9ff36, 0 4px 100px #ff39d026;
  border: 2px solid var(--neon-blue);
  min-width: 260px;
  transition: box-shadow 0.16s, border 0.16s;
}
.testimonial-card p {
  color: #212d3b;
  font-size: 1.08rem;
}
.testimonial-card .author {
  color: var(--secondary);
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 4px;
}
.testimonial-card .rating {
  color: #FFB32D;
  font-size: 1.25rem;
}
.testimonial-card:hover {
  box-shadow: 0 4px 48px var(--neon-blue), 0 4px 100px #ff39d033;
  border-color: var(--accent);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ====================
   FEATURES SECTION
   ==================== */
.features {
  background: var(--surface-light);
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: 0 2px 24px #38c9ff16;
}
.features .content-wrapper {
  gap: 18px;
}
.features ul, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 30px;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.feature-grid li, .features ul li {
  background: var(--surface-card);
  border-radius: var(--radius-sm);
  padding: 28px 22px 22px 22px;
  box-shadow: 0 0 22px 0 #1872b22f;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-left: 3px solid var(--accent);
  position: relative;
  margin-bottom: 20px;
  transition: border-color 0.18s, box-shadow 0.13s;
}
.feature-grid li:hover, .features ul li:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 2px 32px 0 var(--neon-blue);
  z-index: 1;
}
.feature-grid img, .features ul img {
  width: 38px; height: 38px; margin-bottom: 8px; filter: drop-shadow(0 0 8px #38c9ff88);
}
.feature-grid .price, .features ul .price, .price {
  color: var(--neon-blue);
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 8px;
}

/* ===================
   SERVICES SECTION
   =================== */
.services {
  background: var(--surface);
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: 0 0 16px #38c9ff19;
}
.services .content-wrapper {
  gap: 18px;
}
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 30px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.services ul li {
  background: var(--surface-card);
  border-radius: var(--radius-sm);
  padding: 28px 22px 22px 22px;
  box-shadow: 0 0 14px 0 #1872b22b;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-left: 3px solid var(--neon-blue);
  position: relative;
  margin-bottom: 20px;
  transition: border-color 0.18s, box-shadow 0.13s;
}
.services ul li:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 32px 0 var(--accent);
  z-index: 1;
}
.services ul .price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.08rem;
  margin-top: 8px;
}
.services ul .cta-btn {
  margin-top: 14px;
}

/* ==============
   BLOG SECTION
   ============== */
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post-list li {
  background: var(--surface-card);
  border-radius: var(--radius-sm);
  padding: 26px 20px 20px 20px;
  box-shadow: 0 0 14px 0 #1872b22b;
  min-width: 240px;
  max-width: 360px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  border-left: 3px solid var(--neon-pink);
  transition: box-shadow 0.15s, border-color 0.15s;
}
.blog-post-list li:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 28px 0 var(--neon-pink);
  z-index: 1;
}
.blog-tags {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.blog-tags span {
  background: var(--neon-blue);
  color: #041726;
  font-size: 0.93rem;
  border-radius: 99px;
  padding: 2px 10px;
  font-weight: 600;
}
.featured-articles {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.featured-articles a {
  color: var(--neon-pink);
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.13s;
}
.featured-articles a:hover { color: var(--accent); }

/* ===============
   CONTACT SECTION
   =============== */
.contact {
  background: var(--surface);
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: 0 0 24px #38c9ff0f;
}
.contact .content-wrapper {
  gap: 18px;
}
.contact ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  margin-bottom: 13px;
}
.contact ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ddf0ff;
  font-size: 1.07rem;
}
.contact ul img {
  width: 26px;
  height: 26px;
  margin-right: 2px;
  filter: drop-shadow(0 0 7px #38c9ff99);
}

/* ===============
   LEGAL PAGES
   =============== */
.legal {
  background: var(--surface-light);
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: 0 0 24px #38c9ff0e;
  padding: 40px 0;
}
.legal .content-wrapper {
  gap: 24px;
}
.legal h1, .legal h2, .legal h3 {
  color: var(--accent);
}
.legal .text-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
  padding-left: 18px;
}
.legal .text-section ul li {
  list-style-type: "• ";
  color: #eee7cc;
  font-size: 1.04rem;
}
.legal .text-section a {
  color: var(--neon-blue);
  text-decoration: underline;
}
.legal .text-section a:hover {
  color: var(--accent);
}

/* ===============
   MISC ELEMENTS
   =============== */
.highlight-stats p {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neon-blue);
}
.instructor-profiles ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.instructor-profiles ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  background: var(--surface-card);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  margin-bottom: 10px;
  color: var(--accent);
  box-shadow: 0 0 13px #a7c4e414;
}
.instructor-profiles ul img {
  width: 28px;
  height: 28px;
}

/* =====================
   TRANSITIONS, HOVERS
   ===================== */
button, a, .cta-btn, .card, li, .feature-item, .testimonial-card, .feature-grid li, .services ul li, .blog-post-list li {
  transition: background 0.18s, color 0.16s, box-shadow 0.16s, border 0.16s, transform 0.16s;
}

/* ====================
   RESPONSIVE DESIGN
   ==================== */
@media (max-width: 990px) {
  .content-wrapper {
    gap: 16px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .container {
    padding: 0 8px;
  }
  .card, .feature-grid li, .features ul li, .services ul li, .blog-post-list li {
    min-width: 90vw;
    max-width: 100vw;
    padding: 22px 12px;
  }
  .feature-grid, .features ul, .services ul, .blog-post-list {
    flex-direction: column;
    gap: 16px;
    flex-wrap: wrap;
  }
  .featured-articles {
    gap: 9px;
  }
  .contact ul {
    flex-direction: column;
    gap: 12px;
  }
  .instructor-profiles ul {
    flex-direction: column;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .hero {
    padding: 28px 0;
  }
}
@media (max-width: 420px) {
  .container {
    padding: 0 2px;
  }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.08rem; }
  .cta-btn {
    font-size: 0.99rem;
    padding: 10px 10px;
  }
  .mobile-nav {
    padding: 32px 8px 0 8px;
  }
  .mobile-menu-close {
    font-size: 2rem;
    margin: 16px 12px 8px 0;
  }
}

/* =======================
   COOKIE CONSENT BANNER
   ======================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2005;
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 -2px 48px var(--neon-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 12px 20px 12px;
  gap: 18px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: transform 0.33s, opacity 0.19s;
  border-top: 3px solid var(--accent);
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
  margin-left: 22px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-settings-btn {
  font-size: 1rem;
  padding: 8px 18px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 99px;
  font-weight: 700;
  transition: background 0.13s, color 0.13s;
  border: none;
  margin-left: 0;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--neon-blue);
  color: #222832;
}
.cookie-settings-btn {
  background: var(--neon-blue);
  color: #fff;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--neon-pink);
  color: #fff;
}

/* ===========================
   COOKIE SETTINGS MODAL
   =========================== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,34,50,0.89);
  z-index: 2010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.18s, visibility 0s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.14s, visibility 0s 0.16s;
}
.cookie-modal {
  background: var(--surface);
  border-radius: var(--radius);
  color: #fff;
  max-width: 390px;
  width: 94vw;
  box-shadow: 0 0 48px 0 var(--neon-pink);
  padding: 33px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  z-index: 2012;
  font-size: 1rem;
  animation: popUp 0.19s cubic-bezier(0.63,0.03,0.32,1.11);
}
@keyframes popUp {
  0%{ transform: scale(0.95); opacity: 0;}
  80%{ transform: scale(1.025); opacity: 1; }
  100%{ transform: scale(1.0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 8px 0 12px 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal label {
  font-size: 1.005rem;
  color: #ebf1f5;
}
.cookie-modal input[type="checkbox"][disabled] {
  accent-color: var(--accent);
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--accent);
  transform: scale(1.22);
  margin-right: 8px;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-settings-close {
  background: var(--accent);
  color: var(--primary);
  border-radius: 22px;
  font-weight: 600;
  padding: 7px 18px;
  font-size:1rem;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal .cookie-settings-close:hover {
  background: var(--neon-blue);
  color: #0f221d;
}

/* ==========
   UTILITIES
   ========== */
.text-center {
  text-align: center !important;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-60 { margin-bottom: 60px !important; }

/* =====================
   SCROLLBAR STYLING
   ===================== */
::-webkit-scrollbar {
  width: 9px;
  background: #1B2A38;
}
::-webkit-scrollbar-thumb {
  background: var(--neon-blue);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ===============
   END OF CSS
   =============== */
