
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  /* Primary Colors */
  --color-primary: #2563eb;
  --color-primary-dark: #1e40af;
  --color-primary-light: #3b82f6;
  --color-secondary: #059669;
  --color-accent: #f59e0b;
  
  /* Backgrounds */
  --bg-light: #ffffff;
  --bg-pale: #f8fafc;
  --bg-dark: #0f172a;
  --bg-darker: #020617;
  
  /* Text Colors */
  --text-dark: #1e293b;
  --text-light: #e2e8f0;
  --text-muted: #64748b;
  
  /* Neutral */
  --border-color: #e2e8f0;
  --border-dark: #334155;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.18);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Icon Sizes */
  --icon-sm: 20px;
  --icon-md: 32px;
  --icon-lg: 48px;
  --icon-xl: 64px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  h3 {
    font-size: 1.875rem;
  }
}

h4 {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 768px) {
  h4 {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  h4 {
    font-size: 1.375rem;
  }
}

h5 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

h6 {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

p {
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  p {
    font-size: 1rem;
  }
}

small {
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  small {
    font-size: 0.875rem;
  }
}

/* ===== LINKS ===== */
a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff !important;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background-color: #047857;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.btn-light {
  background-color: #ffffff;
  color: var(--color-primary);
  border: 2px solid #ffffff;
}

.btn-light:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-accent {
  background-color: var(--color-accent);
  color: #ffffff;
}

.btn-accent:hover {
  background-color: #d97706;
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* ===== SECTIONS ===== */
section {
  width: 100%;
  overflow: hidden;
}

/* ===== CARDS ===== */
.card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .card {
    padding: 1.5rem;
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-dark {
  background-color: #1e293b;
}

.card-dark h3,
.card-dark h4,
.card-dark p,
.card-dark a {
  color: #e2e8f0;
}

.card-dark p {
  color: #cbd5e1;
}

/* ===== GRIDS ===== */
.grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .grid {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .grid {
    gap: 2rem;
  }
}

.grid-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== FLEXBOX ===== */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-between {
  justify-content: space-between;
}

.flex-start {
  align-items: flex-start;
}

.flex-end {
  align-items: flex-end;
}

.gap-xs {
  gap: var(--space-xs);
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.gap-xl {
  gap: var(--space-xl);
}

/* ===== ICONS ===== */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-sm {
  width: var(--icon-sm);
  height: var(--icon-sm);
  font-size: var(--icon-sm);
}

.icon-md {
  width: var(--icon-md);
  height: var(--icon-md);
  font-size: var(--icon-md);
}

.icon-lg {
  width: var(--icon-lg);
  height: var(--icon-lg);
  font-size: var(--icon-lg);
}

.icon-xl {
  width: var(--icon-xl);
  height: var(--icon-xl);
  font-size: var(--icon-xl);
}

/* ===== SPACING UTILITIES ===== */
.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }
.p-2xl { padding: var(--space-2xl); }

.px-sm { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-lg { padding-left: var(--space-lg); padding-right: var(--space-lg); }

.py-sm { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-2xl { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }

.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ===== TEXT UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-normal { font-weight: 400; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.line-through { text-decoration: line-through; }
.underline { text-decoration: underline; }

/* ===== OPACITY & DISPLAY ===== */
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: 9999px; }

/* ===== BORDERS ===== */
.border { border: 1px solid var(--border-color); }
.border-dark { border: 1px solid var(--border-dark); }
.border-top { border-top: 1px solid var(--border-color); }
.border-bottom { border-bottom: 1px solid var(--border-color); }

/* ===== SECTIONS BASE STYLES ===== */
.hero-section {
  padding: 3rem 0;
  background-color: var(--bg-darker);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 6rem 0;
  }
}

.hero-section h1 {
  color: #ffffff;
}

.hero-section h2 {
  color: #f1f5f9;
}

.hero-section p {
  color: #cbd5e1;
}

.hero-section a {
  color: var(--color-primary-light);
}

.features-section {
  padding: 3rem 0;
  background-color: var(--bg-pale);
  overflow: hidden;
}

@media (min-width: 768px) {
  .features-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .features-section {
    padding: 6rem 0;
  }
}

.features-section h2 {
  color: var(--text-dark);
}

.features-section h3 {
  color: var(--text-dark);
}

.features-section p {
  color: var(--text-muted);
}

.about-section {
  padding: 3rem 0;
  background-color: #ffffff;
  overflow: hidden;
}

@media (min-width: 768px) {
  .about-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .about-section {
    padding: 6rem 0;
  }
}

.about-section h2 {
  color: var(--text-dark);
}

.about-section p {
  color: var(--text-muted);
}

.about-section a {
  color: var(--color-primary);
}

.services-section {
  padding: 3rem 0;
  background-color: var(--bg-dark);
  overflow: hidden;
}

@media (min-width: 768px) {
  .services-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .services-section {
    padding: 6rem 0;
  }
}

.services-section h2 {
  color: #ffffff;
}

.services-section h3 {
  color: #f1f5f9;
}

.services-section p {
  color: #cbd5e1;
}

.pricing-section {
  padding: 3rem 0;
  background-color: var(--bg-pale);
  overflow: hidden;
}

@media (min-width: 768px) {
  .pricing-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .pricing-section {
    padding: 6rem 0;
  }
}

.pricing-section h2 {
  color: var(--text-dark);
}

.pricing-section h3 {
  color: var(--text-dark);
}

.pricing-section p {
  color: var(--text-muted);
}

.cta-section {
  padding: 3rem 0;
  background-color: var(--color-primary);
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 5rem 0;
  }
}

.cta-section h2 {
  color: #ffffff;
}

.cta-section p {
  color: #f0f9ff;
}

.testimonials-section {
  padding: 3rem 0;
  background-color: #ffffff;
  overflow: hidden;
}

@media (min-width: 768px) {
  .testimonials-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .testimonials-section {
    padding: 6rem 0;
  }
}

.testimonials-section h2 {
  color: var(--text-dark);
}

.blog-section {
  padding: 3rem 0;
  background-color: var(--bg-pale);
  overflow: hidden;
}

@media (min-width: 768px) {
  .blog-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .blog-section {
    padding: 6rem 0;
  }
}

.blog-section h2 {
  color: var(--text-dark);
}

.faq-section {
  padding: 3rem 0;
  background-color: #ffffff;
  overflow: hidden;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .faq-section {
    padding: 6rem 0;
  }
}

.faq-section h2 {
  color: var(--text-dark);
}

.contact-section {
  padding: 3rem 0;
  background-color: var(--bg-dark);
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .contact-section {
    padding: 6rem 0;
  }
}

.contact-section h2 {
  color: #ffffff;
}

.contact-section p {
  color: #cbd5e1;
}

.contact-section label {
  color: #e2e8f0;
}

/* ===== FORMS ===== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

label {
  font-weight: 500;
  font-size: 0.875rem;
}

input,
textarea,
select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.form-submit-btn:hover {
  background-color: var(--color-primary-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.form-submit-btn:active {
  transform: translateY(0);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out;
}

.animate-slideInUp {
  animation: slideInUp 0.6s ease-out;
}

.animate-slideInDown {
  animation: slideInDown 0.6s ease-out;
}

.animate-slideInLeft {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slideInRight {
  animation: slideInRight 0.6s ease-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===== SCROLL SMOOTH ===== */
.scroll-smooth {
  scroll-behavior: smooth;
}

/* ===== UTILITIES ===== */
.max-width-md {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .max-width-md {
    width: 90%;
  }
}

@media (min-width: 1024px) {
  .max-width-md {
    width: 85%;
  }
}

.aspect-square {
  aspect-ratio: 1;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

  :root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e40af;
    --color-primary-light: #3b82f6;
    --color-secondary: #059669;
    --color-accent: #f59e0b;
    --bg-light: #ffffff;
    --bg-pale: #f8fafc;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --text-dark: #1e293b;
    --text-light: #e2e8f0;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.18);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --icon-md: 32px;
    --icon-lg: 48px;
  }

  /* Header Wrapper */
  .header-strategy-hub {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: static;
    z-index: 100;
  }

  .header-strategy-hub-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem var(--space-sm);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
  }

  @media (min-width: 768px) {
    .header-strategy-hub-container {
      padding: 1.25rem var(--space-md);
    }
  }

  @media (min-width: 1024px) {
    .header-strategy-hub-container {
      padding: 1.5rem var(--space-lg);
    }
  }

  /* Logo Section */
  .header-strategy-hub-logo {
    flex-shrink: 0;
  }

  .header-strategy-hub-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.25rem;
    font-family: var(--font-display);
    transition: color 0.3s ease;
  }

  @media (min-width: 768px) {
    .header-strategy-hub-brand {
      font-size: 1.5rem;
      gap: 0.75rem;
    }
  }

  .header-strategy-hub-brand:hover {
    color: var(--color-primary);
  }

  .header-strategy-hub-brand i {
    color: var(--color-primary);
    font-size: 1.5rem;
  }

  @media (min-width: 768px) {
    .header-strategy-hub-brand i {
      font-size: 1.75rem;
    }
  }

  /* Desktop Navigation */
  .header-strategy-hub-desktop-nav {
    display: none;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
  }

  @media (min-width: 1024px) {
    .header-strategy-hub-desktop-nav {
      display: flex;
      gap: 1rem;
    }
  }

  .header-strategy-hub-nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  @media (min-width: 1024px) {
    .header-strategy-hub-nav-link {
      font-size: 1rem;
      padding: 0.75rem 1rem;
    }
  }

  .header-strategy-hub-nav-link:hover {
    color: var(--color-primary);
    background-color: rgba(37, 99, 235, 0.08);
  }

  .header-strategy-hub-nav-link:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  /* CTA Button */
  .header-strategy-hub-cta-button {
    display: none;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
  }

  @media (min-width: 1024px) {
    .header-strategy-hub-cta-button {
      display: inline-block;
      padding: 1rem 2rem;
      font-size: 1rem;
    }
  }

  .header-strategy-hub-cta-button:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .header-strategy-hub-cta-button:focus {
    outline: 2px solid var(--color-primary-dark);
    outline-offset: 2px;
  }

  /* Mobile Toggle Button */
  .header-strategy-hub-mobile-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
  }

  @media (min-width: 1024px) {
    .header-strategy-hub-mobile-toggle {
      display: none;
    }
  }

  .header-strategy-hub-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .header-strategy-hub-mobile-toggle:hover span {
    background-color: var(--color-primary);
  }

  .header-strategy-hub-mobile-toggle:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  /* Mobile Menu */
  .header-strategy-hub-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s ease;
    z-index: 99;
    overflow-y: auto;
  }

  @media (min-width: 1024px) {
    .header-strategy-hub-mobile-menu {
      display: none;
    }
  }

  .header-strategy-hub-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .header-strategy-hub-mobile-header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem var(--space-sm);
    border-bottom: 1px solid var(--border-color);
  }

  .header-strategy-hub-mobile-close {
    background: transparent;
    border: none;
    font-size: 1.75rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
  }

  .header-strategy-hub-mobile-close:hover {
    color: var(--color-primary);
  }

  .header-strategy-hub-mobile-close:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  /* Mobile Navigation Links */
  .header-strategy-hub-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    padding: var(--space-sm) 0;
  }

  .header-strategy-hub-mobile-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem var(--space-sm);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
  }

  .header-strategy-hub-mobile-link:active {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
  }

  .header-strategy-hub-mobile-link:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
    background-color: rgba(37, 99, 235, 0.08);
  }

  /* Mobile CTA Button */
  .header-strategy-hub-mobile-cta {
    margin: var(--space-sm);
    padding: 1rem;
    background-color: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
  }

  .header-strategy-hub-mobile-cta:active {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .header-strategy-hub-mobile-cta:focus {
    outline: 2px solid var(--color-primary-dark);
    outline-offset: 2px;
  }

  /* Accessibility: Reduced Motion */
  @media (prefers-reduced-motion: reduce) {
    .header-strategy-hub-brand,
    .header-strategy-hub-nav-link,
    .header-strategy-hub-cta-button,
    .header-strategy-hub-mobile-toggle span,
    .header-strategy-hub-mobile-menu,
    .header-strategy-hub-mobile-link,
    .header-strategy-hub-mobile-cta {
      transition: none;
    }
  }

    /* ===== MARKETING HUB MAIN STYLES ===== */
  .marketing-hub {
    width: 100%;
  }

  /* ===== HERO SECTION ===== */
  .marketing-hub .hero-section {
    padding: 3rem 0;
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .marketing-hub .hero-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-hub .hero-section {
      padding: 6rem 0;
    }
  }

  .marketing-hub .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }

  @media (min-width: 1024px) {
    .marketing-hub .hero-content {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }

  .marketing-hub .hero-section h1 {
    color: #ffffff;
    margin-bottom: 1rem;
  }

  .marketing-hub .hero-subtitle {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .hero-subtitle {
      font-size: 1rem;
      margin-bottom: 2rem;
    }
  }

  .marketing-hub .hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .hero-ctas {
      flex-direction: row;
      gap: 1.5rem;
    }
  }

  .marketing-hub .hero-image {
    width: 100%;
    max-height: 350px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
  }

  @media (min-width: 1024px) {
    .marketing-hub .hero-image {
      max-height: 400px;
    }
  }

  /* ===== FEATURED SECTION ===== */
  .marketing-hub .featured-section {
    padding: 3rem 0;
    background-color: var(--bg-pale);
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .marketing-hub .featured-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-hub .featured-section {
      padding: 6rem 0;
    }
  }

  .marketing-hub .featured-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .featured-header {
      margin-bottom: 3rem;
    }
  }

  .marketing-hub .featured-section h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
  }

  .marketing-hub .featured-header p {
    color: var(--text-muted);
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .featured-header p {
      font-size: 1rem;
    }
  }

  .marketing-hub .featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .featured-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-bottom: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .marketing-hub .featured-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-bottom: 3rem;
    }
  }

  .marketing-hub .featured-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .marketing-hub .featured-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .marketing-hub .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .marketing-hub .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
  }

  @media (min-width: 768px) {
    .marketing-hub .card-body {
      padding: 2rem;
    }
  }

  .marketing-hub .featured-card h3 {
    color: var(--text-dark);
  }

  .marketing-hub .featured-card p {
    color: var(--text-muted);
    flex-grow: 1;
  }

  .marketing-hub .featured-footer {
    text-align: center;
  }

  /* ===== HOW WORKS SECTION ===== */
  .marketing-hub .how-works-section {
    padding: 3rem 0;
    background-color: #ffffff;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .marketing-hub .how-works-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-hub .how-works-section {
      padding: 6rem 0;
    }
  }

  .marketing-hub .how-works-content {
    width: 100%;
  }

  .marketing-hub .how-works-section h2 {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .marketing-hub .section-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .section-intro {
      font-size: 1rem;
      margin-bottom: 3rem;
    }
  }

  .marketing-hub .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .steps-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .marketing-hub .steps-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }
  }

  .marketing-hub .step-card {
    background-color: var(--bg-pale);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .step-card {
      padding: 2rem;
    }
  }

  .marketing-hub .step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }

  .marketing-hub .step-number {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
  }

  .marketing-hub .step-card h4 {
    color: var(--text-dark);
  }

  .marketing-hub .step-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .step-card p {
      font-size: 1rem;
    }
  }

  /* ===== CONCEPTS SECTION ===== */
  .marketing-hub .concepts-section {
    padding: 3rem 0;
    background-color: var(--bg-pale);
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .marketing-hub .concepts-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-hub .concepts-section {
      padding: 6rem 0;
    }
  }

  .marketing-hub .concepts-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }

  @media (min-width: 1024px) {
    .marketing-hub .concepts-content {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }

  .marketing-hub .concepts-section h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
  }

  .marketing-hub .concepts-text > p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .concepts-text > p {
      font-size: 1rem;
    }
  }

  .marketing-hub .concepts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .concepts-list {
      gap: 2rem;
      margin-bottom: 2.5rem;
    }
  }

  .marketing-hub .concept-item {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }

  @media (min-width: 768px) {
    .marketing-hub .concept-item {
      gap: 1.5rem;
    }
  }

  .marketing-hub .concept-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .concept-icon {
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
    }
  }

  .marketing-hub .concept-text h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
  }

  .marketing-hub .concept-text p {
    color: var(--text-muted);
    font-size: 0.75rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .concept-text p {
      font-size: 0.875rem;
    }
  }

  .marketing-hub .concepts-image {
    width: 100%;
    max-height: 350px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
  }

  @media (min-width: 1024px) {
    .marketing-hub .concepts-image {
      max-height: 400px;
    }
  }

  /* ===== STRATEGY SECTION ===== */
  .marketing-hub .strategy-section {
    padding: 3rem 0;
    background-color: #ffffff;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .marketing-hub .strategy-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-hub .strategy-section {
      padding: 6rem 0;
    }
  }

  .marketing-hub .strategy-content {
    width: 100%;
  }

  .marketing-hub .strategy-section h2 {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .marketing-hub .strategy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  @media (min-width: 768px) {
    .marketing-hub .strategy-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin: 3rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-hub .strategy-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin: 3rem 0;
    }
  }

  .marketing-hub .strategy-card {
    background-color: var(--bg-pale);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-top: 3px solid var(--color-secondary);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .strategy-card {
      padding: 2rem;
    }
  }

  .marketing-hub .strategy-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }

  .marketing-hub .strategy-card h3 {
    color: var(--text-dark);
  }

  .marketing-hub .strategy-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .strategy-card p {
      font-size: 1rem;
    }
  }

  .marketing-hub .strategy-content > a {
    display: flex;
    justify-content: center;
  }

  /* ===== FAQ SECTION ===== */
  .marketing-hub .faq-section {
    padding: 3rem 0;
    background-color: var(--bg-pale);
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .marketing-hub .faq-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-hub .faq-section {
      padding: 6rem 0;
    }
  }

  .marketing-hub .faq-content {
    width: 100%;
  }

  .marketing-hub .faq-section h2 {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .marketing-hub .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .faq-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .marketing-hub .faq-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  }

  .marketing-hub .faq-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .faq-item {
      padding: 2rem;
    }
  }

  .marketing-hub .faq-item:hover {
    box-shadow: var(--shadow-md);
  }

  .marketing-hub .faq-item h4 {
    color: var(--text-dark);
  }

  .marketing-hub .faq-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .faq-item p {
      font-size: 1rem;
    }
  }

  /* ===== CTA SECTION ===== */
  .marketing-hub .cta-section {
    padding: 3rem 0;
    background-color: var(--color-primary);
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .marketing-hub .cta-section {
      padding: 4rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-hub .cta-section {
      padding: 5rem 0;
    }
  }

  .marketing-hub .cta-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .marketing-hub .cta-section h2 {
    color: #ffffff;
  }

  .marketing-hub .cta-section p {
    color: #f0f9ff;
    font-size: 0.875rem;
    max-width: 500px;
  }

  @media (min-width: 768px) {
    .marketing-hub .cta-section p {
      font-size: 1rem;
    }
  }

  /* ===== CONTACT SECTION ===== */
  .marketing-hub .contact-section {
    padding: 3rem 0;
    background-color: var(--bg-dark);
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .marketing-hub .contact-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-hub .contact-section {
      padding: 6rem 0;
    }
  }

  .marketing-hub .contact-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .marketing-hub .contact-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .contact-header {
      margin-bottom: 3rem;
    }
  }

  .marketing-hub .contact-section h2 {
    color: #ffffff;
    margin-bottom: 0.5rem;
  }

  .marketing-hub .contact-header p {
    color: #cbd5e1;
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .contact-header p {
      font-size: 1rem;
    }
  }

  .marketing-hub .contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  @media (min-width: 768px) {
    .marketing-hub .contact-form {
      padding: 2.5rem;
    }
  }

  .marketing-hub .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .marketing-hub .contact-form label {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .contact-form label {
      font-size: 1rem;
    }
  }

  .marketing-hub .contact-form input,
  .marketing-hub .contact-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: all 0.3s ease;
  }

  .marketing-hub .contact-form input::placeholder,
  .marketing-hub .contact-form textarea::placeholder {
    color: #94a3b8;
  }

  .marketing-hub .contact-form input:focus,
  .marketing-hub .contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
  }

  .marketing-hub .form-agreement {
    margin-bottom: 1.5rem;
  }

  .marketing-hub .form-agreement p {
    color: #cbd5e1;
    font-size: 0.75rem;
  }

  @media (min-width: 768px) {
    .marketing-hub .form-agreement p {
      font-size: 0.875rem;
    }
  }

  .marketing-hub .form-agreement a {
    color: var(--color-primary-light);
    text-decoration: underline;
  }

  .marketing-hub .form-agreement a:hover {
    color: #3b82f6;
  }

  .marketing-hub .form-submit-btn {
    width: 100%;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    background-color: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
  }

  @media (min-width: 768px) {
    .marketing-hub .form-submit-btn {
      padding: 1rem 2rem;
      font-size: 1rem;
    }
  }

  .marketing-hub .form-submit-btn:hover {
    background-color: var(--color-primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }

  .marketing-hub .form-submit-btn:active {
    transform: translateY(0);
  }

  /* ===== COOKIE BANNER ===== */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0f172a;
    border-top: 1px solid #334155;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  }

  @media (min-width: 768px) {
    .cookie-banner {
      padding: 1.5rem;
    }
  }

  .cookie-banner.hidden {
    display: none;
  }

  .cookie-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  @media (min-width: 768px) {
    .cookie-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  }

  .cookie-content p {
    color: #cbd5e1;
    font-size: 0.75rem;
    flex: 1;
  }

  @media (min-width: 768px) {
    .cookie-content p {
      font-size: 0.875rem;
    }
  }

  .cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  @media (min-width: 768px) {
    .cookie-actions {
      flex-direction: row;
      gap: 1rem;
      width: auto;
    }
  }

  .cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  @media (min-width: 768px) {
    .cookie-btn {
      padding: 0.75rem 1.5rem;
      font-size: 0.875rem;
    }
  }

  .cookie-accept {
    background-color: var(--color-primary);
    color: #ffffff;
  }

  .cookie-accept:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
  }

  .cookie-decline {
    background-color: transparent;
    color: #cbd5e1;
    border: 1px solid #475569;
  }

  .cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #64748b;
  }

    /* Footer Component Styles */
