:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --primary-light: #fff7ed;
    --primary-200: #FED7AA;
  
    --bg: #f8fafc;
    --text: #0f172a;
    --muted: #64748b;
    --card: #ffffff;
    --border: #e2e8f0;
  }
  
  /* RESET */
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
  }
  
  /* ✅ CONTAINER (FIXED ALIGNMENT) */
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* GLOBAL SECTION SPACING */
  section {
    margin-bottom: 40px;
  }
  
  /* HEADER */
  .header {
    background: white;
    border-bottom: 1px solid var(--border);
  }
  
  .header .container {
    padding: 15px 20px;
  }
  
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* ✅ FIXED LOGO (MERGED) */
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--primary);
  }
  
  .logo-img {
    height: 40px;
    border-radius: 6px;
  }
  
  .logo-text {
    font-size: 20px;
    font-weight: bold;
  }
  
  /* NAV */
  nav {
    display: flex;
    align-items: center;
  }
  
  .header a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
  }
  
  .header a:hover {
    color: var(--primary);
  }
  
  /* HERO */
  .hero {
    padding: 70px 20px 50px;
    text-align: center;
    background: linear-gradient(
      to bottom,
      var(--primary-light),
      transparent
    );
  }
  
  .hero .container {
    max-width: 800px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    color: var(--muted);
  }
  
  /* BLOG CONTENT (SEO TEXT SECTION) */
  .blog-content {
    margin-top: 40px;
    line-height: 1.7;
  }
  
  .blog-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
  }
  
  .blog-content a:hover {
    text-decoration: underline;
  }
  
  /* FEATURED */
  .featured {
    margin-bottom: 40px;
  }
  
  .featured .card {
    background: var(--primary-light);
    border: none;
  }
  
  /* BLOG GRID */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }
  
  /* CARD */
  .card {
    background: var(--card);
    padding: 22px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  }
  
  .card h2 {
    margin: 12px 0 8px;
    font-size: 1.2rem;
  }
  
  .card p {
    color: var(--muted);
    line-height: 1.5;
  }
  
  /* TAG */
  .tag {
    display: inline-block;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 600;
  }
  
  /* LINKS */
  .card h2 a {
    text-decoration: none;
    color: var(--text);
  }
  
  .card h2 a:hover {
    color: var(--primary);
  }
  
  /* CTA SECTION */
  .blog-cta {
    margin-top: 60px;
    padding: 40px 20px;
    text-align: center;
    background: var(--primary-light);
    border-radius: 12px;
  }
  
  .btn {
    display: inline-block;
    margin-top: 15px;
    background: var(--primary);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
  }
  
  .btn:hover {
    background: var(--primary-dark);
  }
  
  /* ARTICLE PAGE */
  .article {
    padding: 40px 20px;
  }
  
  .article-container {
    max-width: 700px;
    margin: auto;
  }
  
  /* BACK LINK */
  .back {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--muted);
    text-decoration: none;
  }
  
  .back:hover {
    color: var(--primary);
  }
  
  /* TITLE */
  .article-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  
  /* META */
  .article-meta {
    color: var(--muted);
    margin-bottom: 25px;
  }
  
  /* LEAD */
  .lead {
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 20px;
  }
  
  /* PARAGRAPHS */
  .article p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
  }
  
  /* HEADINGS */
  .article h2 {
    margin-top: 30px;
    font-size: 1.4rem;
  }
  
  /* IMAGE */
  .article-image {
    margin: 30px 0;
    text-align: center;
  }
  
  .article-image img {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    border: 1px solid var(--border);
  }
  
  .image-caption {
    font-size: 14px;
    color: var(--muted);
    margin-top: 8px;
  }
  
  /* HIGHLIGHT */
  .highlight {
    background: var(--primary-light);
    padding: 15px 20px;
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    margin: 25px 0;
  }
  
  /* CTA BOX INSIDE BLOG */
  .cta {
    background: var(--primary-200);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    font-weight: 600;
  }
  
  /* ✅ MOBILE FIX */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }
  
    .header-inner {
      flex-direction: column;
      gap: 10px;
    }
  
    nav {
      justify-content: center;
    }
    
  }

  /* FAQ Section */
.faq-section {
  margin-top: 50px;
  padding: 30px;
  background: #f9fafb;
  border-radius: 10px;
}

.faq-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-question {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 18px;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  margin-top: 8px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}