/*** uncss> filename: styles.css ***/
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    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 */

/* 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: 80px;
    height: 80px;
  }

  .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;
  }

  /* 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: terms-of-service.css ***/
 /* Terms of Service Specific Styles */
        .terms-section {
        padding: 2rem 0 4rem;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        min-height: 100vh;
        }

        .terms-header {
        text-align: center;
        margin-bottom: 3rem;
        padding: 2rem 0;
        background: #ffffff;
        border-radius: 1rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .terms-header h1 {
        font-size: 2.5rem;
        color: #1e293b;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        }

        .terms-header h1 i {
        color: #2563eb;
        }

        .terms-subtitle {
        font-size: 1.125rem;
        color: #64748b;
        margin-bottom: 1rem;
        }

        .last-updated {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: #dbeafe;
        color: #1e40af;
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        font-size: 0.875rem;
        font-weight: 500;
        }

        .terms-content {
        max-width: 1000px;
        margin: 0 auto;
        }

        /* Terms Cards */
        .terms-card {
        background: #ffffff;
        border-radius: 0.75rem;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        margin-bottom: 2rem;
        overflow: hidden;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .terms-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .terms-card-header {
        background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
        color: #ffffff;
        padding: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        }

        .terms-card-header i {
        font-size: 1.5rem;
        }

        .terms-card-header h2 {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 600;
        }

        .terms-card-content {
        padding: 2rem;
        }

        .terms-card-content h3 {
        color: #1e293b;
        font-size: 1.25rem;
        margin: 1.5rem 0 1rem 0;
        font-weight: 600;
        }

        .terms-card-content h4 {
        color: #374151;
        font-size: 1.125rem;
        margin: 1rem 0 0.5rem 0;
        font-weight: 600;
        }

        .terms-card-content p {
        color: #4b5563;
        line-height: 1.7;
        margin-bottom: 1rem;
        }

        .terms-card-content ul,
        .terms-card-content ol {
        color: #4b5563;
        margin: 1rem 0;
        padding-left: 1.5rem;
        }

        .terms-card-content li {
        margin-bottom: 0.5rem;
        line-height: 1.6;
        }

        /* Highlight Boxes */
        .highlight-box {
        background: #fef3c7;
        border: 1px solid #f59e0b;
        border-radius: 0.5rem;
        padding: 1rem;
        margin: 1.5rem 0;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        }

        .highlight-box i {
        color: #d97706;
        margin-top: 0.125rem;
        flex-shrink: 0;
        }

        .disclaimer-box {
        background: #dbeafe;
        border: 1px solid #3b82f6;
        border-radius: 0.5rem;
        padding: 1rem;
        margin: 1.5rem 0;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        }

        .disclaimer-box i {
        color: #2563eb;
        margin-top: 0.125rem;
        flex-shrink: 0;
        }

        .warning-box {
        background: #fee2e2;
        border: 1px solid #ef4444;
        border-radius: 0.5rem;
        padding: 1rem;
        margin: 1.5rem 0;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        }

        .warning-box i {
        color: #dc2626;
        margin-top: 0.125rem;
        flex-shrink: 0;
        }

        /* Company Details */
        .company-details {
        background: #f8fafc;
        border-radius: 0.5rem;
        padding: 1.5rem;
        margin: 1rem 0;
        }

        .company-details p {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        }

        .company-details i {
        color: #2563eb;
        width: 1rem;
        }

        /* Service List */
        .service-list {
        list-style: none;
        padding: 0;
        }

        .service-list li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        background: #f8fafc;
        border-radius: 0.5rem;
        margin-bottom: 0.5rem;
        }

        .service-list i {
        color: #2563eb;
        width: 1.25rem;
        text-align: center;
        }

        /* Prohibited Activities Grid */
        .prohibited-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin: 1.5rem 0;
        }

        .prohibited-item {
        background: #fef2f2;
        border: 1px solid #fecaca;
        border-radius: 0.5rem;
        padding: 1rem;
        text-align: center;
        }

        .prohibited-item i {
        color: #dc2626;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        }

        .prohibited-item p {
        margin: 0;
        font-size: 0.875rem;
        font-weight: 500;
        }

        /* License Box */
        .license-box {
        background: #ecfdf5;
        border: 1px solid #10b981;
        border-radius: 0.5rem;
        padding: 1.5rem;
        margin: 1.5rem 0;
        }

        .license-box h4 {
        color: #065f46;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        }

        .license-box i {
        color: #10b981;
        }

        /* Widget Restrictions */
        .restriction-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0;
        }

        .restriction-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        background: #fef2f2;
        border-radius: 0.5rem;
        }

        .restriction-item i {
        color: #dc2626;
        flex-shrink: 0;
        }

        /* Liability Grid */
        .liability-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
        }

        .liability-item {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 0.5rem;
        padding: 1.5rem;
        text-align: center;
        }

        .liability-item i {
        color: #dc2626;
        font-size: 2rem;
        margin-bottom: 1rem;
        }

        .liability-item h4 {
        color: #1e293b;
        margin-bottom: 0.5rem;
        }

        .liability-item p {
        font-size: 0.875rem;
        margin: 0;
        }

        .liability-cap {
        background: #fef3c7;
        border: 1px solid #f59e0b;
        border-radius: 0.5rem;
        padding: 1rem;
        margin: 1.5rem 0;
        text-align: center;
        }

        /* Privacy Link */
        .privacy-link {
        text-align: center;
        margin: 2rem 0;
        }

        .privacy-link .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        }

        /* Law Sections */
        .law-section,
        .jurisdiction-section,
        .dispute-resolution {
        background: #f8fafc;
        border-radius: 0.5rem;
        padding: 1.5rem;
        margin: 1.5rem 0;
        }

        .law-section h3,
        .jurisdiction-section h3,
        .dispute-resolution h3 {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #1e293b;
        margin-bottom: 1rem;
        }

        .law-section i,
        .jurisdiction-section i,
        .dispute-resolution i {
        color: #2563eb;
        }

        /* Changes Process */
        .changes-process {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
        }

        .change-step {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 0.5rem;
        padding: 1.5rem;
        text-align: center;
        }

        .change-step i {
        color: #2563eb;
        font-size: 2rem;
        margin-bottom: 1rem;
        }

        .change-step h4 {
        color: #1e293b;
        margin-bottom: 0.5rem;
        }

        .change-step p {
        font-size: 0.875rem;
        margin: 0;
        }

        .acceptance-notice {
        background: #dbeafe;
        border: 1px solid #3b82f6;
        border-radius: 0.5rem;
        padding: 1rem;
        margin: 1.5rem 0;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        }

        .acceptance-notice i {
        color: #2563eb;
        margin-top: 0.125rem;
        flex-shrink: 0;
        }

        /* Contact Grid */

        /* Acknowledgment Card */
        .acknowledgment-card {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: #ffffff;
        }

        .acknowledgment-card .terms-card-content {
        text-align: center;
        }

        .acknowledgment-content i {
        font-size: 3rem;
        color: #ffffff;
        margin-bottom: 1rem;
        }

        .acknowledgment-content h3 {
        color: #ffffff;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        }

        .acknowledgment-content p {
        color: #d1fae5;
        font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
        .terms-header h1 {
            font-size: 2rem;
            flex-direction: column;
            gap: 0.5rem;
        }

        .terms-card-header {
            flex-direction: column;
            text-align: center;
            gap: 0.5rem;
        }

        .terms-card-content {
            padding: 1.5rem;
        }

        .prohibited-grid,
        .liability-grid,
        .changes-process {
            grid-template-columns: 1fr;
        }

        .highlight-box,
        .disclaimer-box,
        .warning-box,
        .acceptance-notice {
            flex-direction: column;
            text-align: center;
        }
        }

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

        .terms-header {
            margin-bottom: 2rem;
            padding: 1.5rem 1rem;
        }

        .terms-header h1 {
            font-size: 1.75rem;
        }

        .terms-card-content {
            padding: 1rem;
        }
        }

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

        .terms-section {
            background: white;
            padding: 0;
        }

        .terms-card {
            box-shadow: none;
            border: 1px solid #e2e8f0;
            break-inside: avoid;
        }

        .terms-card-header {
            background: #f8fafc !important;
            color: #1e293b !important;
        }
        }

        /* Focus States for Accessibility */
        .terms-card:focus-within {
        outline: 2px solid #2563eb;
        outline-offset: 2px;
        }

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

        /* Animation for Cards */
        @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
        }

        .terms-card {
        animation: fadeInUp 0.6s ease-out;
        }

        .terms-card:nth-child(even) {
        animation-delay: 0.1s;
        }

        .terms-card:nth-child(odd) {
        animation-delay: 0.2s;
        }

