body {
  background: #f9fafb;
}

.hero-section {
  animation: fadeIn 0.8s ease-in-out;
}

.card {
  border-radius: 16px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.btn {
  border-radius: 10px;
}

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

/* =========================
   ARTICLE PREMIUM STYLING
========================= */

.article-content {
  max-width: 820px;
  margin: auto;
  line-height: 1.8;
  font-size: 1.05rem;
}

.article-content h1 {
  font-size: 2.4rem;
  letter-spacing: -0.5px;
}

.article-content h2 {
  font-size: 1.6rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  border-left: 4px solid #0d6efd;
  padding-left: 12px;
}

.article-content p {
  color: #333;
}

.article-content ul {
  padding-left: 1.2rem;
}

.article-content ul li {
  margin-bottom: 0.6rem;
}

/* Highlight box (trust feel) */
.info-box {
  background: #f8f9fa;
  border-left: 4px solid #0d6efd;
  padding: 1.2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

/* Comparison table */
.article-content table {
  font-size: 0.95rem;
}

.article-content thead {
  background: #f1f3f5;
}

/* Product card */
.product-card {
  border-radius: 16px;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Affiliate button */
.btn-affiliate {
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 12px;
}

/* FAQ */
.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h5 {
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .article-content h1 {
    font-size: 1.9rem;
  }
}
