
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 20px;
	min-height: 100vh;
	overflow-x: hidden;
	font-size: 1rem;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	overflow-x: hidden;
}
.mycontainer {
	width: 1200px;
	max-width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin: 0 auto;
	padding: 0 15px; /* Add some padding on mobile */
	box-sizing: border-box;
}
.mybox {
	width: 1200px;
	max-width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin: 0 auto;
	padding: 0 15px; /* Add some padding on mobile */
	box-sizing: border-box;
}
.myboxcolumn {
	padding: 20px;
	background: #f0f0f0;
}
.column {
	padding: 20px;
	background: #f0f0f0;
}
.header {
	text-align: center;
	margin-bottom: 40px;
	padding: 30px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}
.break-span {
	display: none;
}
.column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.column ul li {
	margin-bottom: 8px;
}
.column ul li a {
	color: #2c5aa0;
	text-decoration: none;
	padding: 6px 0;
	display: inline-block;
	position: relative;
	transition: all 0.3s ease;
}
.column ul li a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: #2c5aa0;
	transition: width 0.3s ease;
}
.column ul li a:hover {
	color: #1e3a8a;
	padding-left: 8px;
}
.column ul li a:hover::after {
	width: 100%;
}
/* H1 Container with Clean Links */
.h1-with-links {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(to bottom, #ffffff, #f8f8f8);
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(2, 26, 8, 0.58);
	padding: 15px;
	margin-bottom: 1rem;
	width: 100%;
	box-sizing: border-box;
	max-width: 100%;
}
/* H1 Text - Using your exact styles */
.h1-with-links h1 {
	flex: 1;
	margin: 0;
	padding: 0;
	font-weight: 700;
	line-height: 1.3;
	color: #547626;
	color: rgb(2 26 8 / 58%);
	text-shadow: 1px 2px 3px #fff, 0 0 0 #2c4411;
	white-space: nowrap;
	overflow: visible;
	text-overflow: unset;
	text-align: left;
	background: none;
	box-shadow: none;
	/* Your exact H1 styles */
	font-size: clamp(1.1rem, 3.8vw, 2.5rem);
	word-spacing: -0.5px;
	padding-left: 10px;
	padding-right: 10px;
}
.nobox.hsomeclass {          /* keep your real class name here */
	background: none !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	text-align: left !important;
	padding-top: 20px !important;
	padding-bottom: 10px !important;
}
/* Clean Links Container */
.h1-links {
	display: flex;
	gap: 30px;
	align-items: center;
	margin-left: 20px;
}
.comparison-table-container {
	width: 100%;
	overflow-x: auto;
	margin: 20px 0;
}
.litigation-funding-comparison {
	width: 100%;
	border-collapse: collapse;
	background-color: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	border-radius: 8px;
	overflow: hidden;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.litigation-funding-comparison th {
	background-color: #2c3e50;
	color: white;
	font-weight: 600;
	padding: 16px 20px;
	text-align: left;
	font-size: 16px;
	border-bottom: 2px solid #34495e;
}
.litigation-funding-comparison td {
	padding: 14px 20px;
	border-bottom: 1px solid #ecf0f1;
	font-size: 15px;
	line-height: 1.5;
	color: #2c3e50;
}
.litigation-funding-comparison tbody tr:hover {
	background-color: #f8f9fa;
}
.litigation-funding-comparison tbody tr:last-child td {
	border-bottom: none;
}
.litigation-funding-comparison td strong {
	color: #2c3e50;
	font-weight: 600;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
.litigation-funding-comparison {
	font-size: 14px;
}
.litigation-funding-comparison th, .litigation-funding-comparison td {
	padding: 12px 15px;
}
}
/* Clean Text Links */
.h1-link {
	color: #547626;
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	transition: all 0.3s ease;
	white-space: nowrap;
	position: relative;
	padding: 5px 0;
}
.h1-link:hover {
	color: #3a5a1b;
	transform: translateY(-1px);
}
.h1-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #547626;
	transition: width 0.3s ease;
}
.h1-link:hover::after {
	width: 100%;
}
	
	/* list reset */
.v-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;          /* keeps it a column */
  flex-direction: column;
  gap: 12px;              /* space between items */
}

/* link look (unchanged except name) */
.v-nav__link {
  color: #547626;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
  transition: all .3s ease;
}

.v-nav__link:hover {
  color: #3a5a1b;
  transform: translateX(4px); /* tiny nudge right instead of up */
}

