/*** uncss> filename: styles.css ***/
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    padding: 1rem;
  }

  .container {
    max-width: 100%;
  }

  .container p {
    padding: 0 1rem;
  }

  h2 {
    text-align: center;
    font-size: 2rem;
    padding: 1vw;
  }
  /*  */
  img {
    max-width: 100%;
    border-radius: 8px;
  }

  @media screen and (min-width: 769px) {
  /* Styles for larger screens */
}

/* Top three crucial factors section */

.container {
  margin: 0 auto;
  padding: 0 1rem;
}
/*  end of top 3 crucial factors sections */


/* Everything about EMI section */

/* Responsive for Mobile */

/* Everything about EMI section ends */


/* Interest rate section */

/* Mobile-friendly adjustments */

/* Interest rate section code ends */


/* All other above secs */

.conclusion {
  background: #e0f2fe;
  padding: 20px 25px;
  border-left: 5px solid #0ea5e9;
  border-radius: 10px;
  margin-top: 40px;
  color: #0c4a6e;
  font-weight: 500;
  font-size: 1rem;
}

/* Responsive Design */

/* end of it---- */

  /*  */
  ul {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
  }
  ul li {
    margin-bottom: 0.4rem;
  }

  /*  */

  @media (min-width: 768px) {
    .container {
      padding: 0 2rem;
    }
  }
  h1 {
    padding: 0 1rem;
  }
  /* Header */

  .header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
  }

  .header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 140px;
    height: 70px;
  }

  .header__nav {
    display: none;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .header__nav {
      display: flex;
    }
  }

  .header__nav a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    transition: color 0.2s;
  }

  .header__nav a:hover {
    color: #2563eb;
  }

  /* Hero Section */

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
  }

  .btn--primary {
    background: #2563eb;
    color: #ffffff;
  }

  .btn--primary:hover {
    background: #1d4ed8;
  }

  /* Cards */

  /* Educational Section */

  /* Articles */

  /* Discussion */

  /* Sidebar */

  /* Tips */

  /* Footer */
  .footer {
    background: #1e293b;
    color: #ffffff;
    padding: 3rem 0;
  }

  .footer__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .footer__content {
      grid-template-columns: 1fr 2fr;
    }
  }

  .footer__brand p {
    color: #94a3b8;
  }

  .footer__links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
  }

  .footer__column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .footer__column ul {
    list-style: none;
  }

  .footer__column ul li {
    margin-bottom: 0.5rem;
  }

  .footer__column ul li a {
    color: #94a3b8;
    text-decoration: none;
  }

  .footer__column ul li a:hover {
    color: #ffffff;
  }

  .footer__bottom {
    border-top: 1px solid #475569;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
  }

  /* Responsive Design */

  @media (max-width: 480px) {
    .container {
      padding: 0 1rem;
    }
  }

  /* Animation and Transition Classes */

  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }

  /* Focus states for accessibility */
  .btn:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
  }

  /* Loading states */
  .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  /* Hover effects */

  /* Print styles */
  @media print {
    .footer {
      display: none;
    }

    body {
      background: white;
    }
  }
   