.footer {
  background-color: var(--bg-darker);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .footer {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 6rem 0;
  }
}

.footer .container {
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .footer .container {
    padding: 0 2rem;
  }
}

/* Main Content Wrapper */
.footer-content {
  display: block;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

/* About Section */
.footer-about {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.1);
}

@media (min-width: 768px) {
  .footer-about {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .footer-about {
    grid-column: span 1;
  }
}

.footer-about-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-about-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.footer-about-text {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer-about-text {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* Navigation Section */
.footer-nav {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.1);
}

@media (min-width: 768px) {
  .footer-nav {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}

.footer-nav-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-nav-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .footer-nav-list {
    gap: 1rem;
  }
}

/* Legal Section */
.footer-legal {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.1);
}

@media (min-width: 768px) {
  .footer-legal {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}

.footer-legal-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-legal-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.footer-legal-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .footer-legal-list {
    gap: 1rem;
  }
}

/* Footer Links */
.footer-link {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 250ms ease-in-out;
  display: inline-block;
}

@media (min-width: 768px) {
  .footer-link {
    font-size: 1rem;
  }
}

.footer-link:hover {
  color: var(--color-primary-light);
  transform: translateX(4px);
}

.footer-link:focus {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Copyright Section */
.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(226, 232, 240, 0.1);
}

@media (min-width: 768px) {
  .footer-copyright {
    padding-top: 2.5rem;
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .footer-copyright {
    padding-top: 3rem;
  }
}

.footer-copyright-text {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .footer-copyright-text {
    font-size: 0.875rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .footer-link {
    transition: none;
  }

  .footer-link:hover {
    transform: none;
  }
}
    

/* Category Page Styles */
/* ===== CATEGORY PAGE: MARKETING FUNDAMENTALS KAZAKHSTAN ===== */

/* Hero Section */
.category-hero-marketing-fundamentals-kazakhstan {
  background-color: var(--bg-darker);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .category-hero-marketing-fundamentals-kazakhstan {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .category-hero-marketing-fundamentals-kazakhstan {
    padding: 6rem 0;
  }
}

.hero-content-marketing-fundamentals-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content-marketing-fundamentals-kazakhstan {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-content-marketing-fundamentals-kazakhstan {
    gap: 2.5rem;
  }
}

.category-hero-marketing-fundamentals-kazakhstan h1 {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .category-hero-marketing-fundamentals-kazakhstan h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .category-hero-marketing-fundamentals-kazakhstan h1 {
    font-size: 3.75rem;
  }
}

.category-hero-marketing-fundamentals-kazakhstan p {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .category-hero-marketing-fundamentals-kazakhstan p {
    font-size: 1rem;
  }
}

/* Posts Grid Section */
.posts-grid-section-marketing-fundamentals-kazakhstan {
  background-color: var(--bg-pale);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .posts-grid-section-marketing-fundamentals-kazakhstan {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .posts-grid-section-marketing-fundamentals-kazakhstan {
    padding: 6rem 0;
  }
}

.posts-grid-marketing-fundamentals-kazakhstan {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .posts-grid-marketing-fundamentals-kazakhstan {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .posts-grid-marketing-fundamentals-kazakhstan {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Post Cards */
.card-marketing-fundamentals-kazakhstan {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

@media (min-width: 768px) {
  .card-marketing-fundamentals-kazakhstan {
    padding: 1.5rem;
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .card-marketing-fundamentals-kazakhstan {
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

.card-marketing-fundamentals-kazakhstan:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-marketing-fundamentals-kazakhstan img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

@media (min-width: 768px) {
  .card-marketing-fundamentals-kazakhstan img {
    height: 220px;
  }
}

@media (min-width: 1024px) {
  .card-marketing-fundamentals-kazakhstan img {
    height: 240px;
  }
}

.card-marketing-fundamentals-kazakhstan h3 {
  color: var(--text-dark);
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 600;
}

@media (min-width: 768px) {
  .card-marketing-fundamentals-kazakhstan h3 {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .card-marketing-fundamentals-kazakhstan h3 {
    font-size: 1.375rem;
  }
}

.card-marketing-fundamentals-kazakhstan p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .card-marketing-fundamentals-kazakhstan p {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .card-marketing-fundamentals-kazakhstan p {
    font-size: 0.975rem;
  }
}

.card-marketing-fundamentals-kazakhstan a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .card-marketing-fundamentals-kazakhstan a {
    font-size: 0.9375rem;
  }
}

.card-marketing-fundamentals-kazakhstan a:hover {
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

.card-marketing-fundamentals-kazakhstan a::after {
  content: '→';
  transition: transform 0.3s ease;
}

.card-marketing-fundamentals-kazakhstan a:hover::after {
  transform: translateX(4px);
}

/* Additional Section 1: Concepts */
.additional-section-1-marketing-fundamentals-kazakhstan {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .additional-section-1-marketing-fundamentals-kazakhstan {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .additional-section-1-marketing-fundamentals-kazakhstan {
    padding: 6rem 0;
  }
}

.additional-content-1-marketing-fundamentals-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .additional-content-1-marketing-fundamentals-kazakhstan {
    gap: 2.5rem;
  }
}

.additional-section-1-marketing-fundamentals-kazakhstan h2 {
  color: var(--text-dark);
  font-size: 1.75rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .additional-section-1-marketing-fundamentals-kazakhstan h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .additional-section-1-marketing-fundamentals-kazakhstan h2 {
    font-size: 2.75rem;
  }
}

.additional-section-1-marketing-fundamentals-kazakhstan > .container > div > p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .additional-section-1-marketing-fundamentals-kazakhstan > .container > div > p {
    font-size: 1rem;
  }
}

.concepts-list-marketing-fundamentals-kazakhstan {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .concepts-list-marketing-fundamentals-kazakhstan {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .concepts-list-marketing-fundamentals-kazakhstan {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.concept-item-marketing-fundamentals-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background-color: var(--bg-pale);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .concept-item-marketing-fundamentals-kazakhstan {
    gap: 1rem;
    padding: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .concept-item-marketing-fundamentals-kazakhstan {
    padding: 2rem;
  }
}

.concept-item-marketing-fundamentals-kazakhstan:hover {
  background-color: #ecf0f1;
  box-shadow: var(--shadow-md);
}

.concept-item-marketing-fundamentals-kazakhstan h4 {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .concept-item-marketing-fundamentals-kazakhstan h4 {
    font-size: 1.125rem;
  }
}

.concept-item-marketing-fundamentals-kazakhstan h4 i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.concept-item-marketing-fundamentals-kazakhstan p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .concept-item-marketing-fundamentals-kazakhstan p {
    font-size: 0.9375rem;
  }
}

/* Additional Section 2: Kazakhstan Context */
.additional-section-2-marketing-fundamentals-kazakhstan {
  background-color: var(--bg-pale);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .additional-section-2-marketing-fundamentals-kazakhstan {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .additional-section-2-marketing-fundamentals-kazakhstan {
    padding: 6rem 0;
  }
}

.additional-content-2-marketing-fundamentals-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .additional-content-2-marketing-fundamentals-kazakhstan {
    gap: 2.5rem;
  }
}

.additional-section-2-marketing-fundamentals-kazakhstan h2 {
  color: var(--text-dark);
  font-size: 1.75rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .additional-section-2-marketing-fundamentals-kazakhstan h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .additional-section-2-marketing-fundamentals-kazakhstan h2 {
    font-size: 2.75rem;
  }
}

.additional-section-2-marketing-fundamentals-kazakhstan > .container > div > p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .additional-section-2-marketing-fundamentals-kazakhstan > .container > div > p {
    font-size: 1rem;
  }
}

.context-items-marketing-fundamentals-kazakhstan {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .context-items-marketing-fundamentals-kazakhstan {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .context-items-marketing-fundamentals-kazakhstan {
    gap: 2.5rem;
  }
}

.context-item-marketing-fundamentals-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-top: 3px solid var(--color-secondary);
}

@media (min-width: 768px) {
  .context-item-marketing-fundamentals-kazakhstan {
    gap: 1rem;
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .context-item-marketing-fundamentals-kazakhstan {
    padding: 2.25rem;
  }
}

.context-item-marketing-fundamentals-kazakhstan:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.context-item-marketing-fundamentals-kazakhstan h3 {
  color: var(--text-dark);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .context-item-marketing-fundamentals-kazakhstan h3 {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .context-item-marketing-fundamentals-kazakhstan h3 {
    font-size: 1.375rem;
  }
}

.context-item-marketing-fundamentals-kazakhstan p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .context-item-marketing-fundamentals-kazakhstan p {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .context-item-marketing-fundamentals-kazakhstan p {
    font-size: 1rem;
  }
}

/* Main Container */
.main.category-page-marketing-fundamentals-kazakhstan {
  width: 100%;
}

/* Post Page 1 Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

    .post-target-audience-segmentation {
      width: 100%;
      overflow: hidden;
    }

    /* ===== BREADCRUMBS ===== */
    .post-target-audience-segmentation .target-audience-segmentation-breadcrumbs {
      background-color: #f8fafc;
      padding: 1rem 0;
      border-bottom: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-breadcrumbs {
        padding: 1.5rem 0;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-breadcrumbs .container {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-breadcrumbs .container {
        font-size: 1rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-breadcrumbs a {
      color: #2563eb;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .post-target-audience-segmentation .target-audience-segmentation-breadcrumbs a:hover {
      color: #1e40af;
      text-decoration: underline;
    }

    .post-target-audience-segmentation .target-audience-segmentation-breadcrumbs span {
      color: #64748b;
    }

    /* ===== HERO SECTION ===== */
    .post-target-audience-segmentation .target-audience-segmentation-hero {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-hero {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-target-audience-segmentation .target-audience-segmentation-hero {
        padding: 5rem 0;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      position: relative;
      z-index: 1;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-hero-content {
        gap: 2rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-hero h1 {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.2;
      color: #ffffff;
      font-family: 'Playfair Display', serif;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .post-target-audience-segmentation .target-audience-segmentation-hero h1 {
        font-size: 3.5rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-hero-lead {
      font-size: 0.875rem;
      line-height: 1.7;
      color: #cbd5e1;
      max-width: 600px;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-hero-lead {
        font-size: 1rem;
        line-height: 1.8;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-hero-meta {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.75rem;
      color: #94a3b8;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-hero-meta {
        font-size: 0.875rem;
      }
    }

    /* ===== CONTENT SECTION 1 ===== */
    .post-target-audience-segmentation .target-audience-segmentation-content-1 {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-1 {
        padding: 4.5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-1 {
        padding: 6rem 0;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-content-1-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-1-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-content-1 h2 {
      font-size: 1.75rem;
      font-weight: 700;
      line-height: 1.3;
      color: #1e293b;
      font-family: 'Playfair Display', serif;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-1 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-1 h2 {
        font-size: 2.75rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-content-1 p {
      font-size: 0.875rem;
      line-height: 1.7;
      color: #475569;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-1 p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1.25rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-content-1-image {
      width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
      object-fit: cover;
      aspect-ratio: 16/10;
    }

    /* ===== CONTENT SECTION 2 ===== */
    .post-target-audience-segmentation .target-audience-segmentation-content-2 {
      background-color: #f8fafc;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-2 {
        padding: 4.5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-2 {
        padding: 6rem 0;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-content-2-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-2-content {
        gap: 2.5rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-content-2 h2 {
      font-size: 1.75rem;
      font-weight: 700;
      line-height: 1.3;
      color: #1e293b;
      font-family: 'Playfair Display', serif;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-2 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-2 h2 {
        font-size: 2.75rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-content-2 p {
      font-size: 0.875rem;
      line-height: 1.7;
      color: #475569;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-2 p {
        font-size: 1rem;
        line-height: 1.8;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-segment-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-segment-list {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-segment-card {
      background-color: #ffffff;
      padding: 1.5rem;
      border-radius: 12px;
      border-left: 4px solid #2563eb;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-segment-card {
        padding: 2rem;
        gap: 1rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-segment-card:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
      transform: translateY(-2px);
    }

    .post-target-audience-segmentation .target-audience-segmentation-segment-card h3 {
      font-size: 1.125rem;
      font-weight: 600;
      color: #1e293b;
      font-family: 'Playfair Display', serif;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-segment-card h3 {
        font-size: 1.375rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-segment-card p {
      font-size: 0.875rem;
      line-height: 1.6;
      color: #64748b;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-segment-card p {
        font-size: 0.9375rem;
      }
    }

    /* ===== DISCLAIMER SECTION ===== */
    .post-target-audience-segmentation .target-audience-segmentation-disclaimer {
      background-color: #ecf0f1;
      padding: 2rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-disclaimer {
        padding: 3rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-target-audience-segmentation .target-audience-segmentation-disclaimer {
        padding: 3.5rem 0;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-disclaimer-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .post-target-audience-segmentation .target-audience-segmentation-disclaimer-header {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .post-target-audience-segmentation .target-audience-segmentation-disclaimer-icon {
      font-size: 1.5rem;
      color: #059669;
      flex-shrink: 0;
      margin-top: 0.25rem;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-disclaimer-icon {
        font-size: 1.75rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-disclaimer h3 {
      font-size: 1.125rem;
      font-weight: 600;
      color: #1e293b;
      font-family: 'Playfair Display', serif;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-disclaimer h3 {
        font-size: 1.375rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-disclaimer p {
      font-size: 0.875rem;
      line-height: 1.7;
      color: #475569;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-disclaimer p {
        font-size: 0.9375rem;
        line-height: 1.8;
      }
    }

    /* ===== CONTENT SECTION 3 ===== */
    .post-target-audience-segmentation .target-audience-segmentation-content-3 {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-3 {
        padding: 4.5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-3 {
        padding: 6rem 0;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-content-3-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-3-content {
        gap: 2.5rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-content-3 h2 {
      font-size: 1.75rem;
      font-weight: 700;
      line-height: 1.3;
      color: #1e293b;
      font-family: 'Playfair Display', serif;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-3 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-3 h2 {
        font-size: 2.75rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-content-3 p {
      font-size: 0.875rem;
      line-height: 1.7;
      color: #475569;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-3 p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1.25rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-approach-list {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-approach-list {
        gap: 1.5rem;
        margin: 2rem 0;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-approach-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .post-target-audience-segmentation .target-audience-segmentation-approach-icon {
      font-size: 1.5rem;
      color: #2563eb;
      flex-shrink: 0;
      margin-top: 0.125rem;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-approach-icon {
        font-size: 1.75rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-approach-text {
      flex: 1;
    }

    .post-target-audience-segmentation .target-audience-segmentation-approach-title {
      font-size: 0.9375rem;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 0.375rem;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-approach-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-approach-desc {
      font-size: 0.8125rem;
      line-height: 1.6;
      color: #64748b;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-approach-desc {
        font-size: 0.875rem;
        line-height: 1.7;
      }
    }

    /* ===== CONTENT SECTION 4 ===== */
    .post-target-audience-segmentation .target-audience-segmentation-content-4 {
      background-color: #f8fafc;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-4 {
        padding: 4.5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-4 {
        padding: 6rem 0;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-content-4-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-4-content {
        gap: 2.5rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-content-4 h2 {
      font-size: 1.75rem;
      font-weight: 700;
      line-height: 1.3;
      color: #1e293b;
      font-family: 'Playfair Display', serif;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-4 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-4 h2 {
        font-size: 2.75rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-content-4 p {
      font-size: 0.875rem;
      line-height: 1.7;
      color: #475569;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-content-4 p {
        font-size: 1rem;
        line-height: 1.8;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-benefits-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-benefit-item {
      background-color: #ffffff;
      padding: 1.5rem;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-benefit-item {
        padding: 2rem;
        gap: 1rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-benefit-item:hover {
      box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
      transform: translateY(-2px);
    }

    .post-target-audience-segmentation .target-audience-segmentation-benefit-icon {
      font-size: 2rem;
      color: #059669;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-benefit-icon {
        font-size: 2.25rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-benefit-item h3 {
      font-size: 1.125rem;
      font-weight: 600;
      color: #1e293b;
      font-family: 'Playfair Display', serif;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-benefit-item h3 {
        font-size: 1.375rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-benefit-item p {
      font-size: 0.8125rem;
      line-height: 1.6;
      color: #64748b;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-benefit-item p {
        font-size: 0.875rem;
        line-height: 1.7;
      }
    }

    /* ===== CONCLUSION SECTION ===== */
    .post-target-audience-segmentation .target-audience-segmentation-conclusion {
      background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-conclusion {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-target-audience-segmentation .target-audience-segmentation-conclusion {
        padding: 5rem 0;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-conclusion-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 700px;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-conclusion-content {
        gap: 2rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-conclusion h2 {
      font-size: 1.75rem;
      font-weight: 700;
      line-height: 1.3;
      color: #ffffff;
      font-family: 'Playfair Display', serif;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-conclusion h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-target-audience-segmentation .target-audience-segmentation-conclusion h2 {
        font-size: 2.5rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-conclusion p {
      font-size: 0.875rem;
      line-height: 1.7;
      color: #cbd5e1;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-conclusion p {
        font-size: 1rem;
        line-height: 1.8;
      }
    }

    /* ===== RELATED POSTS SECTION ===== */
    .post-target-audience-segmentation .target-audience-segmentation-related {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-related {
        padding: 4.5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-target-audience-segmentation .target-audience-segmentation-related {
        padding: 6rem 0;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-related-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-related-content {
        gap: 3rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-related h2 {
      font-size: 1.75rem;
      font-weight: 700;
      line-height: 1.3;
      color: #1e293b;
      font-family: 'Playfair Display', serif;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-related h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-target-audience-segmentation .target-audience-segmentation-related h2 {
        font-size: 2.75rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-target-audience-segmentation .target-audience-segmentation-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-related-card {
      background-color: #f8fafc;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .post-target-audience-segmentation .target-audience-segmentation-related-card:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      transform: translateY(-4px);
    }

    .post-target-audience-segmentation .target-audience-segmentation-related-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      background-color: #e2e8f0;
    }

    .post-target-audience-segmentation .target-audience-segmentation-related-card-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      flex: 1;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-related-card-body {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-related-card h3 {
      font-size: 1.125rem;
      font-weight: 600;
      line-height: 1.4;
      color: #1e293b;
      font-family: 'Playfair Display', serif;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-related-card h3 {
        font-size: 1.375rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-related-card p {
      font-size: 0.8125rem;
      line-height: 1.6;
      color: #64748b;
      flex: 1;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-related-card p {
        font-size: 0.875rem;
        line-height: 1.7;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-related-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: #2563eb;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    @media (min-width: 768px) {
      .post-target-audience-segmentation .target-audience-segmentation-related-link {
        font-size: 0.9375rem;
      }
    }

    .post-target-audience-segmentation .target-audience-segmentation-related-link:hover {
      color: #1e40af;
      gap: 0.75rem;
    }

    .post-target-audience-segmentation .target-audience-segmentation-related-link i {
      font-size: 1rem;
    }

    /* ===== UTILITY CLASSES ===== */
    .container {
      max-width: 1440px;
      width: 100%;
      margin: 0 auto;
      padding: 0 1rem;
    }

    @media (min-width: 768px) {
      .container {
        padding: 0 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .container {
        padding: 0 2rem;
      }
    }

/* Post Page 2 Styles */
/* ===== POST DIGITAL MARKETING PRINCIPLES STYLES ===== */

.post-digital-marketing-principles {
  width: 100%;
}

/* ===== BREADCRUMBS ===== */
.post-digital-marketing-principles .digital-marketing-principles-breadcrumbs {
  background-color: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-breadcrumbs {
    padding: 1.25rem 0;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-breadcrumbs-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-digital-marketing-principles .digital-marketing-principles-breadcrumb-link {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-breadcrumb-link {
    font-size: 0.9375rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-breadcrumb-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-digital-marketing-principles .digital-marketing-principles-breadcrumb-separator {
  color: #cbd5e1;
  font-size: 0.75rem;
  margin: 0 0.25rem;
}

.post-digital-marketing-principles .digital-marketing-principles-breadcrumb-current {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-breadcrumb-current {
    font-size: 0.9375rem;
  }
}

/* ===== HERO SECTION ===== */
.post-digital-marketing-principles .digital-marketing-principles-hero {
  background-color: var(--bg-darker);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-hero {
    padding: 5rem 0;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-hero-content {
    gap: 2rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-hero-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-hero-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-hero-title {
    font-size: 3.5rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-hero-lead {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 95%;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-hero-lead {
    font-size: 1.0625rem;
    max-width: 90%;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-hero-lead {
    font-size: 1.125rem;
    max-width: 85%;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-hero-meta {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-top: 1rem;
}

.post-digital-marketing-principles .digital-marketing-principles-read-time {
  color: #94a3b8;
  font-size: 0.75rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-read-time {
    font-size: 0.875rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-read-time i {
  font-size: 0.875rem;
}

/* ===== SECTION 1 ===== */
.post-digital-marketing-principles .digital-marketing-principles-section-1 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-section-1 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-section-1 {
    padding: 5rem 0;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-content-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-content-1 {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-text-block {
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-text-block {
    gap: 2rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-image-block {
  width: 100%;
  height: auto;
}

.post-digital-marketing-principles .digital-marketing-principles-section-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.post-digital-marketing-principles .digital-marketing-principles-section-title {
  color: var(--text-dark);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-section-title {
    font-size: 2.5rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-section-text {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-section-text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-key-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 1rem 0;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-key-points {
    gap: 1.125rem;
    margin: 1.5rem 0;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-point {
  color: var(--text-dark);
  font-size: 0.875rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-point {
    font-size: 0.9375rem;
    gap: 1rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-point i {
  color: var(--color-secondary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* ===== SECTION 2 ===== */
.post-digital-marketing-principles .digital-marketing-principles-section-2 {
  background-color: #f8fafc;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-section-2 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-section-2 {
    padding: 5rem 0;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-content-2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-content-2 {
    gap: 2.5rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-intro-text {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-intro-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-components-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-components-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-components-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-component-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-component-card {
    padding: 1.75rem;
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-component-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-component-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-digital-marketing-principles .digital-marketing-principles-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: #f0f9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 24px;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-card-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-card-title {
  color: var(--text-dark);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-card-title {
    font-size: 1.25rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-card-text {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-card-text {
    font-size: 0.9375rem;
  }
}

/* ===== DISCLAIMER SECTION ===== */
.post-digital-marketing-principles .digital-marketing-principles-disclaimer {
  background-color: #ecf0f1;
  padding: 2.5rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-disclaimer {
    padding: 3rem 0;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-disclaimer {
    padding: 3.5rem 0;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-disclaimer-content {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: #ffffff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-disclaimer-content {
    gap: 2rem;
    padding: 2rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-disclaimer-icon {
  font-size: 28px;
  color: var(--color-primary);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-disclaimer-icon {
    font-size: 32px;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-disclaimer-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-digital-marketing-principles .digital-marketing-principles-disclaimer-title {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-disclaimer-title {
    font-size: 1.125rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-disclaimer-body {
  color: var(--text-muted);
  font-size: 0.8125rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-disclaimer-body {
    font-size: 0.875rem;
  }
}

/* ===== SECTION 3 ===== */
.post-digital-marketing-principles .digital-marketing-principles-section-3 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-section-3 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-section-3 {
    padding: 5rem 0;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-content-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-content-3 {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-image-block-left {
  order: -1;
  width: 100%;
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-image-block-left {
    order: 0;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-subsection-title {
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-subsection-title {
    font-size: 1.375rem;
    margin: 2rem 0 1.25rem 0;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-numbered-list {
  list-style: none;
  counter-reset: list-counter;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-numbered-list {
    gap: 1.25rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-list-item {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  counter-increment: list-counter;
  padding-left: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-list-item {
    font-size: 1rem;
    padding-left: 2.5rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-list-item:before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-primary);
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===== SECTION 4 ===== */
.post-digital-marketing-principles .digital-marketing-principles-section-4 {
  background-color: #f8fafc;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-section-4 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-section-4 {
    padding: 5rem 0;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-content-4 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-content-4 {
    gap: 2.5rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-personalization-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-personalization-blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-personalization-blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-benefit-block {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-benefit-block {
    padding: 1.75rem;
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-benefit-block {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-benefit-title {
  color: var(--text-dark);
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-benefit-title {
    font-size: 1.25rem;
    gap: 1rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-benefit-title i {
  color: var(--color-secondary);
  font-size: 20px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-benefit-title i {
    font-size: 24px;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-benefit-text {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-benefit-text {
    font-size: 0.9375rem;
  }
}

/* ===== SECTION 5 ===== */
.post-digital-marketing-principles .digital-marketing-principles-section-5 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-section-5 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-section-5 {
    padding: 5rem 0;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-content-5 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-content-5 {
    gap: 2.5rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-metrics-highlight {
  background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-metrics-highlight {
    padding: 2rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-highlight-title {
  color: var(--text-dark);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-highlight-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-metrics-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-metrics-list {
    gap: 1.25rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-metric-item {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-metric-item {
    font-size: 0.9375rem;
    padding-left: 2rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-metric-item:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: bold;
}

.post-digital-marketing-principles .digital-marketing-principles-metric-label {
  color: var(--text-dark);
  font-weight: 600;
}

/* ===== SECTION 6 ===== */
.post-digital-marketing-principles .digital-marketing-principles-section-6 {
  background-color: #f8fafc;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-section-6 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-section-6 {
    padding: 5rem 0;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-content-6 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-content-6 {
    gap: 1.75rem;
  }
}

/* ===== RELATED POSTS SECTION ===== */
.post-digital-marketing-principles .digital-marketing-principles-related {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-related {
    padding: 5rem 0;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-related-content {
    gap: 2.5rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-related-title {
  color: var(--text-dark);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-related-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-related-title {
    font-size: 2.5rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-related-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.post-digital-marketing-principles .digital-marketing-principles-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-digital-marketing-principles .digital-marketing-principles-related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f0f9ff;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-related-card-image {
    height: 220px;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-related-card-image {
    height: 240px;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-related-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-digital-marketing-principles .digital-marketing-principles-related-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-related-card-content {
    padding: 1.75rem;
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .post-digital-marketing-principles .digital-marketing-principles-related-card-content {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-related-card-title {
  color: var(--text-dark);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-related-card-title {
    font-size: 1.25rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-related-card-description {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-related-card-description {
    font-size: 0.9375rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-related-card-link {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-related-card-link {
    font-size: 0.9375rem;
    gap: 0.625rem;
  }
}

.post-digital-marketing-principles .digital-marketing-principles-related-card-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.post-digital-marketing-principles .digital-marketing-principles-related-card-link i {
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .post-digital-marketing-principles .digital-marketing-principles-related-card-link i {
    font-size: 0.875rem;
  }
}

/* ===== FONT AWESOME ICONS ===== */
.post-digital-marketing-principles .fas {
  display: inline-block;
}

/* Post Page 3 Styles */
.post-business-strategy-development {
      width: 100%;
      overflow: hidden;
    }

    /* ===== BREADCRUMBS ===== */
    .business-strategy-development-breadcrumbs {
      background-color: #f8fafc;
      padding: 1rem 0;
      border-bottom: 1px solid #e2e8f0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .business-strategy-development-breadcrumbs {
        padding: 1.5rem 0;
      }
    }

    .post-business-strategy-development .business-strategy-development-breadcrumbs a,
    .post-business-strategy-development .business-strategy-development-breadcrumbs span {
      font-size: 0.875rem;
      color: #64748b;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-breadcrumbs a,
      .post-business-strategy-development .business-strategy-development-breadcrumbs span {
        font-size: 1rem;
      }
    }

    .post-business-strategy-development .business-strategy-development-breadcrumbs a:hover {
      color: #2563eb;
    }

    .post-business-strategy-development .business-strategy-development-breadcrumbs span {
      color: #1e293b;
      font-weight: 600;
    }

    .business-strategy-development-breadcrumbs .container {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    /* ===== HERO SECTION ===== */
    .business-strategy-development-hero {
      background-color: #0f172a;
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

    @media (min-width: 768px) {
      .business-strategy-development-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .business-strategy-development-hero {
        padding: 6rem 0;
      }
    }

    .business-strategy-development-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 900px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .business-strategy-development-hero-content {
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .business-strategy-development-hero-content {
        gap: 2.5rem;
      }
    }

    .post-business-strategy-development .business-strategy-development-hero h1 {
      color: #ffffff;
      font-size: 2rem;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-hero h1 {
        font-size: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-business-strategy-development .business-strategy-development-hero h1 {
        font-size: 3.75rem;
      }
    }

    .post-business-strategy-development .business-strategy-development-hero-lead {
      color: #cbd5e1;
      font-size: 0.875rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-hero-lead {
        font-size: 1rem;
      }
    }

    @media (min-width: 1024px) {
      .post-business-strategy-development .business-strategy-development-hero-lead {
        font-size: 1.125rem;
        max-width: 750px;
      }
    }

    .business-strategy-development-hero-meta {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      font-size: 0.75rem;
    }

    @media (min-width: 768px) {
      .business-strategy-development-hero-meta {
        font-size: 0.875rem;
        gap: 1.5rem;
      }
    }

    .post-business-strategy-development .business-strategy-development-hero-meta span {
      color: #94a3b8;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
    }

    /* ===== CONTENT SECTIONS ===== */
    .business-strategy-development-content-section {
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .business-strategy-development-content-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .business-strategy-development-content-section {
        padding: 6rem 0;
      }
    }

    /* Section 1 */
    .business-strategy-development-section-1 {
      background-color: #ffffff;
    }

    .post-business-strategy-development .business-strategy-development-section-1 h2 {
      color: #1e293b;
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-section-1 h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-business-strategy-development .business-strategy-development-section-1 h2 {
        font-size: 3rem;
        margin-bottom: 2.5rem;
      }
    }

    .post-business-strategy-development .business-strategy-development-section-1 p {
      color: #475569;
      font-size: 0.875rem;
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-section-1 p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }
    }

    /* Section 2 */
    .business-strategy-development-section-2 {
      background-color: #f8fafc;
    }

    .business-strategy-development-section-2-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .business-strategy-development-section-2-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
      }
    }

    .post-business-strategy-development .business-strategy-development-section-2 h2 {
      color: #1e293b;
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
      grid-column: 1 / -1;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-section-2 h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-business-strategy-development .business-strategy-development-section-2 h2 {
        font-size: 3rem;
        margin-bottom: 0;
      }
    }

    .post-business-strategy-development .business-strategy-development-section-2 p {
      color: #475569;
      font-size: 0.875rem;
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-section-2 p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }
    }

    .business-strategy-development-section-2-image {
      width: 100%;
      height: 300px;
      border-radius: 12px;
      object-fit: cover;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    @media (min-width: 768px) {
      .business-strategy-development-section-2-image {
        height: 350px;
      }
    }

    @media (min-width: 1024px) {
      .business-strategy-development-section-2-image {
        height: 400px;
      }
    }

    .business-strategy-development-section-2-text {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    /* Section 3 */
    .business-strategy-development-section-3 {
      background-color: #ffffff;
    }

    .business-strategy-development-section-3-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-business-strategy-development .business-strategy-development-section-3 h2 {
      color: #1e293b;
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-section-3 h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-business-strategy-development .business-strategy-development-section-3 h2 {
        font-size: 3rem;
        margin-bottom: 2.5rem;
      }
    }

    .business-strategy-development-list-item {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding: 1rem;
      background-color: #f8fafc;
      border-radius: 8px;
      border-left: 4px solid #2563eb;
    }

    @media (min-width: 768px) {
      .business-strategy-development-list-item {
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding: 1.5rem;
      }
    }

    .business-strategy-development-list-icon {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #dbeafe;
      border-radius: 50%;
      color: #2563eb;
      font-size: 16px;
    }

    @media (min-width: 768px) {
      .business-strategy-development-list-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
      }
    }

    .business-strategy-development-list-text {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .post-business-strategy-development .business-strategy-development-list-text h3 {
      color: #1e293b;
      font-size: 1rem;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-list-text h3 {
        font-size: 1.125rem;
      }
    }

    .post-business-strategy-development .business-strategy-development-list-text p {
      color: #64748b;
      font-size: 0.875rem;
      margin: 0;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-list-text p {
        font-size: 1rem;
      }
    }

    /* Section 4 */
    .business-strategy-development-section-4 {
      background-color: #f0f9ff;
      border-left: 6px solid #2563eb;
    }

    .post-business-strategy-development .business-strategy-development-section-4 h2 {
      color: #1e293b;
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-section-4 h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-business-strategy-development .business-strategy-development-section-4 h2 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
      }
    }

    .post-business-strategy-development .business-strategy-development-section-4 p {
      color: #1e293b;
      font-size: 0.875rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-section-4 p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }
    }

    /* Section 5 */
    .business-strategy-development-section-5 {
      background-color: #ffffff;
    }

    .post-business-strategy-development .business-strategy-development-section-5 h2 {
      color: #1e293b;
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-section-5 h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-business-strategy-development .business-strategy-development-section-5 h2 {
        font-size: 3rem;
        margin-bottom: 2.5rem;
      }
    }

    .business-strategy-development-section-5-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .business-strategy-development-section-5-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .business-strategy-development-section-5-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2.5rem;
      }
    }

    .business-strategy-development-card {
      background-color: #f8fafc;
      border-radius: 12px;
      padding: 1.5rem;
      border-top: 4px solid #2563eb;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .business-strategy-development-card {
        padding: 2rem;
        gap: 1.5rem;
      }
    }

    .business-strategy-development-card:hover {
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
      transform: translateY(-4px);
    }

    .post-business-strategy-development .business-strategy-development-card h3 {
      color: #1e293b;
      font-size: 1.125rem;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-card h3 {
        font-size: 1.25rem;
      }
    }

    .post-business-strategy-development .business-strategy-development-card p {
      color: #64748b;
      font-size: 0.875rem;
      margin: 0;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-card p {
        font-size: 1rem;
      }
    }

    /* ===== DISCLAIMER SECTION ===== */
    .business-strategy-development-disclaimer {
      background-color: #fef3c7;
      border-left: 6px solid #f59e0b;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .business-strategy-development-disclaimer {
        padding: 4rem 0;
      }
    }

    .business-strategy-development-disclaimer-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .business-strategy-development-disclaimer-content {
        gap: 2rem;
      }
    }

    .business-strategy-development-disclaimer-header {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 1rem;
    }

    .business-strategy-development-disclaimer-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #f59e0b;
      color: #ffffff;
      border-radius: 50%;
      font-size: 16px;
      margin-top: 0.25rem;
    }

    @media (min-width: 768px) {
      .business-strategy-development-disclaimer-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
      }
    }

    .post-business-strategy-development .business-strategy-development-disclaimer h3 {
      color: #92400e;
      font-size: 1.125rem;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-disclaimer h3 {
        font-size: 1.25rem;
      }
    }

    .post-business-strategy-development .business-strategy-development-disclaimer p {
      color: #78350f;
      font-size: 0.875rem;
      line-height: 1.7;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-disclaimer p {
        font-size: 1rem;
      }
    }

    /* ===== RELATED POSTS SECTION ===== */
    .business-strategy-development-related {
      background-color: #f8fafc;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .business-strategy-development-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .business-strategy-development-related {
        padding: 6rem 0;
      }
    }

    .post-business-strategy-development .business-strategy-development-related h2 {
      color: #1e293b;
      font-size: 1.75rem;
      margin-bottom: 2rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-related h2 {
        font-size: 2.25rem;
        margin-bottom: 3rem;
      }
    }

    @media (min-width: 1024px) {
      .post-business-strategy-development .business-strategy-development-related h2 {
        font-size: 3rem;
        margin-bottom: 4rem;
      }
    }

    .business-strategy-development-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .business-strategy-development-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .business-strategy-development-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .business-strategy-development-related-card {
      background-color: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .business-strategy-development-related-card:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      transform: translateY(-4px);
    }

    .business-strategy-development-related-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .business-strategy-development-related-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      flex-grow: 1;
    }

    @media (min-width: 768px) {
      .business-strategy-development-related-body {
        padding: 2rem;
        gap: 1.5rem;
      }
    }

    .post-business-strategy-development .business-strategy-development-related-card h3 {
      color: #1e293b;
      font-size: 1.125rem;
      margin: 0;
      line-height: 1.4;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-related-card h3 {
        font-size: 1.25rem;
      }
    }

    .post-business-strategy-development .business-strategy-development-related-card p {
      color: #64748b;
      font-size: 0.875rem;
      margin: 0;
      line-height: 1.6;
      flex-grow: 1;
    }

    @media (min-width: 768px) {
      .post-business-strategy-development .business-strategy-development-related-card p {
        font-size: 1rem;
      }
    }

    .business-strategy-development-related-link {
      color: #2563eb;
      font-size: 0.875rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    @media (min-width: 768px) {
      .business-strategy-development-related-link {
        font-size: 1rem;
      }
    }

    .business-strategy-development-related-link:hover {
      color: #1e40af;
      gap: 0.75rem;
    }

/* Post Page 4 Styles */
/* ===== POST BRAND BUILDING MANAGEMENT ISOLATION ===== */
    .post-brand-building-management {
      width: 100%;
    }

    /* ===== BREADCRUMBS ===== */
    .brand-building-management-breadcrumbs {
      background-color: #f8fafc;
      padding: 1rem 0;
      border-bottom: 1px solid #e2e8f0;
      overflow: hidden;
    }

    .brand-building-management-breadcrumbs .container {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .brand-building-management-breadcrumbs a,
    .brand-building-management-breadcrumbs span {
      font-size: 0.875rem;
      color: #64748b;
    }

    @media (min-width: 768px) {
      .brand-building-management-breadcrumbs a,
      .brand-building-management-breadcrumbs span {
        font-size: 0.9375rem;
      }
    }

    .brand-building-management-breadcrumbs a {
      color: #2563eb;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .brand-building-management-breadcrumbs a:hover {
      color: #1e40af;
      text-decoration: underline;
    }

    .brand-building-management-breadcrumbs span {
      color: #1e293b;
      font-weight: 500;
    }

    /* ===== HERO SECTION ===== */
    .brand-building-management-hero {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

    @media (min-width: 768px) {
      .brand-building-management-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-hero {
        padding: 6rem 0;
      }
    }

    .brand-building-management-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: flex-start;
    }

    @media (min-width: 768px) {
      .brand-building-management-hero-content {
        gap: 2rem;
      }
    }

    .brand-building-management-hero h1 {
      color: #ffffff;
      font-size: 2rem;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    @media (min-width: 768px) {
      .brand-building-management-hero h1 {
        font-size: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-hero h1 {
        font-size: 3.5rem;
      }
    }

    .brand-building-management-hero-lead {
      color: #cbd5e1;
      font-size: 1rem;
      line-height: 1.8;
      max-width: 650px;
    }

    @media (min-width: 768px) {
      .brand-building-management-hero-lead {
        font-size: 1.125rem;
      }
    }

    .brand-building-management-hero-meta {
      display: flex;
      flex-direction: row;
      gap: 2rem;
      font-size: 0.875rem;
      color: #94a3b8;
    }

    @media (min-width: 768px) {
      .brand-building-management-hero-meta {
        gap: 3rem;
        font-size: 0.9375rem;
      }
    }

    .brand-building-management-hero-meta span {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
    }

    /* ===== CONTENT SECTION 1 ===== */
    .brand-building-management-content-1 {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .brand-building-management-content-1 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-content-1 {
        padding: 6rem 0;
      }
    }

    .brand-building-management-content-1-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .brand-building-management-content-1-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .brand-building-management-content-1-text h2 {
      color: #1e293b;
      font-size: 1.75rem;
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .brand-building-management-content-1-text h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-content-1-text h2 {
        font-size: 2.75rem;
      }
    }

    .brand-building-management-content-1-text p {
      color: #475569;
      font-size: 0.875rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .brand-building-management-content-1-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
      }
    }

    .brand-building-management-content-1-image {
      width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      object-fit: cover;
    }

    /* ===== CONTENT SECTION 2 ===== */
    .brand-building-management-content-2 {
      background-color: #f8fafc;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .brand-building-management-content-2 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-content-2 {
        padding: 6rem 0;
      }
    }

    .brand-building-management-content-2-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .brand-building-management-content-2 h2 {
      color: #1e293b;
      font-size: 1.75rem;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .brand-building-management-content-2 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-content-2 h2 {
        font-size: 2.75rem;
      }
    }

    .brand-building-management-content-2 p {
      color: #475569;
      font-size: 0.875rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .brand-building-management-content-2 p {
        font-size: 1rem;
      }
    }

    .brand-building-management-content-2-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      list-style: none;
      margin-top: 1.5rem;
    }

    @media (min-width: 768px) {
      .brand-building-management-content-2-list {
        gap: 1.5rem;
        margin-top: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-content-2-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    .brand-building-management-content-2-list li {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      align-items: flex-start;
      padding: 1rem;
      background-color: #ffffff;
      border-radius: 8px;
      border-left: 4px solid #2563eb;
    }

    @media (min-width: 768px) {
      .brand-building-management-content-2-list li {
        padding: 1.5rem;
        gap: 1.25rem;
      }
    }

    .brand-building-management-content-2-list li::before {
      content: "✓";
      color: #2563eb;
      font-weight: 700;
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .brand-building-management-content-2-list-text {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .brand-building-management-content-2-list-title {
      color: #1e293b;
      font-weight: 600;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .brand-building-management-content-2-list-title {
        font-size: 0.9375rem;
      }
    }

    .brand-building-management-content-2-list-desc {
      color: #64748b;
      font-size: 0.8125rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .brand-building-management-content-2-list-desc {
        font-size: 0.875rem;
      }
    }

    /* ===== CONTENT SECTION 3 ===== */
    .brand-building-management-content-3 {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .brand-building-management-content-3 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-content-3 {
        padding: 6rem 0;
      }
    }

    .brand-building-management-content-3-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .brand-building-management-content-3-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .brand-building-management-content-3-wrapper .brand-building-management-content-3-image {
      order: -1;
    }

    @media (min-width: 1024px) {
      .brand-building-management-content-3-wrapper .brand-building-management-content-3-image {
        order: 1;
      }
    }

    .brand-building-management-content-3-text h2 {
      color: #1e293b;
      font-size: 1.75rem;
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .brand-building-management-content-3-text h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-content-3-text h2 {
        font-size: 2.75rem;
      }
    }

    .brand-building-management-content-3-text p {
      color: #475569;
      font-size: 0.875rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .brand-building-management-content-3-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
      }
    }

    .brand-building-management-content-3-image {
      width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      object-fit: cover;
    }

    /* ===== DISCLAIMER SECTION ===== */
    .brand-building-management-disclaimer {
      background-color: #f0f9ff;
      padding: 3rem 0;
      border-top: 1px solid #e0f2fe;
      border-bottom: 1px solid #e0f2fe;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .brand-building-management-disclaimer {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-disclaimer {
        padding: 5rem 0;
      }
    }

    .brand-building-management-disclaimer-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .brand-building-management-disclaimer-header {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      align-items: flex-start;
    }

    @media (min-width: 768px) {
      .brand-building-management-disclaimer-header {
        gap: 1.25rem;
      }
    }

    .brand-building-management-disclaimer-icon {
      color: #0284c7;
      font-size: 1.5rem;
      flex-shrink: 0;
      margin-top: 0.125rem;
    }

    @media (min-width: 768px) {
      .brand-building-management-disclaimer-icon {
        font-size: 1.75rem;
      }
    }

    .brand-building-management-disclaimer-title {
      color: #0c4a6e;
      font-weight: 700;
      font-size: 1rem;
    }

    @media (min-width: 768px) {
      .brand-building-management-disclaimer-title {
        font-size: 1.125rem;
      }
    }

    .brand-building-management-disclaimer-text {
      color: #0369a1;
      font-size: 0.875rem;
      line-height: 1.8;
      padding-left: 0;
    }

    @media (min-width: 768px) {
      .brand-building-management-disclaimer-text {
        font-size: 0.9375rem;
        padding-left: 0;
      }
    }

    .brand-building-management-disclaimer-text p {
      margin-bottom: 1rem;
    }

    .brand-building-management-disclaimer-text p:last-child {
      margin-bottom: 0;
    }

    /* ===== CONTENT SECTION 4 ===== */
    .brand-building-management-content-4 {
      background-color: #f8fafc;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .brand-building-management-content-4 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-content-4 {
        padding: 6rem 0;
      }
    }

    .brand-building-management-content-4 h2 {
      color: #1e293b;
      font-size: 1.75rem;
      line-height: 1.3;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .brand-building-management-content-4 h2 {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-content-4 h2 {
        font-size: 2.75rem;
        margin-bottom: 3rem;
      }
    }

    .brand-building-management-content-4-steps {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .brand-building-management-content-4-steps {
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-content-4-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
      }
    }

    .brand-building-management-step {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border-top: 4px solid #2563eb;
    }

    @media (min-width: 768px) {
      .brand-building-management-step {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

    .brand-building-management-step:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      transform: translateY(-4px);
    }

    .brand-building-management-step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      background-color: #dbeafe;
      color: #2563eb;
      font-weight: 700;
      font-size: 1rem;
      border-radius: 50%;
    }

    @media (min-width: 768px) {
      .brand-building-management-step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.125rem;
      }
    }

    .brand-building-management-step-title {
      color: #1e293b;
      font-weight: 600;
      font-size: 1rem;
    }

    @media (min-width: 768px) {
      .brand-building-management-step-title {
        font-size: 1.125rem;
      }
    }

    .brand-building-management-step-description {
      color: #64748b;
      font-size: 0.875rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .brand-building-management-step-description {
        font-size: 0.9375rem;
        line-height: 1.8;
      }
    }

    /* ===== CONCLUSION SECTION ===== */
    .brand-building-management-conclusion {
      background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .brand-building-management-conclusion {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-conclusion {
        padding: 6rem 0;
      }
    }

    .brand-building-management-conclusion h2 {
      color: #ffffff;
      font-size: 1.75rem;
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .brand-building-management-conclusion h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-conclusion h2 {
        font-size: 2.75rem;
      }
    }

    .brand-building-management-conclusion p {
      color: #cbd5e1;
      font-size: 0.875rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .brand-building-management-conclusion p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }
    }

    .brand-building-management-conclusion p:last-child {
      margin-bottom: 0;
    }

    /* ===== RELATED POSTS SECTION ===== */
    .brand-building-management-related {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .brand-building-management-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-related {
        padding: 6rem 0;
      }
    }

    .brand-building-management-related-header {
      margin-bottom: 2.5rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .brand-building-management-related-header {
        margin-bottom: 3.5rem;
      }
    }

    .brand-building-management-related h2 {
      color: #1e293b;
      font-size: 1.75rem;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .brand-building-management-related h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-related h2 {
        font-size: 2.75rem;
      }
    }

    .brand-building-management-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .brand-building-management-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .brand-building-management-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background-color: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .brand-building-management-related-card {
        gap: 1.25rem;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-related-card {
        gap: 1.5rem;
      }
    }

    .brand-building-management-related-card:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      transform: translateY(-4px);
      border-color: #2563eb;
    }

    .brand-building-management-related-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .brand-building-management-related-card-content {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1rem;
    }

    @media (min-width: 768px) {
      .brand-building-management-related-card-content {
        gap: 1rem;
        padding: 1.5rem;
      }
    }

    .brand-building-management-related-card-title {
      color: #1e293b;
      font-weight: 600;
      font-size: 1rem;
      line-height: 1.4;
    }

    @media (min-width: 768px) {
      .brand-building-management-related-card-title {
        font-size: 1.0625rem;
      }
    }

    @media (min-width: 1024px) {
      .brand-building-management-related-card-title {
        font-size: 1.125rem;
      }
    }

    .brand-building-management-related-card-description {
      color: #64748b;
      font-size: 0.8125rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .brand-building-management-related-card-description {
        font-size: 0.875rem;
        line-height: 1.7;
      }
    }

    .brand-building-management-related-card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #2563eb;
      font-weight: 600;
      font-size: 0.875rem;
      text-decoration: none;
      transition: all 0.3s ease;
      margin-top: 0.5rem;
    }

    @media (min-width: 768px) {
      .brand-building-management-related-card-link {
        font-size: 0.9375rem;
        margin-top: 0.75rem;
      }
    }

    .brand-building-management-related-card-link:hover {
      color: #1e40af;
      transform: translateX(4px);
    }

    .brand-building-management-related-card-link::after {
      content: "→";
      transition: transform 0.3s ease;
    }

    .brand-building-management-related-card-link:hover::after {
      transform: translateX(4px);
    }

/* Post Page 5 Styles */
/* ===== POST PAGE STYLES - COMPLETE ISOLATION ===== */

  .post-marketing-effectiveness-measurement {
    width: 100%;
  }

  /* ===== BREADCRUMBS ===== */
  .marketing-effectiveness-measurement-breadcrumbs {
    background-color: #f8fafc;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
  }

  @media (min-width: 768px) {
    .marketing-effectiveness-measurement-breadcrumbs {
      padding: 1.25rem 0;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-breadcrumbs-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-breadcrumb-link {
    color: var(--color-primary);
    font-size: 0.875rem;
    transition: all 0.3s ease;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-breadcrumb-link {
      font-size: 0.95rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-breadcrumb-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-breadcrumb-separator {
    color: #cbd5e1;
    font-size: 0.875rem;
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-breadcrumb-current {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-breadcrumb-current {
      font-size: 0.95rem;
    }
  }

  /* ===== HERO SECTION ===== */
  .marketing-effectiveness-measurement-hero {
    background-color: #020617;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .marketing-effectiveness-measurement-hero {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-effectiveness-measurement-hero {
      padding: 6rem 0;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-hero-content {
      gap: 2rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-hero-title {
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-hero-title {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-hero-title {
      font-size: 3.5rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-hero-lead {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 700px;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-hero-lead {
      font-size: 1.1rem;
    }
  }

  @media (min-width: 1024px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-hero-lead {
      font-size: 1.15rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-hero-meta {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-meta-item {
    color: #94a3b8;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-meta-item {
      font-size: 0.9rem;
    }
  }

  /* ===== SECTION 1 ===== */
  .marketing-effectiveness-measurement-section-1 {
    background-color: #ffffff;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .marketing-effectiveness-measurement-section-1 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-effectiveness-measurement-section-1 {
      padding: 6rem 0;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-content-1 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-content-1 {
      gap: 2rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-1-title {
    color: var(--text-dark);
    font-size: 1.75rem;
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-1-title {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-1-title {
      font-size: 2.75rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-1-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-1-text {
      font-size: 1rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-1-image-wrapper {
    margin-top: 1rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-1-image-wrapper {
      margin-top: 2rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-1-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
  }

  /* ===== SECTION 2 ===== */
  .marketing-effectiveness-measurement-section-2 {
    background-color: #f8fafc;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .marketing-effectiveness-measurement-section-2 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-effectiveness-measurement-section-2 {
      padding: 6rem 0;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-content-2 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-content-2 {
      gap: 3rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-2-title {
    color: var(--text-dark);
    font-size: 1.75rem;
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-2-title {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-2-title {
      font-size: 2.75rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-2-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-2-text {
      font-size: 1rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-2-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-2-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-2-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-kpi-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-kpi-card {
      padding: 2rem;
      gap: 1.25rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-kpi-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-kpi-title {
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: 600;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-kpi-title {
      font-size: 1.25rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-kpi-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-kpi-description {
      font-size: 0.95rem;
    }
  }

  /* ===== DISCLAIMER SECTION ===== */
  .marketing-effectiveness-measurement-disclaimer {
    background-color: #ecf0f1;
    padding: 2.5rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .marketing-effectiveness-measurement-disclaimer {
      padding: 3.5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-effectiveness-measurement-disclaimer {
      padding: 4rem 0;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-disclaimer-content {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-disclaimer-content {
      gap: 2rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-disclaimer-icon {
    color: var(--color-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-disclaimer-icon {
      font-size: 1.75rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-disclaimer-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-disclaimer-title {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-disclaimer-title {
      font-size: 1.25rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-disclaimer-body {
    color: #555555;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-disclaimer-body {
      font-size: 0.95rem;
    }
  }

  /* ===== SECTION 3 ===== */
  .marketing-effectiveness-measurement-section-3 {
    background-color: #ffffff;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .marketing-effectiveness-measurement-section-3 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-effectiveness-measurement-section-3 {
      padding: 6rem 0;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-content-3 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-content-3 {
      gap: 2.5rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-3-title {
    color: var(--text-dark);
    font-size: 1.75rem;
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-3-title {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-3-title {
      font-size: 2.75rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-3-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-3-text {
      font-size: 1rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-3-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-3-steps {
      gap: 2rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-step {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-step {
      gap: 2rem;
      padding: 2rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-step-number {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-step-number {
      font-size: 1.75rem;
      min-width: 50px;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-step-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-step-title {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 600;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-step-title {
      font-size: 1.15rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-step-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-step-description {
      font-size: 0.95rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-3-image-wrapper {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-3-image-wrapper {
      margin-top: 2.5rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-3-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
  }

  /* ===== SECTION 4 ===== */
  .marketing-effectiveness-measurement-section-4 {
    background-color: #f8fafc;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .marketing-effectiveness-measurement-section-4 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-effectiveness-measurement-section-4 {
      padding: 6rem 0;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-content-4 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-content-4 {
      gap: 2.5rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-4-title {
    color: var(--text-dark);
    font-size: 1.75rem;
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-4-title {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-4-title {
      font-size: 2.75rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-4-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-4-text {
      font-size: 1rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-tools-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-tools-list {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-tools-list {
      gap: 2rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-tool-item {
    background-color: #ffffff;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border-top: 3px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-tool-item {
      padding: 1.5rem;
      gap: 1rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-tool-name {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-tool-name {
      font-size: 1.1rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-tool-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-tool-desc {
      font-size: 0.95rem;
    }
  }

  /* ===== SECTION 5 ===== */
  .marketing-effectiveness-measurement-section-5 {
    background-color: #ffffff;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .marketing-effectiveness-measurement-section-5 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-effectiveness-measurement-section-5 {
      padding: 6rem 0;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-content-5 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-content-5 {
      gap: 2.5rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-5-title {
    color: var(--text-dark);
    font-size: 1.75rem;
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-5-title {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-5-title {
      font-size: 2.75rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-5-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-section-5-text {
      font-size: 1rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-practices {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-practices {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-practices {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-practice {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: var(--radius-lg);
    text-align: center;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-practice {
      padding: 2rem;
      gap: 1.25rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-practice-icon {
    color: var(--color-primary);
    font-size: 2rem;
    display: flex;
    justify-content: center;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-practice-icon {
      font-size: 2.5rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-practice-title {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 600;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-practice-title {
      font-size: 1.15rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-practice-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-practice-text {
      font-size: 0.95rem;
    }
  }

  /* ===== CONCLUSION SECTION ===== */
  .marketing-effectiveness-measurement-conclusion {
    background-color: #f0f4f8;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .marketing-effectiveness-measurement-conclusion {
      padding: 4rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-effectiveness-measurement-conclusion {
      padding: 5rem 0;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-conclusion-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-conclusion-content {
      gap: 2rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-conclusion-title {
    color: var(--text-dark);
    font-size: 1.75rem;
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-conclusion-title {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-conclusion-title {
      font-size: 2.5rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-conclusion-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-conclusion-text {
      font-size: 1rem;
    }
  }

  /* ===== RELATED POSTS SECTION ===== */
  .marketing-effectiveness-measurement-related {
    background-color: #ffffff;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .marketing-effectiveness-measurement-related {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .marketing-effectiveness-measurement-related {
      padding: 6rem 0;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-content {
      gap: 2.5rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-title {
    color: var(--text-dark);
    font-size: 1.75rem;
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-title {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-title {
      font-size: 2.5rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f0f0f0;
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-card-body {
      padding: 1.75rem;
      gap: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-card-body {
      padding: 2rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-card-title {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-card-title {
      font-size: 1.15rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-card-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    flex: 1;
  }

  @media (min-width: 768px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-card-desc {
      font-size: 0.9rem;
    }
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-link {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
  }

  /* ===== RESPONSIVE ADJUSTMENTS ===== */
  @media (max-width: 767px) {
    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-practices {
      grid-template-columns: 1fr;
    }

    .post-marketing-effectiveness-measurement .marketing-effectiveness-measurement-related-grid {
      grid-template-columns: 1fr;
    }
  }

/* Post Page 6 Styles */
/* ===== POST: CUSTOMER COMMUNICATION STRATEGY ===== */

.post-customer-communication-strategy {
  width: 100%;
}

/* ===== BREADCRUMBS ===== */
.post-customer-communication-strategy .customer-communication-strategy-breadcrumbs {
  background-color: #f8fafc;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-breadcrumbs {
    padding: 1.5rem 0;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-breadcrumb-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-breadcrumb-content {
    gap: 1rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-breadcrumb-link {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-breadcrumb-link {
    font-size: 1rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-breadcrumb-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-customer-communication-strategy .customer-communication-strategy-breadcrumb-separator {
  color: #cbd5e1;
  font-size: 0.875rem;
}

.post-customer-communication-strategy .customer-communication-strategy-breadcrumb-current {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-breadcrumb-current {
    font-size: 1rem;
  }
}

/* ===== HERO SECTION ===== */
.post-customer-communication-strategy .customer-communication-strategy-hero {
  background-color: #0f172a;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-customer-communication-strategy .customer-communication-strategy-hero {
    padding: 5rem 0;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-hero-content {
    gap: 2rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-hero-title {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-customer-communication-strategy .customer-communication-strategy-hero-title {
    font-size: 3.5rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-hero-lead {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 700px;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-hero-lead {
    font-size: 1rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-hero-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.post-customer-communication-strategy .customer-communication-strategy-meta-item {
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-meta-item {
    font-size: 0.875rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-meta-divider {
  color: #475569;
}

/* ===== SECTION 1: Understanding Communication Strategy ===== */
.post-customer-communication-strategy .customer-communication-strategy-section-1 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-section-1 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-customer-communication-strategy .customer-communication-strategy-section-1 {
    padding: 5rem 0;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-content-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .post-customer-communication-strategy .customer-communication-strategy-content-1 {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-text-block {
    gap: 2rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-section-title {
  color: #1e293b;
  font-size: 1.75rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-customer-communication-strategy .customer-communication-strategy-section-title {
    font-size: 2.75rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-paragraph {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-paragraph {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-highlight-box {
  background-color: #f0f9ff;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-highlight-box {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-highlight-icon {
  color: var(--color-primary);
  font-size: 1.5rem;
  min-width: 24px;
  display: flex;
  align-items: center;
}

.post-customer-communication-strategy .customer-communication-strategy-highlight-title {
  color: var(--color-primary-dark);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-highlight-title {
    font-size: 1.125rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-highlight-content {
  color: #1e40af;
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-highlight-content {
    font-size: 1rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-section-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===== SECTION 2: Key Components ===== */
.post-customer-communication-strategy .customer-communication-strategy-section-2 {
  background-color: #f8fafc;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-section-2 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-customer-communication-strategy .customer-communication-strategy-section-2 {
    padding: 5rem 0;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-content-2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-content-2 {
    gap: 3rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-section-2 .customer-communication-strategy-paragraph {
  color: #64748b;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-section-2 .customer-communication-strategy-paragraph {
    font-size: 1rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-components-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-components-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-customer-communication-strategy .customer-communication-strategy-components-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-component-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-component-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-component-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-customer-communication-strategy .customer-communication-strategy-card-icon {
  color: var(--color-primary);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #f0f9ff;
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-card-icon {
    font-size: 2.5rem;
    width: 64px;
    height: 64px;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-card-title {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-card-title {
    font-size: 1.125rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-card-description {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-card-description {
    font-size: 0.95rem;
  }
}

/* ===== DISCLAIMER SECTION ===== */
.post-customer-communication-strategy .customer-communication-strategy-disclaimer {
  background-color: #ecf0f1;
  padding: 2rem 0;
  overflow: hidden;
  border-top: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-disclaimer {
    padding: 3rem 0;
  }
}

@media (min-width: 1024px) {
  .post-customer-communication-strategy .customer-communication-strategy-disclaimer {
    padding: 3.5rem 0;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-disclaimer-content {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-disclaimer-content {
    gap: 2rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-disclaimer-icon {
  color: var(--color-primary);
  font-size: 1.5rem;
  min-width: 24px;
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-disclaimer-icon {
    font-size: 2rem;
    min-width: 32px;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-disclaimer-title {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-disclaimer-title {
    font-size: 1.125rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-disclaimer-body {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-disclaimer-body {
    font-size: 0.95rem;
  }
}

/* ===== SECTION 3: Customer Interaction Methods ===== */
.post-customer-communication-strategy .customer-communication-strategy-section-3 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-section-3 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-customer-communication-strategy .customer-communication-strategy-section-3 {
    padding: 5rem 0;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-content-3 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-content-3 {
    gap: 2.5rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-methods-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-methods-container {
    gap: 2rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-method-item {
  border-left: 4px solid var(--color-secondary);
  padding-left: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-method-item {
    padding-left: 2rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-method-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-method-header {
    margin-bottom: 1rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-method-title {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  flex: 1;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-method-title {
    font-size: 1.25rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-method-icon {
  color: var(--color-secondary);
  font-size: 1.5rem;
  min-width: 24px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-method-icon {
    font-size: 1.75rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-method-text {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-method-text {
    font-size: 1rem;
  }
}

/* ===== SECTION 4: Building Long-term Relationships ===== */
.post-customer-communication-strategy .customer-communication-strategy-section-4 {
  background-color: #f8fafc;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-section-4 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-customer-communication-strategy .customer-communication-strategy-section-4 {
    padding: 5rem 0;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-content-4 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-content-4 {
    gap: 3rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-relationship-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .post-customer-communication-strategy .customer-communication-strategy-relationship-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-text-content {
    gap: 2rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-subheading {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-subheading {
    font-size: 1.125rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-list {
    gap: 1.25rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-list-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-list-item {
    font-size: 1rem;
    gap: 1rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-list-icon {
  color: var(--color-secondary);
  font-size: 1.25rem;
  min-width: 20px;
  display: flex;
  align-items: center;
  margin-top: 0.125rem;
}

.post-customer-communication-strategy .customer-communication-strategy-relationship-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===== SECTION 5: Implementation and Measurement ===== */
.post-customer-communication-strategy .customer-communication-strategy-section-5 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-section-5 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-customer-communication-strategy .customer-communication-strategy-section-5 {
    padding: 5rem 0;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-content-5 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-content-5 {
    gap: 2.5rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-implementation-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-implementation-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-customer-communication-strategy .customer-communication-strategy-implementation-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-impl-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid #bae6fd;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-impl-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-impl-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.post-customer-communication-strategy .customer-communication-strategy-impl-number {
  color: var(--color-primary);
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-display);
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-impl-number {
    font-size: 2.25rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-impl-title {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-impl-title {
    font-size: 1.125rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-impl-text {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-impl-text {
    font-size: 0.95rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-metrics-section {
  background-color: #fef3c7;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-metrics-section {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-metrics-title {
  color: #92400e;
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-metrics-title {
    font-size: 1.25rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-metrics-intro {
  color: #b45309;
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-metrics-intro {
    font-size: 1rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-metrics-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-metrics-list {
    gap: 1rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-metrics-item {
  color: #92400e;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-metrics-item {
    font-size: 0.95rem;
  }
}

/* ===== CONCLUSION SECTION ===== */
.post-customer-communication-strategy .customer-communication-strategy-conclusion {
  background-color: #f0f4f8;
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid #cbd5e1;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-conclusion {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-customer-communication-strategy .customer-communication-strategy-conclusion {
    padding: 5rem 0;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-conclusion-content {
    gap: 2rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-conclusion-title {
  color: #1e293b;
  font-size: 1.75rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-conclusion-title {
    font-size: 2.25rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-conclusion-text {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-conclusion-text {
    font-size: 1rem;
  }
}

/* ===== RELATED POSTS SECTION ===== */
.post-customer-communication-strategy .customer-communication-strategy-related {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-customer-communication-strategy .customer-communication-strategy-related {
    padding: 5rem 0;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-related-content {
    gap: 3rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-related-title {
  color: #1e293b;
  font-size: 1.75rem;
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-related-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-customer-communication-strategy .customer-communication-strategy-related-title {
    font-size: 2.75rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-related-subtitle {
  color: #64748b;
  font-size: 0.875rem;
  text-align: center;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-related-subtitle {
    font-size: 1rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-customer-communication-strategy .customer-communication-strategy-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-related-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.post-customer-communication-strategy .customer-communication-strategy-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.post-customer-communication-strategy .customer-communication-strategy-related-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-customer-communication-strategy .customer-communication-strategy-related-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-related-card-content {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-related-card-title {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-related-card-title {
    font-size: 1.125rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-related-card-description {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-related-card-description {
    font-size: 0.95rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-related-card-link {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-related-card-link {
    font-size: 1rem;
  }
}

.post-customer-communication-strategy .customer-communication-strategy-related-card-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.post-customer-communication-strategy .customer-communication-strategy-related-card-link i {
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .post-customer-communication-strategy .customer-communication-strategy-related-card-link i {
    font-size: 0.875rem;
  }
}

/* ===== FONT AWESOME CDN ===== */

/* Privacy Page Styles */
.policy-center {
    font-family: var(--font-primary);
    background-color: var(--bg-light);
    color: var(--text-dark);
  }

  .policy-center .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
  }

  .policy-center-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
  }

  @media (min-width: 768px) {
    .policy-center-content {
      padding: var(--space-3xl) 0;
      gap: var(--space-xl);
    }
  }

  @media (min-width: 1024px) {
    .policy-center-content {
      padding: var(--space-3xl) 0;
    }
  }

  .policy-center h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .policy-center h1 {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .policy-center h1 {
      font-size: 3rem;
    }
  }

  .policy-center .updated-date {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    font-style: italic;
  }

  @media (min-width: 768px) {
    .policy-center .updated-date {
      font-size: 1rem;
    }
  }

  .policy-center section {
    overflow: hidden;
    margin-bottom: var(--space-lg);
  }

  @media (min-width: 768px) {
    .policy-center section {
      margin-bottom: var(--space-xl);
    }
  }

  .policy-center h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    line-height: 1.3;
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--border-color);
  }

  @media (min-width: 768px) {
    .policy-center h2 {
      font-size: 1.875rem;
    }
  }

  @media (min-width: 1024px) {
    .policy-center h2 {
      font-size: 2rem;
    }
  }

  .policy-center p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
  }

  @media (min-width: 768px) {
    .policy-center p {
      font-size: 1rem;
      margin-bottom: var(--space-lg);
    }
  }

  .policy-center ul {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
  }

  @media (min-width: 768px) {
    .policy-center ul {
      margin: var(--space-lg) 0;
    }
  }

  .policy-center li {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    padding-left: 1.75rem;
    position: relative;
  }

  @media (min-width: 768px) {
    .policy-center li {
      font-size: 1rem;
      margin-bottom: var(--space-md);
    }
  }

  .policy-center li:before {
    content: "\f05";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: var(--icon-sm);
  }

  .policy-center .contact-section {
    background-color: var(--bg-pale);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-lg);
  }

  @media (min-width: 768px) {
    .policy-center .contact-section {
      padding: var(--space-lg);
      margin-top: var(--space-xl);
    }
  }

  .policy-center .contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  @media (min-width: 768px) {
    .policy-center .contact-info {
      gap: var(--space-lg);
    }
  }

  .policy-center .contact-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
  }

  .policy-center .contact-item-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  @media (min-width: 768px) {
    .policy-center .contact-item-label {
      font-size: 0.9375rem;
    }
  }

  .policy-center .contact-item-value {
    font-size: 0.875rem;
    color: var(--text-dark);
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .policy-center .contact-item-value {
      font-size: 1rem;
    }
  }

  .policy-center .highlight {
    background-color: rgba(37, 99, 235, 0.1);
    padding: var(--space-xs) var(--space-sm);
    border-left: 3px solid var(--color-primary);
    margin: var(--space-md) 0;
  }

  @media (min-width: 768px) {
    .policy-center .highlight {
      padding: var(--space-sm) var(--space-md);
      margin: var(--space-lg) 0;
    }
  }

  .policy-center .highlight-text {
    font-size: 0.875rem;
    color: var(--text-dark);
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .policy-center .highlight-text {
      font-size: 1rem;
    }
  }

/* Thank You Page Styles */
/* Thank You Page Styles */
  
  .thank-page {
    overflow: hidden;
  }

  /* Hero Section */
  .thank-hero-section {
    background-color: var(--bg-dark);
    padding: 4rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .thank-hero-section {
      padding: 6rem 0;
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section {
      padding: 8rem 0;
    }
  }

  .thank-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .thank-hero-content {
      gap: 2rem;
    }
  }

  .thank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-lg);
    animation: icon-scale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  @media (min-width: 768px) {
    .thank-icon {
      width: 100px;
      height: 100px;
    }
  }

  .thank-icon i {
    font-size: var(--icon-xl);
    color: var(--color-primary);
  }

  @media (min-width: 768px) {
    .thank-icon i {
      font-size: 64px;
    }
  }

  .thank-hero-section h1 {
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
  }

  @media (min-width: 768px) {
    .thank-hero-section h1 {
      font-size: 3.5rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section h1 {
      font-size: 4rem;
    }
  }

  .thank-lead {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
  }

  @media (min-width: 768px) {
    .thank-lead {
      font-size: 1.125rem;
    }
  }

  /* Content Section */
  .thank-content-section {
    background-color: var(--bg-pale);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .thank-content-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .thank-content-section {
      padding: 6rem 0;
    }
  }

  .thank-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .thank-content-wrapper {
      gap: 3rem;
    }
  }

  .thank-content-section h2 {
    color: var(--text-dark);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
  }

  @media (min-width: 768px) {
    .thank-content-section h2 {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-content-section h2 {
      font-size: 3rem;
    }
  }

  .thank-description {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
  }

  @media (min-width: 768px) {
    .thank-description {
      font-size: 1rem;
    }
  }

  /* Next Steps */
  .thank-next-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
  }

  @media (min-width: 768px) {
    .thank-next-steps {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-next-steps {
      gap: 2.5rem;
    }
  }

  .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
  }

  @media (min-width: 768px) {
    .step-item {
      padding: 2rem;
      gap: 1.25rem;
    }
  }

  .step-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }

  .step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(5, 150, 105, 0.1));
    border-radius: var(--radius-md);
  }

  @media (min-width: 768px) {
    .step-icon {
      width: 70px;
      height: 70px;
    }
  }

  .step-icon i {
    font-size: 28px;
    color: var(--color-primary);
  }

  @media (min-width: 768px) {
    .step-icon i {
      font-size: 32px;
    }
  }

  .step-item h3 {
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
  }

  @media (min-width: 768px) {
    .step-item h3 {
      font-size: 1.25rem;
    }
  }

  .step-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .step-item p {
      font-size: 0.95rem;
    }
  }

  /* Button Styles */
  .btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
  }

  @media (min-width: 768px) {
    .btn {
      padding: 1rem 2.5rem;
      font-size: 1rem;
    }
  }

  .btn-primary {
    background-color: var(--color-primary);
    color: var(--bg-light);
  }

  .btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
  }

  /* Animation */
  @keyframes icon-scale {
    0% {
      opacity: 0;
      transform: scale(0.5);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Container */
  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  @media (min-width: 768px) {
    .container {
      padding: 0 2rem;
    }
  }

  @media (min-width: 1024px) {
    .container {
      padding: 0 3rem;
    }
  }

/* 404 Page Styles */
/* ===== CSS Variables - DO NOT MODIFY ===== */
  :root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e40af;
    --color-primary-light: #3b82f6;
    --color-secondary: #059669;
    --color-accent: #f59e0b;
    --bg-light: #ffffff;
    --bg-pale: #f8fafc;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --text-dark: #1e293b;
    --text-light: #e2e8f0;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.18);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --icon-sm: 20px;
    --icon-md: 32px;
    --icon-lg: 48px;
    --icon-xl: 64px;
  }

  /* ===== Base Styles ===== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: var(--font-primary);
    line-height: 1.6;
  }

  /* ===== Container Structure ===== */
  .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
  }

  @media (min-width: 768px) {
    .container {
      padding: 0 var(--space-md);
    }
  }

  @media (min-width: 1024px) {
    .container {
      padding: 0 var(--space-lg);
    }
  }

  /* ===== Main & Error Page ===== */
  .main {
    overflow: hidden;
  }

  .error-page {
    background-color: var(--bg-light);
  }

  /* ===== Error Hero Section ===== */
  .error-hero-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2a4a 100%);
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
  }

  @media (min-width: 768px) {
    .error-hero-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .error-hero-section {
      padding: 6rem 0;
    }
  }

  .error-hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    align-items: center;
    justify-content: center;
  }

  @media (min-width: 768px) {
    .error-hero-content {
      flex-direction: row;
      gap: var(--space-3xl);
      align-items: center;
      justify-content: space-between;
    }
  }

  /* ===== Error Illustration ===== */
  .error-illustration {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .error-illustration {
      width: 320px;
      height: 320px;
    }
  }

  @media (min-width: 1024px) {
    .error-illustration {
      width: 380px;
      height: 380px;
    }
  }

  /* Animated circles background */
  .error-circle-large {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: float 6s ease-in-out infinite;
  }

  .error-circle-medium {
    position: absolute;
    width: 70%;
    height: 70%;
    border: 2px solid rgba(37, 99, 235, 0.15);
    border-radius: 50%;
    top: 15%;
    left: 15%;
    animation: float 8s ease-in-out infinite reverse;
  }

  .error-circle-small {
    position: absolute;
    width: 40%;
    height: 40%;
    border: 2px solid rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    top: 30%;
    left: 30%;
    animation: float 10s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }

  /* 404 Text */
  .error-404-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    gap: 0;
    z-index: 10;
  }

  .error-4,
  .error-0,
  .error-4-last {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }

  @media (min-width: 768px) {
    .error-4,
    .error-0,
    .error-4-last {
      font-size: 5.5rem;
    }
  }

  @media (min-width: 1024px) {
    .error-4,
    .error-0,
    .error-4-last {
      font-size: 6.5rem;
    }
  }

  /* Search icon */
  .error-search-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--icon-lg);
    color: #000;
    animation: bounce 2s ease-in-out infinite;
    z-index: 15;
  }

  @media (min-width: 768px) {
    .error-search-icon {
      width: 100px;
      height: 100px;
      font-size: var(--icon-xl);
    }
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }

  /* ===== Error Content Text ===== */
  .error-content-text {
    flex: 1;
    min-width: 0;
  }

  .error-content-text h1 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .error-content-text h1 {
      font-size: 2.75rem;
    }
  }

  @media (min-width: 1024px) {
    .error-content-text h1 {
      font-size: 3.25rem;
    }
  }

  .error-subtitle {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .error-subtitle {
      font-size: 1.0625rem;
    }
  }

  /* ===== Error Suggestions ===== */
  .error-suggestions {
    margin-bottom: var(--space-xl);
  }

  .error-suggestions h3 {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    font-weight: 600;
  }

  @media (min-width: 768px) {
    .error-suggestions h3 {
      font-size: 1.5rem;
    }
  }

  .error-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .error-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-sm);
    color: #cbd5e1;
    font-size: 0.9375rem;
  }

  @media (min-width: 768px) {
    .error-list li {
      font-size: 1rem;
    }
  }

  .error-list i {
    color: var(--color-secondary);
    font-size: var(--icon-sm);
    margin-top: 2px;
    flex-shrink: 0;
  }

  /* ===== Error CTA ===== */
  .error-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-start;
  }

  /* Button Styles */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
  }

  @media (min-width: 768px) {
    .btn {
      padding: 1rem 2rem;
      font-size: 1rem;
    }
  }

  .btn-primary {
    background-color: var(--color-primary);
    color: var(--bg-light);
  }

  .btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .btn-primary:active {
    transform: translateY(0);
  }

  .error-help-text {
    font-size: 0.8125rem;
    color: #94a3b8;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .error-help-text {
      font-size: 0.875rem;
    }
  }

  /* ===== Error Context Section ===== */
  .error-context-section {
    background-color: var(--bg-pale);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .error-context-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .error-context-section {
      padding: 6rem 0;
    }
  }

  .error-context-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
  }

  .error-context-content h2 {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .error-context-content h2 {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .error-context-content h2 {
      font-size: 2.75rem;
    }
  }

  /* ===== Reason Cards ===== */
  .error-reasons {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  @media (min-width: 768px) {
    .error-reasons {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-md);
    }
  }

  @media (min-width: 1024px) {
    .error-reasons {
      gap: var(--space-lg);
    }
  }

  .reason-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
  }

  @media (min-width: 768px) {
    .reason-card {
      padding: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .reason-card {
      padding: 2rem;
    }
  }

  .reason-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .reason-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--icon-lg);
    color: var(--bg-light);
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .reason-icon {
      width: 72px;
      height: 72px;
      font-size: 1.75rem;
    }
  }

  .reason-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .reason-card h4 {
      font-size: 1.25rem;
    }
  }

  .reason-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .reason-card p {
      font-size: 0.9375rem;
    }
  }

  /* ===== Responsive Adjustments ===== */
  @media (max-width: 767px) {
    .error-illustration {
      width: 240px;
      height: 240px;
    }

    .error-404-text {
      font-size: 3rem;
    }

    .error-search-icon {
      width: 60px;
      height: 60px;
      font-size: var(--icon-md);
    }

    .error-hero-content {
      text-align: center;
    }

    .error-cta {
      align-items: center;
      width: 100%;
    }

    .btn {
      width: 100%;
    }
  }