.v-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #547626;
  transition: width .3s ease;
}

.v-nav__link:hover::after {
  width: 100%;
}
/* Your exact heading styles for H2-H5 */
h1, h2, h3, h4, h5 {
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 1rem;
	color: #547626;
	color: rgb(2 26 8 / 58%);
	text-shadow: 1px 2px 3px #fff, 0 0 0 #2c4411;
	width: 100%;
	box-sizing: border-box;
	/* text-align: center; */
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	overflow: visible;
	text-overflow: unset;
	white-space: nowrap;
}
/* H2 - ALL characters visible */
h2 {
	font-size: clamp(1rem, 3.5vw, 2rem);
	word-spacing: -0.5px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 20px;
}
/* H3 - ALL characters visible */
h3 {
	font-size: clamp(0.95rem, 3.2vw, 1.75rem);
	word-spacing: -0.5px;
	padding-left: 10px;
	padding-right: 10px;
}
/* H4 - ALL characters visible */
h4 {
	font-size: clamp(0.9rem, 3vw, 1.5rem);
	word-spacing: -0.5px;
	padding-left: 10px;
	padding-right: 10px;
}
/* H5 - ALL characters visible */
h5 {
	font-size: clamp(0.85rem, 2.8vw, 1.25rem);
	word-spacing: -0.5px;
	padding-left: 10px;
	padding-right: 10px;
}
/* Body text styling */
p {
	margin-bottom: 1.2rem;
	font-size: 1rem;
	color: #444;
	line-height: 1.6;
	max-width: 100%;
	overflow-wrap: break-word;
}
.content-section {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
	overflow: hidden;
}

hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #547626, transparent);
    margin: 2rem 0;
    position: relative;
}

hr::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -4px;
    height: 4px;
    background: linear-gradient(to right, transparent, rgba(2, 26, 8, 0.15), transparent);
    filter: blur(2px);
    border-radius: 50%;
}

/* Your exact responsive styles */
        /* Tablet styles */
@media (max-width: 1024px) {
.h1-with-links h1 {
	font-size: clamp(1rem, 3.5vw, 2.2rem);
}
h2 {
	font-size: clamp(0.95rem, 3.2vw, 1.8rem);
}
h3 {
	font-size: clamp(0.9rem, 3vw, 1.6rem);
}
h4 {
	font-size: clamp(0.85rem, 2.8vw, 1.4rem);
}
h5 {
	font-size: clamp(0.8rem, 2.6vw, 1.2rem);
}
}

@media (max-width: 1200px) {
.break-span {
	display: inline;
}
}

/* Large mobile styles */
@media (max-width: 768px) {
.mycontainer {
	grid-template-columns: 1fr; /* 1 column on mobile */
	gap: 10px;
	font-size: .65rem;
	margin: 0 auto;
	padding: 0 5px; /* Add some padding on mobile */
}
.mycontainer ul {
	list-style-type: none;
}
.h1-with-links {
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 15px;
}
.h1-links {
	margin-left: 0;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}
.h1-link {
	font-size: 0.95rem;
}
.h1-with-links h1 {
	font-size: clamp(0.95rem, 3.2vw, 1.8rem);
	padding: 12px 8px;
	letter-spacing: -0.3px;
	word-spacing: -0.8px;
}
h2 {
	font-size: clamp(0.9rem, 3vw, 1.5rem);
	padding: 12px 8px;
	letter-spacing: -0.2px;
	word-spacing: -0.7px;
}
h3 {
	font-size: clamp(0.85rem, 2.8vw, 1.4rem);
	padding: 12px 8px;
	letter-spacing: -0.2px;
	word-spacing: -0.7px;
}
h4 {
	font-size: clamp(0.8rem, 2.6vw, 1.3rem);
	padding: 12px 8px;
	letter-spacing: -0.1px;
	word-spacing: -0.6px;
}
h5 {
	font-size: clamp(0.75rem, 2.4vw, 1.1rem);
	padding: 12px 8px;
	letter-spacing: -0.1px;
	word-spacing: -0.6px;
}
}

