@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', Arial, sans-serif;
}

body {
  font-family: var(--font-sans);
}

.site-header {
  border-bottom: 1px solid #eee;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo img {
  width: 32px;
  vertical-align: middle;
}
.header-logo h2 {
  margin: 0;
  font-size: 20px;
  color: #000091;
  white-space: nowrap;
}
.header-logo .bold {
  font-weight: bold;
}

.header-nav {
  display: flex;
  gap: 30px;
}
.header-nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}
.header-nav a:hover {
  color: #000091;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000091;
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.header-cta:hover {
  background: #000078;
}
.header-cta .arrow {
  display: inline-block;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}
.btn-primary {
  background: #000091;
  color: #fff;
}
.btn-primary:hover {
  background: #000078;
}
.btn-secondary {
  background: #fff;
  color: #000091;
  border: 1px solid #000091;
}
.btn-secondary:hover {
  background: #f2f2ff;
}

.hero {
  text-align: center;
  padding: 140px 60px 120px;
  background: linear-gradient(180deg, #f2f2ff 0%, #fff 100%);
}
.hero-home {
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('hero-unify.svg') center / cover no-repeat;
  pointer-events: none;
}
.hero-home > * {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #000091;
  margin: 0 0 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero p {
  font-size: 19px;
  line-height: 1.6;
  color: #4a4a4a;
  max-width: 640px;
  margin: 0 auto 36px;
}
.contact-hero p {
  max-width: 760px;
}
.hero-location {
  font-size: 14px !important;
  color: #6b6b6b !important;
  margin-top: -20px !important;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.hero-about {
  text-align: left;
}
.hero-about-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000091;
  margin-bottom: 18px;
}
.hero-about h1 {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #000091;
  margin: 0;
  max-width: none;
  text-align: left;
}
.hero-about-inner > p {
  font-size: 17px;
  line-height: 1.7;
  color: #4a4a4a;
  max-width: none;
  margin: 0;
  text-align: left;
}
.hero-about-inner > p strong {
  color: #000091;
}
@media (max-width: 900px) {
  .hero-about-inner {
    grid-template-columns: 1fr;
  }
}

.services {
  padding: 100px 60px;
}
.services h2 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #000091;
  margin-bottom: 44px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}
.service-card {
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  padding: 32px 28px;
}
.service-card h3 {
  color: #000091;
  margin: 0 0 10px;
}
.service-card p {
  margin: 0 0 14px;
  color: #333;
}
.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: #333;
}
.service-card li {
  margin: 4px 0;
}
.service-card li a {
  color: #333;
  text-decoration: underline;
  text-decoration-color: #ccc;
}
.service-card li a:hover {
  color: #000091;
}
.cert-count {
  font-weight: 400;
  font-size: 14px;
  color: #6a6a6a;
}
.cert-list {
  list-style: none;
  padding-left: 0;
}
.cert-item {
  margin: 10px 0 !important;
}
.cert-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}
.cert-item a span {
  text-decoration: underline;
  text-decoration-color: #ccc;
}
.cert-item a:hover span {
  color: #000091;
}
.cert-thumb {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}
.cert-list-shots {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cert-item-shot {
  margin: 0 !important;
}
.cert-item-shot a {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.cert-shot {
  width: 100%;
  max-width: 240px;
  border: 1px solid #e4e4f0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 145, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cert-item-shot a:hover .cert-shot {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 145, 0.12);
}

.past-certifications {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #f0f0f0;
}
.past-certifications h3 {
  color: #000091;
  margin: 0 0 8px;
}
.past-certifications-intro {
  color: #666;
  font-size: 14px;
  margin: 0 0 16px;
}
.past-certifications ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.past-certifications li {
  color: #333;
}
.past-certifications a {
  color: #333;
  text-decoration: underline;
  text-decoration-color: #ccc;
}
.past-certifications a:hover {
  color: #000091;
}
.cert-status {
  color: #8a8a8a;
  font-size: 13px;
}

.why {
  padding: 100px 60px;
  background: #fafafa;
}
.why h2 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #000091;
  margin-bottom: 44px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
}
.why-item h3 {
  color: #000091;
  margin: 0 0 10px;
}
.why-item p {
  margin: 0;
  color: #333;
}

.why-intro {
  max-width: 760px;
  margin: 0 auto 64px;
}
.why-intro h2 {
  font-size: 36px;
  margin: 0 0 20px;
}
.why-intro .lead {
  font-size: 20px;
  font-weight: 500;
  color: #222;
  line-height: 1.5;
  margin: 0 0 20px;
}
.why-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0 0 18px;
}
.why-intro p:last-child {
  margin-bottom: 0;
}

.why-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.why-block h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #000091;
  margin: 0 0 12px;
}
.why-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0 0 12px;
}
.why-block p:last-child {
  margin-bottom: 0;
}
.why-block-list {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}
.why-block-list li {
  font-size: 15px;
  color: #333;
  padding-left: 16px;
  position: relative;
}
.why-block-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000091;
}

