/* --- CSS RESET & BASE TYPOGRAPHY --- */
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;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #E3E6E8;
  background: #14191B;
}
img {
  max-width: 100%;
  border: none;
  display: block;
}
a {
  color: #36A19C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F1F5F8;
  text-decoration: underline;
}
*, *::before, *::after {
  box-sizing: inherit;
}

/* --- BRAND FONTS --- */
h1, h2, h3, h4, h5, h6, .primary-cta, .secondary-cta, .topic-filters button, .feature-item h3, .value-item h3, .expert-filters button, .mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.2rem;
  color: #F1F5F8;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.5rem;
  color: #F1F5F8;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.125rem;
  color: #36A19C;
  margin-bottom: 10px;
}
p {
  font-size: 1rem;
  color: #C1C3C5;
  margin-bottom: 10px;
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
  }
}

.text-section, .trust-elements, .confirmation-message, .process-flow {
  margin-bottom: 20px;
  color: #C1C3C5;
  font-size: 1.05em;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #151F22;
  border-bottom: 1px solid #232B2F;
  box-shadow: 0 1px 7px 0 #161c2090;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  height: 70px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
header nav a {
  color: #F1F5F8;
  font-size: 1rem;
  padding: 8px 0;
  position: relative;
  transition: color 0.15s;
}
header nav a:hover, header nav a:focus {
  color: #36A19C;
}
.primary-cta {
  background: #36A19C;
  color: #151F22;
  border: none;
  padding: 10px 26px;
  border-radius: 25px;
  font-size: 1.14rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 7px 0 #14191b3d;
  margin-left: 18px;
  cursor: pointer;
  letter-spacing: 0.02em;
  outline: none;
  border-bottom: 2px solid #18475E;
}
.primary-cta:hover, .primary-cta:focus {
  background: #18475E;
  color: #F1F5F8;
  box-shadow: 0 2px 12px 0 #18475e4e;
}
.secondary-cta {
  background: transparent;
  color: #36A19C;
  border: 2px solid #36A19C;
  padding: 10px 24px;
  border-radius: 25px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #36A19C;
  color: #151F22;
}

.mobile-menu-toggle {
  display: none;
  background: #232B2F;
  border: none;
  color: #F1F5F8;
  font-size: 2rem;
  border-radius: 7px;
  padding: 6px 14px;
  margin-left: 22px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #1a262a;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100vw;
  background: #14191B;
  box-shadow: 2px 0 16px #14191b88;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 30px;
  padding-left: 0;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: #F1F5F8;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 0 24px 14px 0;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 155;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #36A19C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #F1F5F8;
  border-bottom: 1px solid #232B2F22;
  padding: 12px 0;
  letter-spacing: 0.015em;
  transition: color 0.16s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #36A19C;
  background: #232B2F44;
}
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: #151F22;
  background-image: linear-gradient(120deg, #232B2F 0 50%, transparent 100%);
  border-bottom: 1.2px solid #232B2F;
}
.hero .container {
  min-height: 360px;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.hero h1 {
  color: #F1F5F8;
  font-size: 2.4rem;
  text-shadow: 0 1.5px 6px #10141888;
}
.hero p {
  color: #C1C3C5;
  font-size: 1.18rem;
  margin-bottom: 18px;
}

/* --- FLEXBOX MANDATORY PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #232B2F;
  box-shadow: 0 2px 18px 0 #151c2149;
  border-radius: 14px;
  overflow: hidden;
}
.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;
    gap: 18px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F1F5F8;
  color: #232B2F;
  border-radius: 13px;
  box-shadow: 0 2px 12px #10141818;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 400px;
}
.testimonial-card p {
  color: #232B2F;
  font-size: 1.10rem;
  line-height: 1.6;
  margin: 0 0 10px 0;
}
.testimonial-name {
  color: #18475E;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #232B2F;
  border-radius: 12px;
  padding: 20px;
  min-width: 210px;
  box-shadow: 0 2px 8px #1a222578;
  margin-bottom: 20px;
  transition: transform 0.16s, box-shadow 0.18s;
}
.feature-item img {
  width: 38px;
  height: 38px;
}
.feature-item:hover, .feature-item:focus-within {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 4px 24px #18475e43;
}

/* --- FEATURES SECTION --- */
.features, .value-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.feature-grid, .value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .feature-grid, .value-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* --- SERVICES SECTION, CARDS --- */
.services {
  background: #1e282c;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 #18475e18;
  margin-bottom: 60px;
}
.services .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.service-card {
  background: #232B2F;
  border-radius: 11px;
  min-width: 220px;
  flex: 1 0 220px;
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px #18343828;
  color: #E3E6E8;
  transition: box-shadow 0.18s, transform 0.17s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card h3 {
  color: #36A19C;
  font-size: 1.18rem;
}
.service-card:hover, .service-card:focus {
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 4px 22px #36a19c44;
}

/* --- TESTIMONIALS SLIDER --- */
.testimonials {
  background: #14191B;
  padding: 56px 0;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/* --- CTA SECTION --- */
.cta {
  background: #232B2F;
  border-radius: 16px;
  box-shadow: 0 3px 22px 0 #18475e23;
  margin-bottom: 60px;
}
.cta h2 {
  color: #F1F5F8;
}
.cta p {
  color: #C1C3C5;
}

/* --- TEAM/ABOUT/VALUE AREAS --- */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.team-member {
  background: #232B2F;
  border-radius: 11px;
  padding: 18px 16px;
  min-width: 180px;
  flex: 1 0 180px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px #2f44485c;
  color: #E3E6E8;
  transition: box-shadow 0.15s, transform 0.14s;
}
.team-member:hover {
  box-shadow: 0 6px 26px #18475e35;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width:900px){.team-list{flex-direction:column;gap:12px}}
.value-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #232B2F;
  border-radius: 11px;
  padding: 18px 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px #1a22258c;
  min-width: 180px;
  flex: 1 0 180px;
  gap: 10px;
}
.value-item img {
  width: 34px;
  height: 34px;
}
.value-item:hover, .value-item:focus-within {
  box-shadow: 0 4px 20px #1e282c55;
  transform: translateY(-2px) scale(1.03);
}

/* --- BLOG CARDS --- */
.blog-list .topic-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
.topic-filters button, .expert-filters button {
  background: #232B2F;
  color: #36A19C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: 2px solid #18475E;
  border-radius: 19px;
  padding: 7px 18px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s, border 0.17s;
}
.topic-filters button:hover, .expert-filters button:hover, 
.topic-filters button:focus, .expert-filters button:focus {
  background: #18475E;
  color: #F1F5F8;
  border-color: #36A19C;
}
.article-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.article-card {
  background: #232B2F;
  border-radius: 11px;
  padding: 20px 16px 16px 16px;
  flex: 1 0 260px;
  min-width: 184px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px #10141835;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-card h2 {
  font-size: 1.22rem;
  color: #36A19C;
}
.article-card a {
  color: #36A19C;
  margin-top: 8px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  transition: color 0.14s;
}
.article-card a:hover, .article-card a:focus {
  color: #F1F5F8;
  text-decoration: underline;
}
.article-card:hover {
  box-shadow: 0 6px 22px #36a19c33;
  transform: translateY(-2px) scale(1.03);
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}
.faq-item {
  background: #232B2F;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 2px 8px #151c2137;
  margin-bottom: 8px;
  font-size: 1.03rem;
}
.faq-item h3 {
  color: #36A19C;
  font-size: 1.10rem;
  cursor: pointer;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-item p {
  margin-bottom: 0;
}

/* --- EXPERT PROFILE/LISTS --- */
.expert-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.expert-profile {
  background: #232B2F;
  border-radius: 11px;
  padding: 20px 16px;
  min-width: 180px;
  flex: 1 0 180px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px #18475e28;
  color: #E3E6E8;
  transition: box-shadow 0.15s, transform 0.13s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.expert-profile h3 {
  color: #36A19C;
}
.expert-profile:hover {
  box-shadow: 0 4px 20px #36a19c48;
  transform: translateY(-1.5px) scale(1.02);
}
.expert-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 13px;
}
.expert-filters span {
  color: #36A19C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

/* --- POLICY/COPY CONTENT --- */
.policy {
  background: #1e282c;
  border-radius: 14px;
  margin-bottom: 60px;
  box-shadow: 0 2px 12px 0 #18475e25;
}
.policy-content {
  color: #C1C3C5;
  margin-bottom: 18px;
  font-size: 1.08rem;
}
.policy-content h2 {
  color: #36A19C;
  margin-top: 20px;
  font-size: 1.09rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.policy-content ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
.policy-content li {
  margin-bottom: 6px;
}
.policy-content a {
  color: #36A19C;
}

/* --- CONTACT PAGE --- */
.contact-info {
  margin-bottom: 18px;
  color: #F1F5F8;
}
.contact-info strong {
  color: #36A19C;
  font-weight: 700;
}
.map {
  background: #232B2F;
  border-radius: 11px;
  padding: 12px 15px;
  color: #C1C3C5;
  margin-bottom: 20px;
}

/* --- FOOTER --- */
footer {
  background: #151F22;
  border-top: 1px solid #232B2F;
  padding: 34px 0 20px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #C1C3C5;
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
  transition: color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  color: #36A19C;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #C1C3C5;
  font-size: 0.98rem;
}
.footer-contact img {
  vertical-align: middle;
  margin-right: 5px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* --- THANK YOU PAGE --- */
.thank-you {
  background: #1e282c;
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 #18475e16;
  min-height: 360px;
  padding: 40px 10px;
}
.confirmation-message {
  background: #232B2F;
  border-radius: 12px;
  padding: 20px 16px;
  color: #C1C3C5;
  margin-bottom: 22px;
}

/* --- OL & UL STYLING --- */
ol, ul {
  margin-bottom: 20px;
  padding-left: 22px;
}
ol li, ul li {
  margin-bottom: 7px;
  line-height: 1.47;
}

/* --- CUSTUM FLEX UTILITIES --- */
.gap-20 {
  gap: 20px;
}
.gap-24 {
  gap: 24px;
}
.gap-32 {
  gap: 32px;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .service-cards, .article-cards, .feature-grid, .team-list, .expert-profiles, .testimonial-slider, .value-grid {
    flex-direction: column;
    gap: 16px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  header .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width:600px){
  h1 {font-size: 1.38rem}
  h2 {font-size: 1.05rem}
}

/* --- SPACING FOR ALL CONTENT CARDS/SECTIONS --- */
.feature-item, .team-member, .value-item, .service-card, .article-card, .expert-profile {
  margin-bottom: 20px !important;
}
.section {
  margin-bottom: 60px !important;
}

/* --- MICRO-INTERACTIONS AND TRANSITIONS --- */
button, .feature-item, .value-item, .primary-cta, .secondary-cta, .service-card, .team-member, .testimonial-card, .expert-profile, .article-card {
  transition: 
    box-shadow 0.17s cubic-bezier(.46,.1,.36,1.15), 
    background 0.18s,
    color 0.15s,
    transform 0.11s linear;
}

/* --- SHADOWS & BORDERS FOR INDUSTRIAL MODERN --- */
.card, .service-card, .article-card, .feature-item, .value-item, .team-member, .expert-profile {
  box-shadow: 0 2px 8px #232B2F55;
  border: 1.5px solid #232B2F;
}

/* --- SELECT & INPUT GENERIC (if present) --- */
select, input[type="text"], input[type="email"], textarea {
  background: #232B2F;
  border: 1.5px solid #18475E;
  color: #F1F5F8;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 12px;
  width: 100%;
  outline: none;
  transition: border 0.15s;
}
select:focus, input:focus, textarea:focus {
  border-color: #36A19C;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #151F22;
  color: #F1F5F8;
  border-top: 2px solid #36A19C;
  box-shadow: 0 -2px 18px #18475e3d;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 18px;
  z-index: 9999;
  font-size: 1rem;
  transition: transform 0.37s cubic-bezier(.62,.04,.36,1.26);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(150%);
}
.cookie-banner .cookie-text {
  flex: 1 1 330px;
  color: #F1F5F8;
  font-size: 1rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-settings-btn {
  background: #36A19C;
  color: #151F22;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 25px;
  padding: 9px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.13s, box-shadow 0.15s;
  box-shadow: 0 1px 4px #18475e33;
  outline: none;
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: #18475E;
  color: #F1F5F8;
}
.cookie-btn.reject {
  background: #232B2F;
  color: #E3E6E8;
  border: 1.5px solid #36A19C;
}
.cookie-btn.reject:hover {
  background: #f44336;
  color: #fff;
  border-color: #f44336;
}
.cookie-settings-btn {
  background: transparent;
  color: #36A19C;
  border: 2px solid #36A19C;
}
.cookie-settings-btn:hover {
  background: #36A19C;
  color: #151F22;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(20, 25, 27, 0.87);
  align-items: flex-end;
  justify-content: center;
  transition: background 0.28s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #232B2F;
  color: #F1F5F8;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 12px 28px #18475e6d;
  min-width: 328px;
  max-width: calc(100vw - 28px);
  padding: 34px 26px 22px 26px;
  margin-bottom: 0;
  position: relative;
  transition: transform 0.39s cubic-bezier(.56,.04,.38,1.29);
  transform: translateY(150%);
}
.cookie-modal.open {
  transform: translateY(0);
}
.cookie-modal h2 {
  color: #36A19C;
  font-size: 1.10rem;
  margin-bottom: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-category {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-modal-category span {
  color: #E3E6E8;
  font-weight: 700;
}
.cookie-modal-category .cookie-toggle {
  appearance: none;
  width: 44px;
  height: 24px;
  background: #232B2F;
  border: 2px solid #36A19C;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.18s, border 0.17s;
}
.cookie-modal-category .cookie-toggle:after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #36A19C;
  transition: left 0.19s, background 0.18s;
}
.cookie-modal-category .cookie-toggle:checked:after {
  left: 22px;
  background: #18475E;
}
.cookie-modal-category .cookie-toggle:disabled {
  border-color: #cccccc99;
  background: #232B2F77;
  cursor: not-allowed;
}
.cookie-modal-category .cookie-toggle:disabled:after {
  background: #cccccc77;
}
.cookie-modal-btns {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 1.65rem;
  color: #36A19C;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #F1F5F8;
}

/* --- INDUSTRIAL/URBAN DECORATION --- */
.section, .features, .hero, .cta, .policy, .team-list, .value-grid, .blog-list, .testimonial-card, .service-card, .expert-profile, .faq-item {
  /* metallic accent */
  border-left: 4px solid #36A19C;
  border-bottom-left-radius: 8px;
}
.policy, .cta, .section, .features {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

/* --- SCROLLBAR CUSTOMIZATION --- */
::-webkit-scrollbar {
  width: 10px;
  background: #232B2F;
}
::-webkit-scrollbar-thumb {
  background: #18475E;
  border-radius: 6px;
}

/* --- ACCESSIBILITY/FOCUS STATES --- */
:focus {
  outline: 2px solid #36A19C;
  outline-offset: 2px;
}

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

/* --- UTILITIES --- */
.hide { display: none !important; }

/* --- PRINT STYLE OVERRIDE --- */
@media print {
  header, footer, .cookie-banner, .mobile-menu {display:none !important;}
  body {background: #fff !important; color: #000;}
}
