/* ===========================================================
   RESET & BASE STYLES
=========================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background: #181F1B;
  color: #E0E3E2;
  min-height: 100vh;
  position: relative;
  letter-spacing: 0.02em;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  background: none;
  border: none;
}
:focus {
  outline: 2px solid #7BDCB5;
  outline-offset: 2px;
}

/* ===========================================================
   TYPOGRAPHY
=========================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fafbfa;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
h1 {font-size: 2.5rem; margin-bottom: 16px;}
h2 {font-size: 2rem; margin-bottom: 14px;}
h3 {font-size: 1.375rem; margin-bottom: 10px;}
h4 {font-size: 1.125rem; margin-bottom: 8px;}
p, ul, ol, li, .subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #DBE6DF;
}
.subheadline {
  font-size: 1.25rem;
  font-weight: 400;
  color: #7BDCB5;
  margin-bottom: 18px;
}
strong, b {
  font-weight: 700;
  color: #7BDCB5;
}

/* ===========================================================
   COLORS & THEME FOR INDUSTRIAL MODERN STYLE
=========================================================== */
:root {
  --color-bg: #181F1B;
  --color-surface: #232926;
  --color-primary: #20503C;
  --color-primary-dark: #173B2A;
  --color-secondary: #7BDCB5;
  --color-accent: #FFF;
  --color-border: #49514B;
  --color-shadow: rgba(32, 80, 60, 0.08);
  --color-metal: #9AA09C;
  --color-code: #212d26;
}

/* ===========================================================
   CONTAINERS
=========================================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-surface);
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--color-shadow);
}

/* ===========================================================
   HEADER & MAIN NAV
=========================================================== */
header {
  background: #181F1B;
  border-bottom: 1.5px solid var(--color-border);
  box-shadow: 0 1px 8px rgba(24,31,27,0.15);
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
.logo img {
  height: 48px;
  filter: brightness(0.98) contrast(1.1) drop-shadow(0 2px 2px #223a2e30);
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: none;
  font-weight: 600;
  color: #E0E3E2;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  position: relative;
  padding: 8px 0;
  transition: color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-secondary);
}
.btn-primary {
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #ffffff;
  border-radius: 7px;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.015em;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(32,80,60,0.16);
  border: 1.5px solid var(--color-metal);
  transition: background 0.19s, border 0.19s, transform 0.10s;
  cursor: pointer;
}
.btn-primary:hover,.btn-primary:focus {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: 1.5px solid var(--color-secondary);
  color: var(--color-secondary);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #232926;
  color: var(--color-secondary);
  border-radius: 7px;
  padding: 11px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid var(--color-secondary);
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(32,80,60,0.09);
  transition: background 0.19s, border 0.19s, color 0.18s, transform 0.10s;
  cursor: pointer;
}
.btn-secondary:hover,.btn-secondary:focus {
  background: var(--color-secondary);
  color: #222b24;
  border: 1.5px solid #222b24;
  transform: translateY(-1px) scale(1.03);
}

/* ===========================================================
   MOBILE NAV / BURGER MENU
=========================================================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: var(--color-accent);
  border-radius: 7px;
  border: 1.5px solid var(--color-metal);
  padding: 4px 14px;
  margin-left: 8px;
  cursor: pointer;
  transition: border 0.16s, background 0.2s, color 0.2s;
  z-index: 41;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary-dark);
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24,31,27,0.98);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 101;
  display: flex;
  flex-direction: column;
  /* Hidden by default */
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 12px 0;
  font-size: 2rem;
  color: var(--color-secondary);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #222b24;
  color: #FFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 32px 40px;
}
.mobile-nav a {
  color: #FAFBFA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 9px 0;
  transition: color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
}

@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .btn-primary {
    display: none;
  }
  header .container {
    gap: 10px;
  }
}

