 body {
            font-family: 'Open Sans', sans-serif;
            background-color: #f8f5fc;
            color: #160a3d;
            line-height: 1.6;
            padding: 20px;
        }

        .fact-sheet {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        a{
            color:#dc32a9;
            text-decoration: none;
            font-weight: bold;
        }
        h1 {
            color: #A250A0;
            font-family: 'Montserrat', sans-serif;
            text-align: center;
            margin-bottom: 30px;
        }

        .faq-item {
            border-bottom: 1px solid #eee;
            margin-bottom: 15px;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            cursor: pointer;
        }

        .faq-question h3 {
            margin: 0;
            font-size: 1.1rem;
            color: #160a3d;
        }

        .toggle-icon {
            font-size: 1.5rem;
            font-weight: bold;
            color: #A250A0;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 15px;
        }

        .faq-answer p {
            margin: 0;
            padding: 15px 0;
        }

        .faq-item.active .faq-answer {
            max-height: 1000px;
        }

        .faq-item.active .toggle-icon {
            transform: rotate(45deg);
        }

        /* Style additions */
.payout-options {
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.option-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.option-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2.5rem;
}

.option-badge {
  display: inline-block;
  width: 2rem;
  height: 1.5rem;
  background: var(--accent);
  color: white;
  text-align: center;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.8rem;
  line-height: 1.5rem;
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.option-divider {
  text-align: center;
  font-weight: bold;
  color: var(--accent);
  padding: 0.2rem 0 !important;
  font-style: italic;
}
.disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}
.footnote {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}
/* ====== Badge Footer ====== */
.badge-footer {
  width: 100%;
  max-width: 320px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 18px;
  font-style: italic;
}       /* DIVIDER - This version WILL work */
.section-divider {
  display: block;
  height: 3px;
  width: 100%;
  margin: 1.5rem 0;
  border: none;
  
  /* Modern browsers */
  background-image: linear-gradient(90deg, 
    #dc32a9, #7e1994, 
    #f7bebe, #9400D3,  #dc32a9);
  
  /* Fallback for older browsers */
  background-color: #FF0000; /* Solid red fallback */
  
  /* Add these properties to ensure visibility */
  opacity: 1 !important;
  visibility: visible !important;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.section-divider-animate {
  display: block;
  height: 3px;
  width: 100%;
  margin: 1.5rem 0;
  border: none;
  position: relative;
  overflow: hidden;
  
  /* Fallback solid color */
  background-color: #f5ddc9;
}

.section-divider-animate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  /* Gradient with the colors you want */
  background: linear-gradient(
    90deg,
    rgba(220, 50, 169, 0) 0%,
    rgba(220, 50, 169, 1) 20%,
    rgba(126, 25, 148, 1) 40%,
    rgba(247, 190, 190, 1) 60%,
    rgba(148, 0, 211, 1) 80%,
    rgba(220, 50, 169, 0) 100%
  );
  
  /* Animation properties */
  animation: shimmer 9s infinite linear;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.site-footer {
text-align: right;
padding-right:20px;

position: fixed;
height:20px;
bottom:10px;
right: 0px;
left: 0px;
}
  
.site-footer p {
      margin-top:-15px;
      font-size: 16px;
      color: rgba(107, 11, 190, 0.9);
    }
.copyright {
      
      font-size: 12px;
      margin-top: -15px;
    color: rgba(107, 11, 190, 0.9);
}