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

body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  background: #f4f7fb;
  color: #1f2937;
  line-height: 1.75;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.blog-page {
  padding: 32px 16px 60px;
}

.blog-article {
  max-width: 920px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.blog-hero {
  padding: 36px 28px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  border-bottom: 1px solid #e5e7eb;
}

.blog-category {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffedd5;
  color: #c2410c;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.blog-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 16px;
  font-weight: 800;
}

.blog-excerpt {
  font-size: 1.05rem;
  color: #475569;
  max-width: 760px;
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  color: #64748b;
}

.blog-section {
  padding: 28px;
  border-bottom: 1px solid #eef2f7;
}

.blog-section:last-child {
  border-bottom: none;
}

.blog-section h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.3;
  color: #111827;
  margin-bottom: 14px;
  font-weight: 800;
}

.blog-section h3 {
  font-size: 1.15rem;
  color: #111827;
  margin-bottom: 10px;
  font-weight: 700;
}

.blog-section p {
  margin-bottom: 14px;
  font-size: 1.02rem;
  color: #374151;
}

.blog-section ul,
.blog-section ol {
  margin: 16px 0 18px 22px;
}

.blog-section li {
  margin-bottom: 10px;
  font-size: 1.02rem;
  color: #374151;
}

.faq-section .faq-item {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 14px;
}

.faq-section .faq-item p {
  margin-bottom: 0;
}

.blog-section strong {
  color: #0f172a;
}

.blog-section em {
  color: #c2410c;
  font-style: normal;
  font-weight: 600;
}

.blog-section blockquote {
  border-left: 4px solid #f97316;
  background: #fff7ed;
  padding: 16px 18px;
  border-radius: 12px;
  color: #9a3412;
  margin: 18px 0;
}

.blog-section code {
  background: #fff1e6;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.95em;
}

.read-more-btn,
.blog-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  background: #f97316;
  color: #ffffff;
  font-weight: 700;
  border: 0;
  transition: 0.25s ease;
}

.read-more-btn:hover,
.blog-btn:hover {
  background: #ea580c;
  text-decoration: none;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .blog-page {
    padding: 16px 10px 40px;
  }

  .blog-hero,
  .blog-section {
    padding: 20px 16px;
  }

  .blog-meta {
    gap: 8px;
  }

  .blog-excerpt {
    font-size: 1rem;
  }

  .blog-section ul,
  .blog-section ol {
    margin-left: 18px;
  }
}

@media (max-width: 480px) {
  .blog-article {
    border-radius: 18px;
  }

  .blog-hero h1 {
    font-size: 1.7rem;
  }

  .blog-section h2 {
    font-size: 1.3rem;
  }

  .blog-section p,
  .blog-section li {
    font-size: 0.98rem;
  }
}