/* Small mobile styles */
@media (max-width: 480px) {
.h1-links {
	gap: 15px;
}
.h1-link {
	font-size: 0.9rem;
}
.h1-with-links h1 {
	font-size: clamp(0.9rem, 3vw, 1.5rem);
	padding: 10px 6px;
	letter-spacing: -0.4px;
	word-spacing: -1px;
}
h2 {
	font-size: clamp(0.85rem, 2.8vw, 1.3rem);
	padding: 10px 6px;
	letter-spacing: -0.3px;
	word-spacing: -0.9px;
}
h3 {
	font-size: clamp(0.8rem, 2.6vw, 1.25rem);
	padding: 10px 6px;
	letter-spacing: -0.3px;
	word-spacing: -0.9px;
}
h4 {
	font-size: clamp(0.75rem, 2.4vw, 1.15rem);
	padding: 10px 6px;
	letter-spacing: -0.2px;
	word-spacing: -0.8px;
}
h5 {
	font-size: clamp(0.7rem, 2.2vw, 1.05rem);
	padding: 10px 6px;
	letter-spacing: -0.2px;
	word-spacing: -0.8px;
}
}

/* Extra small mobile styles */
@media (max-width: 400px) {
.h1-links {
	gap: 12px;
}
.h1-link {
	font-size: 0.85rem;
}
.h1-with-links h1 {
	font-size: clamp(0.85rem, 2.7vw, 1.3rem);
	padding: 8px 4px;
	letter-spacing: -0.5px;
	word-spacing: -1.2px;
}
h2 {
	font-size: clamp(0.8rem, 2.5vw, 1.1rem);
	padding: 8px 4px;
	letter-spacing: -0.4px;
	word-spacing: -1.1px;
}
h3 {
	font-size: clamp(0.75rem, 2.3vw, 1.2rem);
	padding: 8px 4px;
	letter-spacing: -0.4px;
	word-spacing: -1.1px;
}
h4 {
	font-size: clamp(0.7rem, 2.1vw, 1.1rem);
	padding: 8px 4px;
	letter-spacing: -0.3px;
	word-spacing: -1px;
}
h5 {
	font-size: clamp(0.65rem, 2vw, 1rem);
	padding: 8px 4px;
	letter-spacing: -0.3px;
	word-spacing: -1px;
}
}

/* Ultra small screens */
@media (max-width: 360px) {
.h1-links {
	flex-direction: column;
	gap: 10px;
}
.h1-link {
	text-align: center;
	width: 100%;
	padding: 8px 0;
	font-size: 0.8rem;
}
.h1-with-links h1 {
	font-size: clamp(0.8rem, 2.4vw, 1.1rem);
	letter-spacing: -0.6px;
	word-spacing: -1.4px;
	padding: 6px 3px;
}
h2 {
	font-size: clamp(0.75rem, 2.2vw, 1rem);
	letter-spacing: -0.5px;
	word-spacing: -1.3px;
	padding: 6px 3px;
}
h3 {
	font-size: clamp(0.7rem, 2.1vw, 1.15rem);
	letter-spacing: -0.5px;
	word-spacing: -1.3px;
	padding: 6px 3px;
}
h4 {
	font-size: clamp(0.65rem, 2vw, 1.05rem);
	letter-spacing: -0.4px;
	word-spacing: -1.2px;
	padding: 6px 3px;
}
h5 {
	font-size: clamp(0.6rem, 1.9vw, 0.95rem);
	letter-spacing: -0.4px;
	word-spacing: -1.2px;
	padding: 6px 3px;
}
}

/* Emergency scaling for very small screens */
@media (max-width: 320px) {
.h1-link {
	font-size: 0.75rem;
}
.h1-with-links h1 {
	font-size: clamp(0.75rem, 2.2vw, 1rem);
	letter-spacing: -0.7px;
	word-spacing: -1.6px;
	padding: 5px 2px;
}
h2 {
	font-size: clamp(0.7rem, 2vw, 0.9rem);
	letter-spacing: -0.6px;
	word-spacing: -1.5px;
	padding: 5px 2px;
}
h3 {
	font-size: clamp(0.65rem, 1.9vw, 1rem);
	letter-spacing: -0.6px;
	word-spacing: -1.5px;
	padding: 5px 2px;
}
h4 {
	font-size: clamp(0.6rem, 1.8vw, 0.95rem);
	letter-spacing: -0.5px;
	word-spacing: -1.4px;
	padding: 5px 2px;
}
h5 {
	font-size: clamp(0.55rem, 1.7vw, 0.9rem);
	letter-spacing: -0.5px;
	word-spacing: -1.4px;
	padding: 5px 2px;
}
}
