
  /* --- CORE STYLES --- */
  #noble-wrapper {
    background-color: #000000 !important;
    color: #e5e5e5;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.8; /* Increased line height for readability */
    padding: 80px 20px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    font-size: 18px; /* Base font size set explicitly */
  }
  #noble-wrapper * { box-sizing: border-box; }

  /* --- TYPOGRAPHY --- */
  #noble-wrapper h1, #noble-wrapper h2, #noble-wrapper h3 {
    color: #ffffff;
    margin-top: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }
  
  /* Scaled up Headings */
  #noble-wrapper h1 { font-size: 3.5rem; margin-bottom: 30px; }
  #noble-wrapper h2 { font-size: 2.4rem; margin-bottom: 25px; color: #ffffff; }
  #noble-wrapper h3 { font-size: 1.6rem; margin-bottom: 15px; color: #ffffff; }
  
  /* Scaled up Body Text */
  #noble-wrapper p { 
    margin-bottom: 25px; 
    color: #a3a3a3; 
    font-size: 1.2rem; /* Approx 21px on desktop */
  }
  #noble-wrapper strong { color: #ffffff; font-weight: 600; }

  /* Gradient Text Effect */
  .noble-gradient-text {
    background: linear-gradient(90deg, #c084fc, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* --- LAYOUT GRID --- */
  .noble-container { max-width: 1100px; margin: 0 auto; } /* Widened container slightly */
  
  .noble-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  
  .noble-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  /* --- CARDS --- */
  .noble-card {
    background-color: #111111;
    border: 1px solid #262626;
    border-radius: 16px;
    padding: 40px; /* More padding */
    transition: transform 0.2s, border-color 0.3s;
    height: 100%;
  }
  .noble-card:hover { border-color: #404040; }

  /* --- SPECIAL SECTIONS --- */
  .noble-badge {
    display: inline-block;
    background: #171717;
    border: 1px solid #333;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem; /* Larger badge text */
    color: #c084fc;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    font-weight: bold;
  }

  /* AI Section Special Style */
  .noble-ai-section {
    background: linear-gradient(145deg, #0a0a0a, #1a1025);
    border: 1px solid #3b0764;
    padding: 60px;
    border-radius: 20px;
    margin: 60px 0;
  }

  /* List Styles */
  .noble-check-list { list-style: none; padding: 0; margin: 0; }
  .noble-check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    color: #d4d4d4;
    font-size: 1.15rem; /* Larger list text */
  }
  .noble-check-list li::before {
    content: "•";
    color: #ec4899;
    font-weight: bold;
    font-size: 2em; /* Larger bullet */
    position: absolute;
    left: 0;
    top: -12px;
  }

  /* Button */
  .noble-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 30px;
    transition: background 0.3s;
  }
  .noble-btn:hover { background-color: #cccccc; }

  /* --- MOBILE RESPONSIVE --- */
  @media (max-width: 768px) {
    #noble-wrapper { padding: 40px 20px; }
    #noble-wrapper h1 { font-size: 2.5rem; }
    #noble-wrapper h2 { font-size: 2rem; }
    #noble-wrapper p { font-size: 1.1rem; }
    .noble-grid-3, .noble-grid-2 { grid-template-columns: 1fr; gap: 30px; }
    .noble-ai-section { padding: 30px; }
    .noble-card { padding: 30px; }
  }
