body { background-color: gainsboro;
  font-family: Arial, sans-serif;
  color: hwb(248 13% 84%);
}


h1 {
font-size: 36px;
text-align: center;
color: #0851d8;
margin-bottom: 20px;
}

h2 {
box-sizing: border-box;
font-size: 24px;
text-align: left;
margin-bottom: 10px;
}

li {
margin-bottom: 20px;
}

img {
width: 10px;
max-width: 100%;
height: 10px;
object-fit: cover;
margin-bottom: 5px;
}

button {
background-color: #4c5050;
color: #fff;
font-size: 16px;
padding: 10px 20px;
border: none;
cursor: pointer;
text-align: center;
}
hr {
border: 0;
border-top: 10px solid rgb(119, 116, 116);
margin: 20px 0;
}
img:hover {
transform: scale(1.2);
}
button:hover {
background-color: #289acf;
}

form {
  max-width: 400px;
  margin: 0 auto;
}

.label-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

label {
  font-weight: bold;
  margin-bottom: 10px;
  flex-basis: 48%; /* Adjust the width of the labels as needed */
}

input[type="email"],
textarea {
  flex-basis: 48%; /* Adjust the width of the input fields as needed */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

button[type="submit"] {
  flex-basis: 100%;
  background-color: #218dcc;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

button[type="submit"]:hover {
  background-color: #1b1b1b;
}

.header {
  display: flex;
  align-items: center;
  background-color: #5dace8;
  padding: 1px;
  height: 65px;
  border-bottom: 2px solid #eaeaea;
  
}
.header a.title {
  font-size: 35px; /* Set the desired font size */
  text-decoration: none; /* Remove the underline */
  color: #fff; /* Set the desired text color */
  font-weight: bold;
}

.title {
  flex-grow: 1;
  text-align: center;
  color: #fff;
}

.back-button {
  margin-right: 10px;
  margin-left: 10px;
}
.back-button a img {
  width: 40px; /* Set the desired width */
  height: 40px; /* Set the desired height */
}
/* Add a CSS reset to remove default margins and paddings */
body{
  margin: 0;
  padding: 0;
}

/* Set box-sizing to border-box to include padding and border in element's total width */
* {
  box-sizing: border-box;
}


.secondtitle {
  
  color: #1b1b1b;
  padding: 10px;
  text-align: center;
}
.itemgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-gap: 10px;
  grid-auto-rows: minmax(100px, auto);
  margin: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 5px #ccc;
}

.itemgrid ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  justify-content: center;
  list-style-type: none;
  padding: 0;
}

.itemgrid li {
  background-color: rgb(236, 233, 233);
  text-align: center;
  margin: 10px;
  border: 1px solid #ccc;
  padding: 20px;
  flex-grow: 1;
  flex-basis: 0;
}

.itemgrid li h3 {
  flex-grow: 0;
}

.description {
  margin: 20px;
  text-align: left;
  font-size: 18px;
  color: #333;
  font-weight: bold;
  line-height: 1.5;
}

.menu-button {
  margin-left: 10px;
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 20px;
}

.bar {
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 2px;
  transition: transform 0.2s ease-in-out;
}

.bar:nth-child(1) {
  top: 0;
}

.bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.bar:nth-child(3) {
  bottom: 0;
}

.menu-button.open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-button.open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu {
  position: absolute;
  top: 65px;
  left: 0;
  width: 200px;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: none;
  margin-left: 8px;
}

.menu.open {
  display: block;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  padding: 5px;
}

.menu li a {
  text-decoration: none;
  color: #218dcc;
}

.menu li a:hover {
  color: black;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .menu ul {
    flex-direction: column;
    align-items: center;
  }

  .menu li {
    display: block;
    margin: 10px 0;
  }
}

.subpages {
  display: none; /* Hide the subpages by default */
  margin-top: 3px; /* Add margin to create spacing between the subpages box and the menu item */
  padding: 0; /* Remove padding to minimize space within the subpages box */
  list-style-type: none; /* Remove the default bullet points for the list items */
}

.subpages li {
  margin-bottom: 1px; /* Adjust the margin to control the vertical spacing between list items */
}

.subpages li a {
  display: block; /* Convert the link into a block-level element to take up full width */
  padding: 5px; /* Add padding to create space within each list item */
  text-decoration: none; /* Remove underline from the links */
  color: #333; /* Set the desired text color */
  text-decoration: underline;
}