/* ===========================================================
   HERO & MAJOR SECTIONS
=========================================================== */
.hero {
  background: linear-gradient(102deg, #232926 60%, #20503c 250%);
  min-height: 380px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  border-bottom: 2.5px solid var(--color-border);
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 340px;
  justify-content: flex-start;
}
.hero h1 {
  margin-bottom: 12px;
  color: var(--color-secondary);
  text-shadow: 0 2px 12px #181F1B55;
}
.hero .subheadline {
  color: #DBE6DF;
  font-size: 1.22rem;
}

/* ABOUT SNIPPET, FOOTER-CTA, ETC. */
.about-snippet, .footer-cta, .contact-cta, .cta, .thank-you {
  background: var(--color-primary-dark);
  color: var(--color-accent);
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(32,80,60,0.17);
  margin-bottom: 60px;
  padding: 48px 24px 45px 24px;
}
.footer-cta h2, .cta h2, .thank-you h1 {
  color: var(--color-secondary);
}

/* FEATURES & SERVICE CARDS */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.feature-grid li {
  background: #23322e;
  border-radius: 15px;
  box-shadow: 0 2px 13px rgba(32,80,60,0.11);
  padding: 27px 21px 24px 21px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  width: calc(25% - 24px);
  min-width: 240px;
  border: 1.5px solid #345645;
  transition: box-shadow 0.15s, border 0.15s, transform 0.12s;
}
.feature-grid li:hover {
  box-shadow: 0 5px 18px #20503c28;
  border: 1.5px solid var(--color-secondary);
  transform: translateY(-6px) scale(1.018);
}
.feature-grid img {
  width: 36px;
  filter: grayscale(30%) brightness(1.15) drop-shadow(0 1.5px 3px #7BDCB540);
}
.feature-grid h3 {
  color: var(--color-secondary);
  font-size: 1.1rem;
}
.feature-grid p {
  color: #DBE6DF;
}

/* SERVICE OVERVIEW CARDS */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 28px;
  justify-content: flex-start;
}
.service-card {
  background: #222b24;
  border: 1.5px solid var(--color-metal);
  border-radius: 15px;
  padding: 30px 24px 24px 24px;
  min-width: 240px;
  flex: 1 1 265px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #FAFBFA;
  box-shadow: 0 2px 12px #20503C17;
  transition: box-shadow 0.18s, border 0.15s;
}
.service-card:hover {
  box-shadow: 0 8px 28px #7BDCBA44;
  border: 1.5px solid #7BDCB5;
}
.service-card strong {
  font-size: 1.28rem;
  color: var(--color-secondary);
  margin-top: 6px;
}
/* ===========================================================
   BLOG & ARTICLE LISTS
=========================================================== */
.blog-highlight, .blog-list {
  background: #222b24;
  border-radius: 17px;
  margin-bottom: 60px;
  box-shadow: 0 3px 12px #20503c11;
}
.blog-highlight h2, .blog-list h2 {
  color: var(--color-secondary);
  margin-bottom: 18px;
}
.blog-preview-list, .article-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.blog-preview-list article, .article-previews article {
  background: #232926;
  border-radius: 13px;
  box-shadow: 0 2px 8px #20503C1A;
  padding: 22px 20px 18px 20px;
  flex: 1 1 250px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.13s, transform 0.13s;
  border-left: 6px solid #7BDCB5;
}
.blog-preview-list article:hover, .article-previews article:hover {
  box-shadow: 0 6px 24px #7BDCBA54;
  transform: translateY(-4px) scale(1.018);
}
.blog-preview-list h3, .article-previews h3 {
  font-size: 1.09rem;
  color: #7BDCB5;
}

.categories-filter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px 0;
}
.categories-filter button {
  background: #20503C;
  color: var(--color-secondary);
  padding: 7px 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: 1.5px solid #7BDCB5;
  border-radius: 7px;
  margin-right: 3px;
  transition: background 0.15s, color 0.13s, transform 0.08s;
  cursor: pointer;
}
.categories-filter button:hover, .categories-filter button:focus {
  background: #7BDCB5;
  color: #1a342a;
  transform: scale(1.08);
}

