

    .container {
      font-family: 'Inter', sans-serif;
       color: #111827;
      max-width: 1000px;
      margin: auto;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #7c3aed;
      text-align: center;
      margin-bottom: 6px;
    }

    .section-subtitle {
      font-size: 1.125rem;
      color: #4b5563;
      text-align: center;
      margin-bottom: 30px;
    }

    .section-tag {
      text-align: center;
      margin-bottom: 30px;
    }

    .section-tag span {
      background: #ede9fe;
      color: #7c3aed;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
    }

    .tip-box {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 40px;
    }

    .tip {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px 20px;
      border-radius: 10px;
      border: 1px solid #e5e7eb;
    }

    .tip-icon {
      font-size: 1.4rem;
      margin-top: 4px;
      flex-shrink: 0;
    }

    .tip-content h5 {
      font-size: 1rem;
      font-weight: 600;
      margin: 0 0 4px;
      color: #111827;
    }

    .tip-content p {
      margin: 0;
      font-size: 0.95rem;
      color: #374151;
      line-height: 1.6;
    }

    .tip-content li {
      margin: 5px 0 0 18px;
      color: #166534;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .tip.yellow {
      background-color: #fff7ed;
      border-color: #fcd34d;
    }

    .tip.blue {
      background-color: #eff6ff;
      border-color: #93c5fd;
    }

    .tip.green {
      background-color: #f0fdf4;
      border-color: #86efac;
    }

    .highlight-bar {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .highlight-card {
      flex: 1 1 48%;
      border-radius: 10px;
      padding: 20px;
      border: 1px solid #e5e7eb;
    }

    .highlight-card.great {
      background-color: #ecfdf5;
      border-color: #a7f3d0;
    }

    .highlight-card.weak {
      background-color: #fef2f2;
      border-color: #fecaca;
    }

    .highlight-card h3 {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 1.1rem;
      font-weight: 700;
      margin-top: 0;
      margin-bottom: 8px;
    }

    .highlight-card.great h3 {
      color: #15803d;
    }

    .highlight-card.weak h3 {
      color: #b91c1c;
    }

    .highlight-card p {
      font-size: 0.95rem;
      color: #374151;
      margin: 0;
      line-height: 1.6;
    }

    .highlight-card a {
      color: #047857;
      text-decoration: none;
    }

    .why-diff-box {
      padding: 20px;
      border: 1px solid #e5e7eb;
      border-radius: 10px;
    }

    .why-diff-box h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 6px;
      color: #111827;
    }

    .why-diff-box p {
      font-size: 0.95rem;
      color: #374151;
      margin: 0;
      line-height: 1.6;
    }

    .section {
      display: none;
    }

    .nav-buttons {
      text-align: center;
      display: flex;
      justify-content: center;
      gap: 400px;
      margin: 50px 0 30px;
    }

    .nav-buttons button {
      background: #7c3aed;
      color: white;
      border: none;
      padding: 12px 24px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 6px;
      cursor: pointer;
      margin: 0 10px;
      transition: background 0.3s ease;
    }

    .nav-buttons button:hover {
      background: #5b21b6;
    }

    @media (max-width: 768px) {
          .nav-buttons {
    
      gap: 40px;
    
    }
      .highlight-bar {
        flex-direction: column;
      }

      .highlight-card {
        flex: 1 1 100%;
      }

      .section-title {
        font-size: 1.5rem;
      }

      .section-subtitle {
        font-size: 1rem;
      }
     .nav-buttons {
 
      justify-content: center;
      margin: 50px 0 30px;
    }

    }















    
        /* Default hide mobile ad */
        .mobile-ad {
            display: none;
        }

        .desktop-ad {
            display: block;
        }

        /* When screen is below 1024px → show phone ad */
        @media (max-width: 1024px) {
            .desktop-ad {
                display: none;
            }

            .mobile-ad {
                display: block;
            }
        }

        /* Center ads safely */
        .responsive-ad {
            display: flex;
            justify-content: center;
            margin: 20px auto;
        }