.subpages li a:hover {
  background-color: #f2f2f2;
  color: #1b1b1b; /* Add a background color on hover for visual feedback */
}
/* styles.css */

/* Style the performance graph container */
/* styles.css */

/* Style the performance graph container */
.performance-graph {
  margin-top: 20px; /* Add some spacing between the itemgrid and the graph */
  border: 1px solid #ccc; /* Add a border around the graph */
  padding: 10px; /* Add some padding to the graph container */
  background-color: #f9f9f9; /* Add a background color */

  /* Adjust the size of the graph container */
  width: auto; /* Change this value to control the width of the graph section */
  max-width: 1200px;
  margin: 0 auto; /* Center the graph section horizontally */
  text-align: center;
}

/* Customize the appearance of the canvas element */
.performance-graph canvas {
  /* Adjust the size of the canvas (graph) */
  height: 300px; /* Change this value to control the height of the graph */
}





/* Apply styles to the Investment Strategy section */
.content {
  margin: 0px; /* Add some margin around the section */
  padding: 20px; /* Add padding inside the section */
  border: 1px solid #ccc; /* Add a border around the section */
  border-radius: 5px; /* Round the corners of the border */
  background-color: #f9f9f9; /* Set a background color for the section */
}
.content p {
  display: block;
  margin: 0 auto;
  max-width: 1500px; 
  font-size: 18px;
  line-height: 1.6;
  
 
}
.content li {
  display: list-item; /* Ensure it's treated as a list item */
  list-style-type: circle; /* Set the bullet points */
  margin-left: auto;
  margin-right: auto;
  max-width: 1500px;
  font-size: 18px;
  line-height: 1.6;
  padding: 10px;
}
.content li::marker {
  font-size: 25px; /* Set the desired font size for the bullet points */
}

/* Style the heading elements */
.content h2 {
  color: solid black; /* Change the color of the main heading */
  font-size: 24px; /* Increase the font size of the main heading */
  margin-bottom: 10px; /* Add some space between the main heading and the content */
  text-align: center;
}

.content h3 {
  color: #1b1b1b; /* Change the color of the subheadings */
  font-size: 20px; /* Increase the font size of the subheadings */
  margin-top: 15px; /* Add some space above the subheadings */
}

.strategy-section p {
  line-height: 1.6; /* Adjust the line height of paragraphs for better readability */
}
.contact {
  margin-top: 10px;
  background-color: #f9f9f9ff;
  padding: 20px;
  text-align: center;
}
.contact h2 {
  text-align: center;
}
.faq-question-container {
  display: flex; /* Use flexbox to horizontally center the text and arrow */
  align-items: center; /* Align items (text and arrow) vertically in the container */
  justify-content: center; /* Center the items horizontally in the container */
}
.faq-question {
  font-weight: bold;
  cursor: pointer;
  position: relative; /* Add this line to position the arrows correctly */
  padding-left: 25px; /* Add left padding for the arrow */
}

.faq-question::before {
  content: '▼'; /* Downward arrow symbol */
  position: absolute;
  left: -10px; /* Adjust the left position of the arrow */
  top: 60%;
  transform: translateY(-50%);
}

.faq-question.open::before {
  content: '▲'; /* Upward arrow symbol when open */
}
body{
  margin: 0;
  padding: 0;
}

/* Set box-sizing to border-box to include padding and border in element's total width */
* {
  box-sizing: border-box;
}



.faq-answer {
  display: none;
  margin-top: 5px;
}
.faq-answer.show {
  display: block;
}

/* Existing CSS classes... */

/* Hero Section */
.hero {
  margin-top: 0px;
  background-color: #5dace8;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #fff;
  color: #218dcc;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #1b1b1b;
  color: #fff;
}

/* About Section */
.about-section {
  background-color: #f9f9f9;
  padding: 50px 0;
  text-align: center;
}

.about-content h2 {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-content p {
  display: block;
  margin: 0 auto;
  max-width: 1000px; /* Adjust this value to control the maximum width of the centered block */
  font-size: 18px;
  line-height: 1.6;
}
.about-section:hover {
  background-color: #eaeaea; /* Change this to the desired hover background color */
}

/* Style the text within the section */
.section-link .about-content h2,
.section-link .about-content p {
  color: black; /* Set the desired text color */
  text-decoration: none;
}




/* Footer Section */
.footer-section {
  background-color: #1b1b1b;
  color: #fff;
  text-align: center;
  padding: 10px;
}

/* Footer Content */
.footer-content {
  font-size: 14px;
}

/* End of the file */


