body {
    font-family: Inter, Noto, Arial, sans-serif;
    background-color: #f1f3f3;
    color: #202020;
    font-size: 14px;
    line-height: 20px;

  }

  a {
  color: #f47e42;
  text-decoration: none;
  }

  body {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    -webkit-box-pack: start;
    justify-content: flex-start;
    margin: 0px;
    padding: 0px;
  }

  article {
    height: 100%;
    flex: 1 1 0%;
  }

  article section {
    max-width: 1200px;
    background-color: white;
    border-radius: 4px;
    box-shadow: rgb(0 0 0 / 20%) 0px 1px 2px, rgb(0 0 0 / 10%) 0px 1px 3px;
  }

  article h1 {
    margin: 0;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    height: 52px;
    padding: 48px 48px 16px 48px;
    flex: 0 0 auto;
    font-size: 32px;
    font-weight: bold;
    line-height: 32px;
    margin-right: 16px;
  }

  /* Title wrapper for border */
.title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgb(217, 217, 217);  /* Moved border here */
  padding-bottom: 30px;  /* Optional: adjust spacing */
}

.feedback-card {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
  border: 1px solid #ffd9c2;
  border-radius: 8px;
  padding: 8px 12px;
  text-align: right;
  box-shadow: 0 1px 3px rgba(245, 125, 32, 0.1);
  margin-right: 46px;
  width: fit-content;
  flex-shrink: 0;
  min-width: 180px;
  margin-top: 8px;
}
@media (max-width: 800px) {
  .feedback-card {
    display: none;
  }
}

.feedback-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.feedback-text {
  text-align: right;
}

.feedback-title {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  margin-bottom: 2px;
  line-height: 1.3;
}

.feedback-message {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.feedback-email-link {
  color: #f57d20;
  text-decoration: none;
  border-bottom: 1px solid #f57d20;
  font-weight: 500;
}

.feedback-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}


