body {
	font-family: 'Tomorrow', sans-serif;
	background-color: rgb(240, 240, 240);
    font-size: 18px;
    line-height: 22px;
	margin: 0;
	padding: 20px;
}

h1 {
	text-align: center;
	color: #333;
}

/* Hero Image SVG */
.hero-image {
	text-align: center;
	margin: 20px 0;
	background-image: url('/includes/graghics/printed-circuit-board.png');
	/* Update with your actual image */
	background-size: cover;
	background-position: center;
	padding: 50px;
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 8px;
}

.hero-svg {
	width: 100%;
	height: auto;
	max-width: 1024px;
	/* This limits the width of the SVG */
}

/* .fund-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.fund-tile {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 20px;
	width: 300px;
} */

/* Fund Container */
.fund-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.fund-tile {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 165px;
    position: relative;
}

.progress-bar {
    background-color: #e0e0e0;
    border-radius: 4px;
    height: 20px;
    overflow: hidden;
    width: 86%;
    position: absolute;
    bottom: 46px; /* Adjust this value as needed for spacing from bottom */
}

.progress {
    background-color: #ff4444;
    height: 100%;
    width: 0%;
    transition: width 0.5s ease-in-out;
}



/* .progress-bar {
	background-color: #e0e0e0;
	border-radius: 4px;
	height: 20px;
	overflow: hidden;
}

.progress {
	background-color: #ff4444;
	height: 100%;
	width: 0%;
	transition: width 0.5s ease-in-out;
} */

.fund-name {
    font-size: 1.1em;
	font-weight: bold;
	margin-bottom: 10px;
}

/* First Letter of each word in Title */
h2 {
    font-family: 'Chakra Petch';
	font-style: normal;
	font-weight: 600;
	text-align: center;
	color: #444;
}

h2 span {
	display: inline-block;
}

h2 span::first-letter {
	font-size: 1.25em;
	font-weight: 700;
	/* Underline */
	text-decoration: underline;
}

.disclaimer {
    font-size: 12px;
    margin-top: 20px;
    text-align: center;
    color: #999;
}

/* Limit the width of paragraphs for better readability */
p {
    max-width: 65ch; /* Limit the paragraph width to 65 characters */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6; /* Improves readability */
    padding: 0 20px; /* Add some padding for smaller screens */
    text-align: justify; /* Optional: can make text look neater */
}

h6 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}

/* Special style for disclaimer */
.disclaimer {
    font-size: 0.9em;
    font-style: italic;
    color: #555;
    max-width: 65ch;
    margin: 0 auto 20px; /* Center it and add spacing */
}