.why-closing {
  max-width: 760px;
  margin: 72px auto 0;
  padding-top: 56px;
  border-top: 1px solid #e4e4f0;
}
.why-closing h3 {
  font-size: 24px;
  font-weight: 600;
  color: #000091;
  margin: 0 0 16px;
}
.why-closing p {
  font-size: 17px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0 0 16px;
}
.why-tagline {
  font-size: 19px;
  font-weight: 600;
  color: #000091;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .why-blocks {
    grid-template-columns: 1fr;
  }
  .why-block-list {
    grid-template-columns: 1fr;
  }
}

.credibility {
  padding: 90px 60px;
  background: #f2f2ff;
}
.credibility-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.credibility-inner .eyebrow {
  margin-bottom: 12px;
}
.credibility-inner h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #000091;
  margin: 0 0 48px;
}
.credibility-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.stat-tile {
  background: #fff;
  border: 1px solid #e4e4f0;
  border-radius: 14px;
  padding: 32px 20px;
}
.stat-value {
  display: block;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000091;
}
.stat-label {
  display: block;
  font-size: 14px;
  color: #4a4a4a;
  margin-top: 8px;
}
.credibility-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fact-row {
  background: #fff;
  border: 1px solid #e4e4f0;
  border-radius: 14px;
  padding: 22px 20px;
  text-align: left;
}
.fact-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000091;
  margin-bottom: 8px;
}
.fact-value {
  display: block;
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .credibility-stats,
  .credibility-facts {
    grid-template-columns: 1fr;
  }
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.cert-badge {
  background: #fff;
  border: 1px solid #e4e4f0;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #000091;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.cert-badge:hover {
  background: #f2f2ff;
  border-color: #000091;
}

.case-studies {
  padding: 100px 60px;
  background: #fafafa;
}
.case-studies h2 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #000091;
  margin-bottom: 44px;
}
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}
.case-study-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  padding: 32px 28px;
}
.case-study-card h3 {
  color: #000091;
  margin: 10px 0 14px;
}
.case-study-card p {
  margin: 0 0 14px;
  color: #333;
}
.case-study-card p:last-child {
  margin-bottom: 0;
}
.case-study-card ul {
  margin: 0 0 14px;
  padding-left: 18px;
  color: #333;
}
.case-study-card li {
  margin: 4px 0;
}

.founder-note {
  padding: 90px 60px;
  text-align: center;
}
.founder-note-inner {
  max-width: 720px;
  margin: 0 auto;
}
.founder-note-inner h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #000091;
  margin: 0 0 20px;
}
.founder-note-inner p {
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0 0 28px;
}

.pain-points {
  padding: 80px 60px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.pain-points h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #000091;
  margin-bottom: 32px;
}
.pain-points-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  text-align: left;
  display: inline-block;
}
.pain-points-list li {
  position: relative;
  padding: 6px 0 6px 30px;
  color: #333;
  font-size: 17px;
}
.pain-points-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #000091;
  font-weight: 700;
}
.pain-points-cta {
  font-size: 19px;
  font-weight: 600;
  color: #000091;
}

.service-outcome {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
  color: #000091 !important;
  font-weight: 600;
  font-size: 14px;
}

.engagement {
  padding: 100px 60px;
  background: #fafafa;
}
.engagement h2 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #000091;
  margin-bottom: 12px;
}
.engagement-intro {
  color: #4a4a4a;
  margin-bottom: 44px;
}
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.engagement-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  padding: 28px 24px;
}
.engagement-card h3 {
  color: #000091;
  margin: 0 0 10px;
}
.engagement-card p {
  margin: 0 0 18px;
  color: #333;
}
.engagement-card .btn-primary,
.engagement-card .btn-secondary {
  padding: 10px 20px;
  font-size: 14px;
}
.engagement-featured {
  border: 1px solid #000091;
  background: #f2f2ff;
}
.engagement-featured .eyebrow {
  margin-bottom: 10px;
}

.leadership-note {
  max-width: 760px;
  margin: 56px auto 0;
  padding-top: 48px;
  border-top: 1px solid #e4e4f0;
}
.leadership-note h3 {
  font-size: 22px;
  font-weight: 600;
  color: #000091;
  margin: 0 0 16px;
}
.leadership-note ul {
  margin: 0;
  padding-left: 20px;
  color: #333;
}
.leadership-note li {
  margin: 6px 0;
  line-height: 1.6;
}

.industries {
  padding: 100px 60px;
}
.industries h2 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #000091;
  margin-bottom: 44px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.industry-card {
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  padding: 24px 20px;
}
.industry-card h3 {
  color: #000091;
  margin: 0 0 8px;
  font-size: 18px;
}
.industry-card p {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.contact-cta {
  text-align: center;
  padding: 110px 60px;
}
.contact-cta h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #000091;
  margin: 0 0 14px;
}
.contact-cta p {
  color: #4a4a4a;
  font-size: 17px;
  margin: 0 0 30px;
}

