
    /* CSS styles for the page */
    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      padding: 10px 20px 60px; /* Added padding-top for fixed header */
      text-align: center;
      position: relative;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__hero-subtitle {
      font-size: 1.3em;
      max-width: 800px;
      margin: 0 auto 30px;
      opacity: 0.9;
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 12px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__content-section {
      max-width: 1000px;
      margin: 40px auto;
      padding: 20px 25px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__section-title {
      color: #1a2a6c;
      font-size: 2em;
      margin-bottom: 25px;
      border-bottom: 3px solid #fdbb2d;
      padding-bottom: 10px;
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__step-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
      padding: 20px;
      background-color: #f0f8ff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__step-number {
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      background-color: #fdbb2d;
      color: #1a2a6c;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.8em;
      font-weight: bold;
      margin-right: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__step-content {
      flex-grow: 1;
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__step-content h3 {
      color: #b21f1f;
      font-size: 1.5em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__step-content p {
      margin-bottom: 10px;
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__image-container {
      text-align: center;
      margin: 30px 0;
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      display: block; /* Ensures image doesn't have extra space below it */
      margin: 0 auto;
      box-sizing: border-box; /* Crucial for responsive images */
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__tips-list,
    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__benefits-list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__tips-list li,
    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__benefits-list li {
      background-color: #fff3e0;
      padding: 15px 20px;
      border-left: 5px solid #fdbb2d;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      font-weight: 500;
      box-sizing: border-box; /* Ensure padding is included in width */
      word-wrap: break-word; /* Handle long words */
      overflow-wrap: break-word; /* Handle long words */
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__disclaimer-section {
      background-color: #fff0f0;
      padding: 25px;
      border-left: 5px solid #b21f1f;
      border-radius: 8px;
      margin-top: 40px;
      color: #666;
    }

    .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__disclaimer-section h3 {
      color: #b21f1f;
      margin-top: 0;
      font-size: 1.4em;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__hero-section {
        padding: 10px 15px 40px; /* Adjusted padding-top for mobile fixed header */
        border-radius: 0 0 10px 10px;
      }

      .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__hero-title {
        font-size: 2em;
      }

      .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__hero-subtitle {
        font-size: 1em;
        margin-bottom: 20px;
      }

      .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__content-section {
        margin: 20px auto;
        padding: 15px;
      }

      .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
      }

      .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
      }

      .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__step-number {
        margin: 0 0 15px 0;
      }

      .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__step-content h3 {
        font-size: 1.3em;
      }

      .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__tips-list,
      .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__benefits-list {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__tips-list li,
      .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__benefits-list li {
        padding: 12px 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__image-container {
        margin: 20px 0;
      }

      .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__hero-title {
        font-size: 1.8em;
      }
      .page-resources-how-to-start-using-nohu52-a-complete-beginners-step-by-step-guide__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
      }
    }
  