/* StartupSEOGuide - Custom Styles */
/* Using System Fonts for optimal performance */

:root {
  /* Typography - System Fonts */
  --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', SFMono-Regular, ui-monospace, Menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono', 'Roboto Mono', monospace;

  /* Primary Colors */
  --color-primary: #2563EB;
  --color-primary-light: #3B82F6;
  --color-primary-dark: #1D4ED8;
  --color-secondary: #16A34A;
  --color-secondary-light: #22C55E;
  --color-accent: #F59E0B;
  --color-accent-light: #FBBF24;

  /* Neutrals */
  --color-text: #0F172A;
  --color-text-muted: #475569;
  --color-text-light: #64748B;
  --color-border: #E2E8F0;
  --color-bg: #EFF6FF;
  --color-bg-alt: #F8FAFC;
  --color-white: #FFFFFF;

  /* Semantic */
  --color-success: #16A34A;
  --color-warning: #F59E0B;
  --color-error: #DC2626;
  --color-info: #2563EB;

  /* Ranking Colors */
  --color-position-1: #FFD700;
  --color-position-2: #C0C0C0;
  --color-position-3: #CD7F32;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  --gradient-success: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
  --gradient-hero: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-primary: 0 4px 14px rgba(37, 99, 235, 0.3);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

/* Header */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-primary);
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--space-sm);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
  }
}

/* Hero Section */
.hero {
  background: var(--gradient-hero);
  padding: var(--space-4xl) var(--space-lg);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lead {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .lead {
    font-size: 1.1rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  color: var(--color-white);
}

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

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
}

/* Sections */
.section {
  padding: var(--space-4xl) var(--space-lg);
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-title h2 {
  margin-bottom: var(--space-md);
}

.section-title p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.stat-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  border: 1px solid var(--color-border);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.stat-label {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Guide Cards Grid */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-xl);
}

.guide-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.guide-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.guide-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.12);
  transform: translateY(-4px);
}

.guide-card:hover::before {
  opacity: 1;
}

.guide-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.guide-card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.guide-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.guide-card h3 a {
  color: var(--color-text);
}

.guide-card h3 a:hover {
  color: var(--color-primary);
}

.guide-card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.guide-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.reading-time {
  color: var(--color-text-light);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* Difficulty Indicators */
.difficulty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.difficulty-easy {
  color: var(--color-success);
  background: rgba(22, 163, 74, 0.1);
}

.difficulty-medium {
  color: var(--color-warning);
  background: rgba(245, 158, 11, 0.1);
}

.difficulty-hard {
  color: var(--color-error);
  background: rgba(220, 38, 38, 0.1);
}

.difficulty-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

/* Why SEO Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.benefit-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  height: 100%;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}

.benefit-card h4 {
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

/* Quick Wins Preview */
.quick-wins-preview {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--color-border);
}

.quick-win-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

.quick-win-item:last-child {
  border-bottom: none;
}

.quick-win-number {
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.quick-win-content h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.quick-win-content p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin: 0;
}

/* Checklist Styles */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}

.checklist-item:hover {
  background: var(--color-bg);
}

.checklist-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.checklist-item.completed .checklist-checkbox {
  background: var(--color-success);
  border-color: var(--color-success);
  color: white;
}

.checklist-text {
  flex-grow: 1;
}

/* Tools Section */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.tool-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  transition: all 0.2s ease;
  height: 100%;
}

.tool-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.tool-card h4 {
  margin-bottom: var(--space-sm);
}

.tool-card p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin: 0;
}

/* Newsletter Section */
.newsletter-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  text-align: center;
}

.newsletter-section h2 {
  color: var(--color-white);
}

.newsletter-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
}

.newsletter-form {
  display: flex;
  gap: var(--space-md);
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: var(--space-md) var(--space-lg);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
}

.newsletter-form button {
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 600;
}

.newsletter-form button:hover {
  background: var(--color-bg);
}

/* Footer */
.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) var(--space-lg) var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

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

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

.footer-brand p {
  margin-top: var(--space-md);
  font-size: 0.9375rem;
}

.footer-links h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-xl);
  text-align: center;
  font-size: 0.875rem;
}

/* ============================================
   GUIDE PAGE STYLES
   ============================================ */

/* Breadcrumb */
.breadcrumb {
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--color-text-muted);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb-separator {
  color: var(--color-text-light);
}

