/* Add this CSS to make radio buttons work properly */
    .split-method {
        position: relative;
        cursor: pointer;
    }
    
    .split-method input[type="radio"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }
    
    .split-method-label {
        display: block;
        cursor: pointer;
        padding: 1rem;
        border: 2px solid #e2e8f0;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .split-method input[type="radio"]:checked + .split-method-label {
        border-color: #4299e1;
        background-color: #ebf8ff;
    }
    
    .split-method:hover .split-method-label {
        border-color: #cbd5e0;
    }
    
    .split-method-content {
        display: block;
    }
    
    .split-method-content .method-title {
        display: block;
        margin-top: 0;
        margin-bottom: 0.25rem;
        font-size: 1.125rem;
        font-weight: 600;
        color: #2d3748;
    }
    
    .split-method-content .method-description {
        display: block;
        margin-bottom: 0;
        font-size: 0.875rem;
        line-height: 1.4;
        color: #718096;
    }
    .trust-box {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  padding: 1rem;
  background-color: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 0.5rem;
  text-align: center;
}

.trust-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 600;
  color: #166534;
}

.trust-bullets li {
  margin: 6px 0;
}
