body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #141c2f;
    color: #e6edf3;
    line-height: 1.9;
}
/* BACK BUTTON */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
/* Hover */
.back-btn:hover {
  color: var(--text);
  background: rgba(198, 43, 111, 0.15);
  transform: translateX(-3px);
}

/* Active (click) */
.back-btn:active {
  transform: translateX(-6px) scale(0.98);
  background: rgba(198, 43, 111, 0.25);
}

/* Keyboard accessibility */
.back-btn:focus-visible {
  outline: 2px solid rgba(198, 43, 111, 0.6);
  outline-offset: 4px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #e5e7eb;
  line-height: 1.8;
}

/* Scroll Progress Bar */
.progress-bar {
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  width: 0%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

/* Hero */
.blog-hero {
  padding: 120px 20px 60px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  margin-top: 15px;
  color: #94a3b8;
  font-size: 1.2rem;
}

/* Container */
.blog-container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Sections */
.blog-section {
  margin-bottom: 60px;
  animation: fadeUp 1s ease forwards;
}

.blog-section h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #3b82f6;
}

.blog-section h3 {
  margin-top: 20px;
  color: #8b5cf6;
}

.blog-section ul {
  padding-left: 20px;
}

.blog-section li {
  margin-bottom: 10px;
}

/* Cost Cards */
.cost-card {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.cost-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59,130,246,0.3);
}

.price {
  font-weight: bold;
  color: #22d3ee;
}

/* Highlight */
.highlight {
  background: rgba(59,130,246,0.1);
  padding: 30px;
  border-radius: 15px;
}

/* Image Placeholder */
.image-placeholder {
  border: 2px dashed #3b82f6;
  padding: 10px;
  text-align: center;
  border-radius: 15px;
  color: #94a3b8;
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  margin-top: 80px;
}

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

.cta-buttons {
  margin-top: 30px;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  margin: 10px;
  display: inline-block;
  transition: 0.3s;
}

.primary {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  color: white;
}

.secondary {
  border: 1px solid #3b82f6;
  color: #3b82f6;
}

.btn:hover {
  transform: translateY(-3px);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}