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

  /* --- TYPOGRAPHY --- */
  #noble-policy-wrapper h1 { 
    color: #ffffff;
    margin-top: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: 3.5rem;
    margin-bottom: 30px; 
    line-height: 1.2; 
    text-align: center; 
  }
  
  #noble-policy-wrapper h2 {
    color: #ffffff;
    font-size: 2.0rem; /* Slightly smaller to fit inside boxes better */
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }

  #noble-policy-wrapper h3 { 
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 15px; 
    color: #ffffff; 
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  #noble-policy-wrapper p { 
    margin-bottom: 25px; 
    color: #a3a3a3; 
    font-size: 1.1rem;
    text-align: justify;
  }
  
  #noble-policy-wrapper strong { color: #ffffff; font-weight: 600; }
  #noble-policy-wrapper a { color: #c084fc; text-decoration: underline; }

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

  /* --- LAYOUT --- */
  .noble-container { max-width: 1000px; margin: 0 auto; }
  
  /* --- THE "BRACKET" BOXES --- */
  .noble-section-box {
    background-color: #000000; /* Solid Black Background */
    border: 1px solid #333333; /* The "Bracket" Border */
    border-radius: 4px; /* Slight rounded corner */
    padding: 40px;
    margin-bottom: 30px; /* Space between boxes */
    box-shadow: 0 4px 20px rgba(0,0,0,0.5); /* Subtle depth */
  }

  /* --- LIST STYLES --- */
  .noble-list { list-style: none; padding: 0; margin: 0; }
  .noble-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #d4d4d4;
    font-size: 1.1rem;
  }
  .noble-list li::before {
    content: "•";
    color: #ec4899; 
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.4rem;
    line-height: 1.2;
  }

  /* --- MOBILE RESPONSIVE --- */
  @media (max-width: 768px) {
    #noble-policy-wrapper { padding: 40px 20px; }
    #noble-policy-wrapper h1 { font-size: 2.5rem; }
    .noble-section-box { padding: 25px; }
  }
