/* CSS Variables */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #f43f5e;
  --background: #ffffff;
  --surface: #f8fafc;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 12px;
  --radius-sm: 8px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}

.logo img {
  border-radius: 8px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  text-decoration: none;
}

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

/* Hero Sections */
.hero, .page-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
  padding: 80px 0;
  text-align: center;
}

.hero .container, .page-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.hero-content h1, .page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text);
}

.hero-content p, .page-hero .lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* Buttons */
.cta-btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow);
  text-decoration: none;
}

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

.cta-primary {
  padding: 18px 40px;
  font-size: 1.125rem;
}

.cta-large {
  padding: 20px 48px;
  font-size: 1.25rem;
}

.cta-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  padding: 16px 28px;
  box-shadow: var(--shadow-lg);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Features Section */
.features {
  padding: 100px 0;
}

.features h2, .how-it-works h2, .testimonials h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card svg {
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* How It Works */
.how-it-works {
  background: var(--surface);
  padding: 100px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

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

/* Content Sections */
.content-section {
  padding: 80px 0;
}

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

.content-block h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.content-block h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-block p {
  margin-bottom: 20px;
  color: var(--text-muted);
  line-height: 1.8;
}

.content-block ul, .content-block ol {
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.content-block li {
  margin-bottom: 10px;
}

/* Page Hero (About, Contact, etc) */
.page-hero {
  padding: 80px 0;
  text-align: center;
}

.page-hero .lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Testimonials */
.testimonials {
  background: var(--surface);
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.author-info strong {
  display: block;
  font-size: 0.9375rem;
}

.author-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-section .cta-btn {
  background: white;
  color: var(--primary);
}

.cta-section .cta-btn:hover {
  background: var(--surface);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-methods {
  margin-top: 30px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-method svg {
  color: var(--primary);
  flex-shrink: 0;
}

.contact-method strong {
  display: block;
  margin-bottom: 5px;
}

.contact-method p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Forms */
.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 25px 0;
  background: none;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
}

.faq-answer {
  padding-bottom: 25px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Styled List */
.styled-list {
  margin-left: 20px;
  margin-bottom: 20px;
}

.styled-list li {
  margin-bottom: 10px;
}

/* Tips & Guidelines Grids */
.tips-grid, .guidelines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.tip-card, .guideline-positive, .guideline-negative {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tip-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tip-icon svg {
  color: white;
}

.tip-card h3, .guideline-positive h3, .guideline-negative h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.tip-card p, .guideline-positive p, .guideline-negative p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.guideline-positive {
  border-left: 4px solid #10b981;
}

.guideline-negative {
  border-left: 4px solid #ef4444;
}

/* Steps Detailed */
.steps-detailed {
  max-width: 900px;
  margin: 0 auto;
}

.step-detailed {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  margin-bottom: 60px;
  align-items: start;
}

.step-detailed .step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: span 2;
}

.step-detailed .step-icon svg {
  color: white;
}

.step-detailed .step-number {
  position: absolute;
  top: -10px;
  right: -10px;
}

.step-detailed h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.step-detailed p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}

/* Features Overview */
.features-overview {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.feature-highlight {
  margin-bottom: 60px;
}

.feature-icon-large {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.feature-icon-large svg {
  color: white;
}

.feature-highlight h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.feature-highlight p {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.8;
}

.features-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-item {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-item svg {
  color: var(--primary);
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Stories */
.stories-grid {
  display: grid;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.story-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--surface);
}

.story-avatar {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.story-header h3 {
  font-size: 1.125rem;
  margin-bottom: 5px;
}

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

.story-content {
  padding: 25px;
}

.story-content p {
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.blog-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.blog-category {
  background: var(--primary-light);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.blog-card h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card h2 a {
  color: var(--text);
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: var(--primary);
}

.blog-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.read-more {
  font-weight: 600;
  color: var(--primary);
}

/* Blog Article */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 50px;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-category {
  background: var(--primary-light);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.article-header h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.article-lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.article-content {
  line-height: 1.9;
}

.article-content h2 {
  font-size: 1.75rem;
  margin: 40px 0 20px;
}

.article-content h3 {
  font-size: 1.375rem;
  margin: 30px 0 15px;
}

.article-content p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.article-content ul, .article-content ol {
  margin: 20px 0 20px 25px;
  color: var(--text-muted);
}

.article-content li {
  margin-bottom: 10px;
}

.article-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.article-tags {
  margin-bottom: 20px;
}

.article-tags span {
  font-weight: 600;
  margin-right: 10px;
}

.article-tags a {
  background: var(--surface);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-right: 8px;
  color: var(--text-muted);
}

.article-tags a:hover {
  background: var(--primary-light);
  color: white;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

/* Related Articles */
.related-articles {
  background: var(--surface);
  padding: 80px 0;
  margin-top: 60px;
}

.related-articles h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.article-card {
  background: white;
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

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

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

.article-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* CTA Block */
.cta-block {
  text-align: center;
  background: var(--surface);
  padding: 60px;
  border-radius: var(--radius);
  margin-top: 60px;
}

.cta-block h2 {
  margin-bottom: 15px;
}

.cta-block p {
  margin-bottom: 25px;
}

/* FAQ Preview */
.faq-preview {
  text-align: center;
  padding: 80px 0;
}

.faq-preview h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.faq-preview p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Footer */
.footer {
  background: var(--text);
  color: white;
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-section a:hover {
  color: white;
}

.footer-section p {
  color: #94a3b8;
  line-height: 1.7;
}

.footer .logo {
  color: white;
  margin-bottom: 15px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #334155;
  text-align: center;
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 15px 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-image {
    order: -1;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

  .tips-grid, .guidelines-grid {
    grid-template-columns: 1fr;
  }

  .steps-detailed {
    max-width: 100%;
  }

  .step-detailed {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step-detailed .step-icon {
    grid-row: auto;
    margin: 0 auto;
  }

  .features-grid-two {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-floating {
    bottom: 20px;
    right: 20px;
    padding: 14px 24px;
    font-size: 0.9375rem;
  }
}

/* Typography improvements */
h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

/* Article meta and date styles */
.article-meta,
.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  align-items: center;
}

.article-date,
.article-read-time,
.blog-date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-date,
.article-read-time,
.blog-date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Article navigation */
.article-navigation {
  margin: 30px 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.article-navigation .back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.article-navigation .back-to-blog:hover {
  text-decoration: underline;
}

/* Contact form styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-form .form-group {
  margin-bottom: 0;
}

.contact-info {
  /* Container for contact information */
}

.contact-info h2 {
  font-size: 1.75rem;
  margin-bottom: 15px;
  color: var(--text);
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Guidelines section */
.guidelines-section {
  margin-bottom: 60px;
}

.guidelines-section h2 {
  font-size: 1.75rem;
  margin-bottom: 30px;
  text-align: center;
}

/* Values list (About page) */
.values-list {
  display: grid;
  gap: 25px;
  margin-top: 30px;
}

.value-item {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}

.value-item h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text);
}

.value-item p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.375rem; }

  .values-list {
    grid-template-columns: 1fr;
  }
}

/* Blog article specific */
.blog-article .article-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: var(--text);
}

.blog-article .article-content code {
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
}

.features-cta {
  text-align: center;
  padding: 60px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  margin-top: 40px;
}

.features-cta p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.mid-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.mid-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: white;
}

.mid-cta p {
  font-size: 1.125rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.mid-cta .cta-btn {
  background: white;
  color: var(--primary);
}

.mid-cta .cta-btn:hover {
  background: var(--surface);
}

.blog-intro-cta {
  text-align: center;
  padding: 60px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  margin-bottom: 60px;
}

.blog-intro-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.blog-intro-cta p {
  color: var(--text-muted);
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.explore-section {
  padding: 100px 0;
  background: var(--surface);
}

.explore-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.explore-cta {
  text-align: center;
  margin-top: 40px;
}

.explore-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: inherit;
}

.explore-card svg {
  color: var(--primary);
  margin-bottom: 20px;
}

.explore-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text);
}

.explore-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.article-cta {
  text-align: center;
  padding: 50px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  margin-top: 40px;
}

.article-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.article-cta p {
  color: var(--text-muted);
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-block {
  text-align: center;
  padding: 50px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  margin-top: 40px;
  margin-bottom: 40px;
}

.cta-block h2, .cta-block h3 {
  margin-bottom: 15px;
}

.cta-block p {
  color: var(--text-muted);
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