/* ===========================================================
   PRICING TABLE STYLES (SERVICES)
=========================================================== */
.pricing-table {
  margin: 34px 0 24px 0;
  width: 100%;
  overflow-x: auto;
}
.pricing-table table {
  border-collapse: collapse;
  width: 100%;
  min-width: 480px;
  background: #212d26;
  border: 1.5px solid #345645;
  font-size: 0.995rem;
  color: #FAFBFA;
  box-shadow: 0 2px 10px #20503C12;
}
.pricing-table th,
.pricing-table td {
  padding: 15px 18px;
  border-bottom: 1px solid #2b2f2b;
  text-align: left;
}
.pricing-table th {
  background: #23322e;
  color: var(--color-secondary);
  letter-spacing: 0.01em;
}
.pricing-table td {
  color: #DBE6DF;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* ===========================================================
   VALUE-LIST, TRUST-SIGNS (ABOUT)
=========================================================== */
.value-list {
  margin: 14px 0 25px 0;
  padding-left: 24px;
  color: #B3C7B0;
  font-size: 1.09rem;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.trust-signs {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  margin: 18px 0 4px 0;
}
.trust-signs p {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #23322e;
  color: #7BDCB5;
  border-radius: 7px;
  padding: 9px 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
}
.trust-signs img {
  width: 26px;
  display: inline-block;
  vertical-align: middle;
}

/* TEXT SECTIONS (ABOUT, CONTACT) */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 17px;
  color: #DBE6DF;
}

/* ===========================================================
   TESTIMONIALS
=========================================================== */
.testimonials {
  background: #222b24;
  border-radius: 18px;
  margin-bottom: 60px;
}
.testimonials h2 {
  color: var(--color-secondary);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #FFF;
  color: #232926;
  border-radius: 13px;
  box-shadow: 0 2px 12px #20503C1A;
  padding: 24px 22px 19px 22px;
  margin-bottom: 22px;
  border: 1.5px solid #B6CFC2;
  position: relative;
  transition: box-shadow 0.16s, border 0.14s, transform 0.12s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 27px #20503C21;
  border-color: #20503C;
  transform: translateY(-3px) scale(1.018);
}
.testimonial-card blockquote {
  font-size: 1.14rem;
  color: #23322E;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-meta {
  color: #20503C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 600;
}

/* COURSE BENEFITS, CURRICULUM ETC. */
.curriculum-list, .course-benefits ul {
  margin-bottom: 19px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-left: 22px;
  color: #B3C7B0;
}
.course-benefits {
  background: #23322e;
  border-radius: 9px;
  padding: 17px 18px 15px 18px;
  color: #DBE6DF;
  margin-bottom: 14px;
}

/* ===========================================================
   LEGAL, COOKIE POLICY, PRIVACY, TERMS
=========================================================== */
.legal {
  background: #222b24;
  border-radius: 19px;
  margin-bottom: 60px;
  box-shadow: 0 2px 9px #20503C1B;
  padding: 42px 26px 45px 26px;
}
.legal h1,.legal h2 {
  color: var(--color-secondary);
}
.legal h2 {
  margin-top: 24px;
}
.legal ul, .legal ol {
  margin-left: 28px;
  margin-bottom: 18px;
  color: #B3C7B0;
  font-size: 1.038rem;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

/* ===========================================================
   FOOTER
=========================================================== */
footer {
  background: #232926;
  border-top: 2px solid #20503C;
  padding: 42px 0 28px 0;
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
}
.footer-brand img {
  width: 44px;
  height: auto;
  filter: contrast(1.14) grayscale(15%);
}
.footer-brand p {
  color: #B3C7B0;
  font-size: 0.97rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  align-items: center;
}
.footer-nav a {
  color: #99BD9B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  padding: 7px 9px;
  border-radius: 5px;
  transition: color 0.15s, background 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
  background: #20503C;
}

/* ===========================================================
   RESPONSIVE RULES
=========================================================== */
@media (max-width: 1100px) {
  .feature-grid li, .service-card, .blog-preview-list article, .article-previews article {
    min-width: 180px;
    max-width: 98vw;
    flex: 1 1 180px;
  }
  .feature-grid, .service-cards {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .footer-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .section,
  .about-snippet, .footer-cta, .contact-cta, .cta, .thank-you {
    padding: 30px 8px 30px 8px;
    margin-bottom: 32px;
  }
  .hero .container {
    min-height: 224px;
    padding: 26px 8px;
  }
  .service-card, .blog-preview-list article, .article-previews article, .feature-grid li {
    min-width: 95vw;
    max-width: 99vw;
    padding: 19px 10px 17px 13px;
  }
  .feature-grid, .service-cards, .blog-preview-list, .article-previews {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    padding: 18px 7px 13px 11px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .trust-signs {
    flex-direction: column;
    gap: 7px;
  }
}
@media (max-width: 600px) {
  h1 {font-size: 1.75rem;}
  h2 {font-size: 1.36rem;}
  .footer-nav a { font-size: 0.95rem; }
  .service-card, .blog-preview-list article, .article-previews article, .feature-grid li {
    font-size: 0.98rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
}

/* FLEXBOX LAYOUT ENFORCEMENT */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FLEX GAP SPACING */
.section, .about-snippet, .footer-cta, .contact-cta, .cta, .thank-you {
  margin-bottom: 60px;
}
.card-container > *,
.card-content > *,
.content-grid > *,
.feature-grid > *,
.service-cards > *,
.blog-preview-list > *,
.article-previews > *,
.testimonials > *,
.trust-signs > * {
  margin-bottom: 0 !important;
}

/* ===========================================================
   COOKIE CONSENT BANNER & MODAL
=========================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #232926;
  color: #B3C7B0;
  z-index: 9999;
  box-shadow: 0 -4px 24px #20503C22;
  padding: 22px 16px 22px 16px;
  border-top: 2.5px solid #7BDCB5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: cookieBannerIn 0.48s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookieBannerIn {
  0% {transform: translateY(80px); opacity: 0;}
  90% {transform: translateY(-12px); opacity: 1;}
  100% {transform: translateY(0);}
}
.cookie-banner .cookie-text {
  flex: 1 1 260px;
  font-size: 1.04rem;
  padding-right: 8px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}
.cookie-banner button {
  padding: 8px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 5px;
  border: 1.5px solid #7BDCB5;
  background: #181F1B;
  color: #7BDCB5;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.01rem;
  margin-right: 2px;
  transition: background 0.17s, color 0.13s, border 0.13s, transform 0.08s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #7BDCB5;
  color: #232926;
  border-color: #20503C;
  transform: scale(1.08);
}

.cookie-banner .cookie-settings-btn {
  background: #222b24;
  color: #B3C7B0;
  border: 1.5px solid #49514B;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #7BDCB5;
  color: #222b24;
  border-color: #20503C;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed; z-index: 10001;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,31,27,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .45s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  min-width: 335px;
  background: #222b24;
  border-radius: 15px;
  border: 2.5px solid #20503c;
  box-shadow: 0 8px 32px #20503C46;
  color: #B3C7B0;
  max-width: 96vw;
  padding: 34px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  animation: cookieModalIn 0.48s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookieModalIn {
  0% { transform: scale(0.8); opacity: 0; }
  60% { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(1.0); }
}
.cookie-modal h2 {
  color: var(--color-secondary);
  font-size: 1.18rem;
  margin-bottom: 4px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 15px;
  font-size: 1.7rem;
  background: none;
  color: #7BDCB5;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
.cookie-modal-close:hover,.cookie-modal-close:focus {
  background: #20503C;
  color: #FFF;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.04rem;
  background: #232926;
  padding: 10px 11px;
  border-radius: 7px;
  border: 1.5px solid #49514b;
}
.cookie-modal-category input[type='checkbox'] {
  accent-color: #7BDCB5;
  width: 20px; height: 20px;
}
.cookie-modal-category.essential {
  color: #7BDCB5;
  font-weight: bold;
  border: 2px solid #7BDCB5;
}
.cookie-modal .cookie-modal-actions {
  display: flex; gap: 13px; margin-top: 12px;
}
.cookie-modal .cookie-modal-actions button {
  background: #181F1B;
  color: #7BDCB5;
  border: 1.5px solid #7BDCB5;
  border-radius: 5px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  transition: background 0.13s, color 0.16s;
}
.cookie-modal .cookie-modal-actions button:hover,.cookie-modal .cookie-modal-actions button:focus {
  background: #7BDCB5;
  color: #232926;
}

@media (max-width: 768px) {
  .cookie-banner, .cookie-modal {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 15px 7px 15px 7px;
  }
  .cookie-modal {
    min-width: 0;
    padding: 19px 10px 21px 10px;
  }
}

/* Hide modal and consent banner by default (use classes .active to show) */
.cookie-banner,
.cookie-modal-overlay {
  display: none;
}
.cookie-banner.active {
  display: flex;
}
.cookie-modal-overlay.active {
  display: flex;
}

/* ===========================================================
   MISC: TABLES, LISTS, NEXT-STEPS, ETC.
=========================================================== */
ul, ol {
  margin-left: 20px;
  margin-bottom: 10px;
}
.next-steps ul {
  list-style-type: disc;
  margin-left: 20px;
  color: #B3C7B0;
  margin-bottom: 18px;
}
.next-steps a {
  color: #7BDCB5;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.14s;
}
.next-steps a:hover,.next-steps a:focus {
  color: #20503C;
}
.confirmation-message {
  color: #7BDCB5;
  font-size: 1.13rem;
  margin-bottom: 16px;
}
a {
  color: #7BDCB5;
  text-decoration: none;
  transition: color 0.13s, text-decoration 0.13s;
}
a:hover,
a:focus {
  text-decoration: underline;
  color: #20503C;
}

/* ===== Scrollbars for dark mode ===== */
::-webkit-scrollbar {
  width: 10px; height: 8px;
}
::-webkit-scrollbar-thumb {
  background: #232926; border-radius: 7px;
}
::-webkit-scrollbar-track {
  background: #181F1B;
}

/* CODE BLOCKS & PRE (for code snippets, optional) */
pre, code { background: var(--color-code); color: #7BDCB5; padding: 2px 5px; border-radius: 5px; font-family: 'Fira Mono', monospace; font-size: 0.95em; }

/* ===========================================================
   MICRO-ANIMATIONS
=========================================================== */
.btn, .btn-primary, .btn-secondary, .feature-grid li, .service-card, .blog-preview-list article, .article-previews article, .testimonial-card {
  transition: background 0.17s, border 0.16s, color 0.12s, box-shadow 0.18s, transform 0.10s;
}

/* ===========================================================
   INDUSTRIAL MODERN ACCENTS
=========================================================== */
.section, .about-snippet, .footer-cta, .contact-cta, .cta, .thank-you,
.blog-preview-list article, .article-previews article, .service-card, .features, .feature-grid li {
  border-radius: 17px;
  border: 1.5px solid #49514B;
  box-shadow: 0 4px 16px #20503C18, 0 0.5px 0 #B3C7B015;
}

/* Slight noise texture for industrial effect (optional, can be skipped for now) */
/* To add: background-image: url('assets/textures/noise.png'); opacity: 0.05; */

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