
  /* Center card */
  article[data-history-node-id="119"] .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  /* Card styling */
  article[data-history-node-id="119"] .card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 560px;
  }
  
  /* Logo */
  article[data-history-node-id="119"] .logo img {
    width: 80px;
    margin-bottom: 20px;
  }
  
  /* Heading */
  article[data-history-node-id="119"] .card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a2b49;
    margin-bottom: 20px;
  }
  
  /* Question */
  article[data-history-node-id="119"] .question {
    font-size: 14px;
    color: #555;
    margin: 25px 0 15px;
  }
  
  /* Buttons */
  article[data-history-node-id="119"] .btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    border: none;
    margin: 8px;
    min-width: 100px;
  }
  
  /* Primary button (Log In) */
  article[data-history-node-id="119"] .btn.primary {
    background: #163a56;
    color: #fff;
    width: 100%;
  }
  
  article[data-history-node-id="119"] .btn.primary:hover {
    background: #0f2b40;
  }
  
  /* Yes button */
  article[data-history-node-id="119"] .btn.yes {
    background: #1c7c54;
    color: #fff;
  }
  
  article[data-history-node-id="119"] .btn.yes:hover {
    background: #145c3e;
  }
  
  /* No button */
  article[data-history-node-id="119"] .btn.no {
    background: #fff;
    color: #1c7c54;
    border: 2px solid #1c7c54;
  }
  
  article[data-history-node-id="119"] .btn.no:hover {
    background: #1c7c54;
    color: #fff;
  }
  
  .home-faq-left .accordionquotion h5 {
    padding-left: 35px;
    padding-top: 15px;
  }