.breadcrumb-current {
  color: var(--color-text);
  font-weight: 500;
}

/* Guide Header */
.guide-header {
  background: var(--gradient-hero);
  padding: var(--space-3xl) var(--space-lg);
}

.guide-header .container {
  max-width: 900px;
}

.guide-meta-top {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.guide-header h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
}

.guide-header .lead {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.guide-meta {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  color: var(--color-text-light);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .guide-header h1 {
    font-size: 1.75rem;
  }

  .guide-header .lead {
    font-size: 1.1rem;
  }
}

/* Key Takeaways Box */
.key-takeaways {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.key-takeaways h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
}

.key-takeaways ul {
  margin: 0;
  padding-left: var(--space-lg);
}

.key-takeaways li {
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

/* Table of Contents */
.toc {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.toc h2 {
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.toc ol {
  margin: 0;
  padding-left: var(--space-lg);
}

.toc li {
  margin-bottom: var(--space-sm);
}

.toc a {
  color: var(--color-text-muted);
}

.toc a:hover {
  color: var(--color-primary);
}

/* Guide Content */
.guide-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
}

.guide-content h2 {
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-border);
}

.guide-content h2:first-of-type {
  margin-top: 0;
}

.guide-content h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.guide-content h4 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.guide-content p {
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.guide-content ul,
.guide-content ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.guide-content li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

/* Code Blocks */
.code-block {
  background: #1E293B;
  color: #E2E8F0;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  overflow-x: auto;
  margin-bottom: var(--space-lg);
  white-space: pre-wrap;
  word-wrap: break-word;
  line-height: 1.6;
}

.code-block span {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.code-block .comment {
  color: #64748B;
}

.code-block .tag {
  color: #7DD3FC;
}

.code-block .attr {
  color: #A5B4FC;
}

.code-block .value {
  color: #86EFAC;
}

.code-block .keyword {
  color: #C4B5FD;
}

.code-block .string {
  color: #86EFAC;
}

code {
  background: var(--color-bg);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.875em;
  color: var(--color-primary-dark);
}

pre code {
  background: none;
  padding: 0;
}

/* Blockquote */
blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  font-style: italic;
  color: var(--color-text-muted);
}

/* Tables */
.table-wrapper {
  overflow-x: auto;
  margin-bottom: var(--space-lg);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

th, td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

th {
  background: var(--color-bg-alt);
  font-weight: 600;
}

tr:hover {
  background: var(--color-bg);
}

/* Info/Warning/Tip Boxes */
.info-box {
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.info-box.tip {
  background: rgba(22, 163, 74, 0.1);
  border-left: 4px solid var(--color-success);
}

.info-box.warning {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid var(--color-warning);
}

.info-box.info {
  background: rgba(37, 99, 235, 0.1);
  border-left: 4px solid var(--color-info);
}

.info-box-title {
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* Related Guides */
.related-guides {
  margin-top: var(--space-4xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-border);
}

.related-guides h2 {
  border-bottom: none;
  padding-bottom: 0;
}

.related-guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 1024px) {
  .related-guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .related-guides-grid {
    grid-template-columns: 1fr;
  }
}

/* Comparison Tables */
.comparison-table {
  width: 100%;
}

.comparison-table th:first-child {
  width: 30%;
}

.comparison-table .check {
  color: var(--color-success);
}

.comparison-table .cross {
  color: var(--color-error);
}

/* Process Steps */
.process-steps {
  counter-reset: step;
}

.process-step {
  position: relative;
  padding-left: 60px;
  margin-bottom: var(--space-2xl);
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.process-step h4 {
  margin-top: 0;
}

/* Tool Cards in Guide */
.tool-comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.tool-comparison-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.tool-comparison-card h4 {
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.tool-comparison-card .price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.tool-comparison-card ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.tool-comparison-card .best-for {
  background: var(--color-bg);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}

/* Checklist in Guide */
.guide-checklist {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.guide-checklist h4 {
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.guide-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
}

.guide-checklist li::before {
  content: '☐';
  color: var(--color-primary);
  font-size: 1.1em;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

.mb-0 {
  margin-bottom: 0;
}

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

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

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

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mt-xl {
  margin-top: var(--space-xl);
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .newsletter-section {
    display: none;
  }

  .guide-content {
    max-width: 100%;
    padding: 0;
  }

  a {
    color: var(--color-text);
  }
}