.sub-header {
    font-size: 18px;  /* Adjust the font size */
    font-weight: normal;  /* Keep it lighter than the title */
    line-height: 1.5;  /* Spacing for readability */
    padding: 0px 48px; /* Same padding as the H1 for alignment */
    color: #6A767C    ;  /* Adjust color if needed */
}

  article main {
    flex: 1 1 auto;
    padding: 48px;
  }

  article h2 {
    font-size: 20px;
    letter-spacing: 0.15px;
    line-height: 28px;
    padding: 10px 0px;
    margin: 0;
  }

  article h3 {
    font-size: 16px;
    letter-spacing: 0.15px;
    line-height: 24px;
  }

  summary {
    /* font-size: 18px; */
    letter-spacing: 0.25px;
    padding: 10px 0px;
    /* font-weight: bold; */
  }

  .collapseListTierOne {
    /* margin-left: 10px;
    margin-right: 10px; */
    font-size: 16px;
    font-weight: bold;
    padding: 16px 0px;
  }
  /* NEED TO FIX THE CHILD TEXT INDENTION */

  .collapseListTierTwo {
    font-size: 16px;
    font-weight: bold;
    padding: 16px 0px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .collapseListH2 {
    /* margin-left: 10px;
    margin-right: 10px; */
    font-size: 20px;
    font-weight: bold;
    padding: 16px 0px;
  }
  
  .collapseListH2 .collapseSubhead {
    display: block;
    margin-top: 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    /* color: #6b7280; */
  }

  /* Guarantee sub-header is on its own line and respects caret space */
  summary .collapseSubhead {
    display: block;
    padding-right: 32px;        /* mirror summary padding-right to keep clear of caret */
  }

  p {
    letter-spacing: 0.25px;
    padding: 10px 0px;
    margin: 0;
  }

  .details-bottom-spacing {
    padding-bottom: 10px; /* Adjust as needed for visual balance */
  }

  hr {
    border: none;          /* Removes the default border */
    border-top: 2px solid #3498db; /* Sets a custom color and thickness */
    border-color: #D6DADC;
}

/* Partner Program Steps */
.steps-container {
  padding: 24px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.step-item {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  gap: 16px;
}

.step-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background-color: #fff3e0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-inner {
  width: 40px;
  height: 40px;
  background-color: #f0f0f0;
  border-radius: 4px;
}

.step-icon-inner img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
  


.step-content {
  flex: 1;
}

.step-title {
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 8px;
  /* color: #ff6f00; */
}

.step-description {
  margin-top: 0;
}

  p img { max-width: 100%;}

  code, pre {
    background-color: #f6f8fa;
  }

  pre {
    padding: 16px;
    overflow: auto;
  }

  table {
    border: 1px solid #d6dadc;
    border-collapse: collapse;
    border-radius: 4px;
    margin-bottom: 10px;
  }

  tr {
    border-bottom: 1px solid #d6dadc;
  }

  td, th {
    padding: 16px;
  }

  th {
    height: 48px;
  }

  blockquote {
    margin: 16px 0px;
    -webkit-box-align: center;
    align-items: center;
    border-left: 8px solid #e61920;
    border-radius: 4px;
    padding: 4px 16px;
    box-shadow: #0000001a 0px 1px 3px 0px, #00000033 0px 1px 2px 0px;
    background-color: #fef6f6;
  }

  /* Heading Links */
  .heading-link-container {
    padding: 10px 0;
    position: relative;
    margin-top: -52px;
    height: 32px;
  }

  .heading-link-container:hover > .heading-link {
    opacity: 1;
  }

  .heading-link {
    font-size: 12px;
    padding: 5px;
    opacity: 0;
    position: absolute;
  }

  .heading-link::before {
    content: '\1f517'; /*link character*/
  }

  .heading-link:hover {
    opacity: 1;
  }

  h2 + .heading-link-container > .heading-link {
    transform: translate(-26px, 2px);
  }
  
  h3 + .heading-link-container > .heading-link {
    transform: translate(-26px, 0px);
  }

  h4 + .heading-link-container > .heading-link {
    transform: translate(-26px, -2px);
  }

  /* Container for the dropdown */
  details {
    position: relative;
    width: 100%;
  }

  /* Summary text aligned to the left */
  summary {
    display: inline-block;
    text-align: left;
    width: 100%;
    cursor: pointer;
    position: relative;
    padding-right: 25px; /* Add padding for the caret */
  }

  /* Remove default caret */
  summary::marker {
    content: '';
  }

  /* Custom caret, default state */
  summary::after {
    /* content: '▼'; Custom caret symbol */
    font-family: "Font Awesome 5 Free"; /* Specify FontAwesome */
    content: "\f078"; /* FontAwesome chevron-down unicode */
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease; /* Smooth transition for rotation */
  }

  /* Rotate caret when details is open */
  details[open] summary::after {
    transform: translateY(-50%) rotate(180deg); /* Rotate caret when open */
  }

  /* Styling for Create Your Account CTA */
  .cta-container {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    font-size: 16px;
  }
  
  /* Default State */
  .create-account-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: var(--Component-spacing-12px, 12px) var(--component-spacing-24-px-standard, 24px);
    border-radius: var(--radius-xs-4-px, 4px);
    background: var(--buttons-links-conversion-default, #FF5200);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
  }
  
  /* Hover State */
  .create-account-button:hover {
    background: var(--buttons-links-conversion-hover-e-14504, #E14504);
  }

  /* Was This Helpful Widget */
  .helpful-widget {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    margin-top: 32px;
    border-top: 1px solid #d6dadc;
  }

  .helpful-widget span {
    font-size: 14px;
    color: #666;
  }

  .helpful-widget button {
    padding: 6px 16px;
    border: 1px solid #d6dadc;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    transition: all 0.2s;
  }

  .helpful-widget button:hover {
    border-color: #f47e42;
    color: #f47e42;
  }

  .helpful-widget button.selected {
    background: #fff3e0;
    border-color: #f47e42;
    color: #f47e42;
    font-weight: 600;
  }

  .helpful-thanks {
    font-size: 13px;
    color: #f47e42;
    display: none;
  }