.contact-page {
  padding: 90px 60px 130px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row label {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}
.form-row .optional {
  font-weight: 400;
  color: #888;
}
.form-row input,
.form-row textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  color: #111;
  background: #fff;
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #000091;
  box-shadow: 0 0 0 3px rgba(0, 0, 145, 0.12);
}
.form-row input.invalid {
  border-color: #a4231b;
}
.form-row input.invalid:focus {
  box-shadow: 0 0 0 3px rgba(164, 35, 27, 0.12);
}
.field-error {
  display: block;
  min-height: 16px;
  font-size: 13px;
  color: #a4231b;
}
.contact-form .btn-primary {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-error {
  background: #fdeceb;
  color: #a4231b;
  border: 1px solid #f3c8c4;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  margin: 0 0 20px;
}
.form-success {
  background: #f2f2ff;
  border: 1px solid #d6d6f7;
  border-radius: 14px;
  padding: 32px;
}
.form-success h3 {
  color: #000091;
  margin: 0 0 10px;
}
.form-success p {
  color: #333;
  margin: 0;
}
.contact-info {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 32px;
}
.contact-info h3 {
  color: #000091;
  font-size: 16px;
  margin: 0 0 8px;
}
.contact-info p {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.contact-info p:last-child {
  margin-bottom: 0;
}
.contact-info a {
  color: #000091;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.footer {
  background: #fafafa;
  padding: 40px 60px;
  color: #111;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo img {
  width: 40px;
  vertical-align: middle;
}
.footer-logo h2 {
  margin: 0;
  font-size: 22px;
}
.footer-logo .bold {
  font-weight: bold;
}
.footer-location {
  font-size: 13px;
  color: #767676;
  margin: 10px 0 0;
}

.footer-column h3 {
  font-size: 16px;
  color: #000091;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column li {
  margin: 6px 0;
}
.footer-column a {
  text-decoration: none;
  color: #111;
}
.footer-column a:hover {
  text-decoration: underline;
}

.footer-news h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.footer-news p {
  margin: 0 0 15px;
}

.social-icons a img {
  width: 28px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 50%;
  padding: 6px;
}

/* Blog */
:root {
  --font-serif: 'Source Serif 4', Georgia, serif;
}

.blog-hero {
  text-align: center;
  padding: 70px 60px 40px;
}
.blog-hero h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  color: #000091;
  margin: 0 0 12px;
}
.blog-hero p {
  color: #333;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.blog-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 60px 100px;
}
.blog-empty {
  text-align: center;
  color: #666;
  padding: 60px 0;
}

.post-tag {
  display: inline-block;
  background: #f2f2ff;
  color: #000091;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.post-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.post-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 40, 0.1);
  transform: translateY(-2px);
}
.post-card-media {
  aspect-ratio: 16 / 9;
}
.post-card-body {
  padding: 22px;
}
.post-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 4px 0 10px;
  color: #111;
}
.post-excerpt {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-meta {
  color: #888;
  font-size: 13px;
  margin: 0;
}

.post-card-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 320px;
  margin-bottom: 50px;
}
.post-card-featured .post-card-media {
  aspect-ratio: auto;
}
.post-card-featured .post-card-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-card-featured h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  margin: 8px 0 14px;
  color: #111;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

@media (max-width: 900px) {
  .post-card-featured {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog article */
.article-hero {
  height: 320px;
}
.article {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 24px 100px;
}
.article-back {
  display: inline-block;
  color: #000091;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
}
.article-back:hover {
  text-decoration: underline;
}
.article-tags {
  margin-bottom: 16px;
}
.article-tags .post-tag {
  margin-right: 8px;
}
.article h1 {
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1.2;
  color: #111;
  margin: 0 0 16px;
}
.article-meta {
  color: #666;
  font-size: 14px;
  margin: 0 0 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.article-body {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.7;
  color: #222;
}
.article-body h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: #111;
  margin: 44px 0 18px;
}
.article-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #111;
  margin: 36px 0 14px;
}
.article-body p {
  margin: 0 0 24px;
}
.article-body ul,
.article-body ol {
  margin: 0 0 24px;
  padding-left: 28px;
}
.article-body li {
  margin: 8px 0;
}
.article-body blockquote {
  margin: 32px 0;
  padding-left: 20px;
  border-left: 3px solid #000091;
  font-style: italic;
  color: #333;
}
.article-body code {
  font-family: "SFMono-Regular", Consolas, monospace;
  background: #f2f2ff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8em;
}
.article-body pre {
  background: #111;
  color: #f2f2ff;
  padding: 20px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.5;
}
.article-body pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.article-body a {
  color: #000091;
}
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #fff;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
}
.cookie-banner-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-banner-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  flex: 1 1 400px;
}
.cookie-banner-body a {
  color: #000091;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner-actions .btn-primary,
.cookie-banner-actions .btn-secondary {
  padding: 10px 22px;
  font-size: 15px;
  cursor: pointer;
}
.cookie-banner-actions .btn-primary {
  border: none;
}