
  /* --- IMPORT ROYAL FONT --- */
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

  /* --- WRAPPER --- */
  #noble-cert-dual-wrapper {
    background-color: #000000 !important;
    padding: 80px 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
  }
  #noble-cert-dual-wrapper * { box-sizing: border-box; }

  /* --- GRID LAYOUT (2 ITEMS) --- */
  .noble-cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 80px; /* Generous spacing */
    width: 100%;
    max-width: 1300px; 
  }

  /* --- THE CARD CONTAINER --- */
  .noble-cert-card {
    width: 100%;
    max-width: 600px; 
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the button */
  }

  /* --- THE PREMIUM BRACKET (FRAME) --- */
  .noble-premium-frame {
    position: relative;
    width: 100%;
    background-color: #1a1a1a; 
    border: 1px solid #D4AF37; 
    padding: 22px; 
    box-shadow: 
      0 0 0 9px #080808, 
      0 0 0 11px #D4AF37, 
      0 15px 40px rgba(0,0,0,0.9); 
    margin-bottom: 35px; 
    transition: transform 0.3s ease;
  }

  .noble-premium-frame:hover {
    transform: translateY(-5px); 
    box-shadow: 
      0 0 0 9px #080808, 
      0 0 0 11px #c084fc, /* Purple glow on hover */
      0 20px 50px rgba(192, 132, 252, 0.15);
  }

  .noble-premium-frame img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #333; 
    aspect-ratio: 4/3; 
    object-fit: cover;
  }

  /* --- THE BRAND NAME (TITLE) --- */
  .noble-cert-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; 
    color: #D4AF37; 
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(90deg, #b8860b, #F3E5AB, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* --- SUBTITLE --- */
  .noble-cert-subtitle {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px; /* Space before button */
  }

  /* --- THE ELEGANT BUTTON --- */
  .noble-gold-btn {
    display: inline-block;
    padding: 16px 45px;
    border: 1px solid #D4AF37; /* Gold Border */
    background-color: transparent;
    color: #D4AF37;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .noble-gold-btn:hover {
    background-color: #D4AF37; /* Fills with Gold */
    color: #000000; /* Text turns black */
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5); /* Gold Glow */
    cursor: pointer;
  }

  /* --- MOBILE RESPONSIVE --- */
  @media (max-width: 1024px) {
    .noble-cert-grid {
      grid-template-columns: 1fr;
      gap: 80px;
    }
    .noble-cert-card { max-width: 500px; }
  }