/*** uncss> filename: articles.css ***/
 /* Article-specific styles */
 .article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.article-header {
    margin-bottom: 2rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-featured-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.article-intro {
    font-size: 1.125rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.conclusion {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 3rem;
}

.conclusion h2 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.conclusion p {
    color: #334155;
    line-height: 1.7;
}

.article-cta {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    margin-top: 3rem;
}

.article-cta h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.article-cta p {
    color: #334155;
    margin-bottom: 1.5rem;
}

.related-articles {
    margin-top: 4rem;
}

.related-articles h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-article {
    background: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.related-article__image {
    height: 150px;
    overflow: hidden;
}

.related-article__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-article__content {
    padding: 1rem;
}

.related-article__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.related-article__excerpt {
    font-size: 0.875rem;
    color: #64748b;
}

img {
    width: 100%;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Boost credit */

 /* Article-specific styles */
        .article-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .article-header {
            margin-bottom: 2rem;
            text-align: center;
        }

        .article-header h1 {
            font-size: 2.5rem;
            color: #0f172a;
            margin-bottom: 1rem;
        }

        .article-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            color: #64748b;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
        }

        .article-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .article-featured-image {
            width: 100%;
            height: auto;
            border-radius: 0.75rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .article-intro {
            font-size: 1.125rem;
            color: #334155;
            line-height: 1.7;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .mistake-section {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .mistake-section h2 {
            font-size: 1.75rem;
            color: #0f172a;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .mistake-number {
            background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
            color: white;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.3);
        }

        .mistake-section p {
            color: #334155;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .content-image {
            width: 100%;
            height: auto;
            border-radius: 0.75rem;
            margin: 1.5rem 0;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .tip-box {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-left: 4px solid #f59e0b;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0.5rem;
            position: relative;
        }

        .tip-box::before {
            content: "💡";
            position: absolute;
            top: 1rem;
            left: -0.5rem;
            background: #f59e0b;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .tip-box strong {
            color: #92400e;
            display: block;
            margin-bottom: 0.5rem;
        }

        .tip-box p {
            margin: 0;
            color: #78350f;
            padding-left: 1rem;
        }

        .mistakes-summary {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            border-radius: 0.75rem;
            padding: 2rem;
            margin: 2rem 0;
            text-align: center;
        }

        .mistakes-summary h3 {
            font-size: 1.5rem;
            color: #991b1b;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .mistakes-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        @media (min-width: 768px) {
            .mistakes-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .mistake-item {
            background: #ffffff;
            border-radius: 0.5rem;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .mistake-item i {
            color: #dc2626;
            font-size: 1.25rem;
            width: 1.5rem;
            text-align: center;
        }

        .mistake-item span {
            font-size: 0.875rem;
            color: #374151;
            font-weight: 500;
        }

        .cost-impact {
            background: #ffffff;
            border-radius: 0.75rem;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .cost-impact h3 {
            font-size: 1.25rem;
            color: #0f172a;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .cost-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .cost-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .cost-item {
            text-align: center;
            padding: 1rem;
            border-radius: 0.5rem;
            background: #f8fafc;
        }

        .cost-amount {
            font-size: 1.5rem;
            font-weight: 700;
            color: #dc2626;
            margin-bottom: 0.5rem;
        }

        .cost-description {
            font-size: 0.875rem;
            color: #64748b;
        }

        .prevention-tips {
            background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
            border-radius: 0.75rem;
            padding: 2rem;
            margin: 2rem 0;
        }

        .prevention-tips h3 {
            font-size: 1.25rem;
            color: #166534;
            margin-bottom: 1.5rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .prevention-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .prevention-list li {
            padding: 0.75rem 0;
            color: #166534;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .prevention-list li:before {
            content: "✅";
            flex-shrink: 0;
            margin-top: 0.1rem;
        }

        .conclusion {
            background: #f8fafc;
            padding: 2rem;
            border-radius: 0.75rem;
            margin-top: 3rem;
        }

        .conclusion h2 {
            font-size: 1.5rem;
            color: #0f172a;
            margin-bottom: 1rem;
        }

        .conclusion p {
            color: #334155;
            line-height: 1.7;
            margin: 0;
        }

        .article-cta {
            background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
            padding: 2rem;
            border-radius: 0.75rem;
            text-align: center;
            margin-top: 3rem;
        }

        .article-cta h3 {
            font-size: 1.5rem;
            color: #0f172a;
            margin-bottom: 1rem;
        }

        .article-cta p {
            color: #334155;
            margin-bottom: 1.5rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .related-articles {
            margin-top: 4rem;
        }

        .related-articles h3 {
            font-size: 1.5rem;
            color: #0f172a;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .related-article {
            background: #ffffff;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .related-article:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .related-article__image {
            height: 150px;
            overflow: hidden;
        }

        .related-article__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .related-article__content {
            padding: 1rem;
        }

        .related-article__title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #0f172a;
        }

        .related-article__excerpt {
            font-size: 0.875rem;
            color: #64748b;
        }

        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2rem;
            }

            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }

            .mistake-section h2 {
                font-size: 1.5rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
