.investing-badge {
  background-color: #fff;
  border: solid 1.3px #e0dad1;
  margin-top: 270px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.hero-badge-2 {
  margin-top: 55px;
}

.hero-badge img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.hero p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #0f0f0f;
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 675px;
}

.hero .hero-subtitle {
  font-family: "SangBleuMedium", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #44372c;
  margin-top: 40px;
}

.invest-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  background-color: transparent;
  margin: 0 auto;
  max-width: var(--container-max-width);
  position: relative;
}

.invest-section .invest-content {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.invest-section-title h2 {
  font-family: "SangBleuRegular", serif;
  font-weight: 400;
  color: #0f0f0f;
  margin-bottom: 20px;
  line-height: 1.4;
  justify-content: space-between; /* Ensure the badge is pushed to the far right */
  position: relative; /* Enable positioning of the badge */
  text-align: center;
}
.invest-section h3 {
  font-family: "SangBleuMedium", serif;
  background-image: linear-gradient(to top, #6b3305 100%, #ae734e 41%),
    linear-gradient(to bottom, #d8d8d8, #d8d8d8);
  font-size: 32px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.56px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 20px;
}

.invest-section .invest-content p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #0f0f0f;
  line-height: 1.8;
}

.invest-section .invest-content ul {
  list-style: none;
  padding: 0;
}

.invest-section ul li {
  display: flex;
  align-items: flex-start;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #0f0f0f;
  line-height: 1.6;
  gap: 20px; /* Add spacing between items */
  padding-bottom: 10px;
  width: 475px;
}
.invest-section ul li img {
  margin-top: 7px;
}
.invest-section .invest-content ul li::before {
  color: #28a745;
  margin-right: 10px;
  font-size: 16px;
}

.invest-section .invest-chart {
  max-width: 50%;
  padding: 0;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.invest-section .invest-chart img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hide invest-chart image on mobile */
@media screen and (max-width: 767px) {
  .invest-section .invest-chart {
    display: none;
  }
}

/* Holdings expand/collapse functionality */
.stock-item.stock-item-hidden {
  display: none !important;
}

.arrow-rotate {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.why-invest-section {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(224, 218, 209, 1) , 0 1px 12px 0 rgba(0, 0, 0, 0.2);  
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  margin: 0 auto;
  max-width: var(--container-max-width);
  position: relative;

}

.why-invest-section h2 {
  font-family: "SangBleuRegular", serif;
  font-weight: 400;
  color: #0f0f0f;
  margin-bottom: 20px;
  line-height: 1.4;
}

.why-invest-section h2 span {
  background-image: linear-gradient(to top, #6b3305 100%, #ae734e 41%);
  background-size: contain;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  line-height: 1.4;
  /* fix text cut off */
  display: inline-block; 
}

.why-invest-section p {
  font-size: 24px;
  font-weight: normal;
  color: #0f0f0f;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
  width: 70%;
  text-align: center;
  margin: 0 auto; /* Center the paragraph */
  margin-bottom: 50px;
}

.why-invest-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Force 2 columns */
  gap: 0;
  width: 100%;
  /* border: 1px solid #eedecd; */
  border-radius: 12px;
  overflow: hidden;
}

.why-invest-card {
  background-color: #fff;
  /* border-right: 1px solid #eedecd;
  border-bottom: 1px solid #eedecd; */
  padding: 32px;
  text-align: left;
}

/* Remove right border for cards in the right column */
.why-invest-card:nth-child(2n) {
  border-right: none;
}

/* Remove bottom border for cards in the bottom row */
.why-invest-card:nth-child(3),
.why-invest-card:nth-child(4) {
  border-bottom: none;
}

.why-invest-card h3 {
  font-family: "SangBleuMedium", serif;
  font-size: 32px;
  font-weight: 500;
  color: #0f0f0f;
  margin-bottom: 10px;
}

.why-invest-card p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #3F3B37;
  line-height: 1.6;
  text-align: left;
  margin: 0;
  width: 100%; /* Ensure text takes full width */
}

.why-invest-card-icon {
  font-size: 2rem;
  color: #472101;
  margin-bottom: 18px;
  display: inline-block;
  background-color: #F2EEEB; /* Add background color for the box */
  padding: 10px; /* Adjust padding inside the box */
  border-radius: 12px; /* Make the box rounded */
  width: 75px; /* Set a fixed width for the box */
  height: 75px; /* Set a fixed height for the box */
  display: flex; /* Use flexbox for centering */
  align-items: center; /* Center icon vertically */
  justify-content: center; /* Center icon horizontally */
}

.why-invest-card-icon img {
  width: 40px;
  height: auto;
}

.comparison-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: transparent;
  margin: 0 auto;
  max-width: var(--container-max-width);
  position: relative;
}

.comparison-section h2 {
  font-family: "SangBleuRegular", serif;
  font-weight: 400;
  color: #0f0f0f;
  margin-bottom: 20px;
  line-height: 1.4;
}

.comparison-section h2 span {
  background-image: linear-gradient(to top, #6b3305 100%, #ae734e 41%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.comparison-content {
  display: flex;
  align-items: center; /* Change from flex-start to center for vertical alignment */
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
  width: 100%;
}

.comparison-charts {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center; /* Add this to center the image vertically */
}

.comparison-charts img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.comparison-text {
  flex: 1;
  text-align: left;
  display: flex; /* Add display flex */
  flex-direction: column; /* Stack children vertically */
  justify-content: center; /* Center content vertically */
  height: 100%; /* Take full height of parent */
}

.comparison-text h4 {
  font-family: "SangBleuMedium", serif;
  font-weight: 500;
  color: #0f0f0f;
  margin-bottom: 12px;
  line-height: 1.4;
}

.comparison-text p {
  font-family: "Inter", sans-serif;
  font-size: var(--fluid-16-18);
  font-weight: 400;
  color: #0f0f0f;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Add responsive adjustments for comparison section */
@media (max-width: 768px) {
  .comparison-content {
    flex-direction: column;
    align-items: center;
  }

  .comparison-text,
  .comparison-charts {
    width: 100%;
    max-width: none;
  }

  .comparison-charts {
    margin-bottom: 30px;
  }
}

.product-information-section-container {
  background-image: linear-gradient(68deg, #f2eeeb 41%, #fff 93%);
}

.product-information-section {
  padding: 40px 40px;
  margin: 0 auto;
  max-width: var(--container-max-width);
  text-align: left;
}

.product-information-section h2 {
  font-family: "SangBleuRegular", serif;
  font-weight: 400;
  color: #0f0f0f;
  margin-bottom: 36px;
  text-align: center;
}

.product-information {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 20px;
}

.product-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px;
}

.product-cooperation {
  margin-top: 20px;
  text-align: left;
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding-left: 20px; /* Indent cooperation section */
  justify-content: space-between;
}

.product-cooperation-text {
  display: flex;
  flex: 1;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.product-column p,
.product-cooperation-text p {
  font-family: var(--font-family);
  font-size: var(--fluid-16-18);
  font-weight: 400;
  color: #0f0f0f;
}

.product-column p strong,
.product-cooperation-text p strong {
  font-family: var(--font-family);
  font-size: var(--fluid-16-18);
  font-weight: 700;
  color: #0f0f0f;
}

.product-cooperation-text a {
  font-family: var(--font-family);
  font-size: var(--fluid-16-18);
  font-weight: 600;
  color: #ED750D;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;

  &:hover {
    text-decoration: underline;
  }
}

.product-cooperation-text a svg {
  width: 18px;
  height: 18px;
}

.partner-logos {
  display: flex;
  flex: 1;
  justify-content: left;
  align-items: center;
  gap: 32px;
  margin-top: 10px;
  padding-left: 42px; /* Indent logos */
}

.partner-logos img {
  max-width: 200px;
  height: auto;
}

.product-links {
  display: flex;
  justify-content: right;
  gap: 20px;
  margin-top: 40px;
}

.product-links-button {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #202020;
  border: solid 1.5px #d1d3d8;
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.product-links-button:hover {
  background-color: #f9f2ec;
}

/* Stock Transactions Section Styles */
.stock-transactions {
  text-align: center;
  margin: 40px auto;
  max-width: var(--container-max-width);
  font-family: "Inter", sans-serif;
}

.stock-transactions h2 {
  font-family: "SangBleuRegular", serif;
  font-weight: 400;
  color: #0f0f0f;
  margin-bottom: 10px;
}

.stock-transactions h2 span {
  background-image: linear-gradient(to top, #6b3305 100%, #ae734e 41%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stock-transactions h3 {
  font-family: "SangBleuMedium", serif;
  font-size: 24px;
  font-weight: 500;
  color: #44372c;
  margin-bottom: 20px;
}

.stock-transactions p {
  font-size: var(--fluid-16-20);
  font-weight: 400;
  color: #0f0f0f;
  margin-bottom: 40px;
  line-height: 1.6;
  width: 80%;
  text-align: center;
  margin: 0 auto; /* Center the paragraph */
  margin-bottom: 50px;
}

.selector {
  display: flex;
  justify-content: center;
  gap: 0; /* Remove gap between buttons */
  margin-bottom: 30px;
  border: 2px solid #404040; /* Add border around the selector */
  border-radius: 50px; /* Make the selector rounded */
  overflow: hidden; /* Ensure rounded corners apply to child elements */
  width: fit-content; /* Adjust width to fit content */
  margin: 0 auto; /* Center the selector horizontally */
  padding: 5px; /* Add padding between the border and the buttons */
  margin-bottom: 60px; /* Add spacing between the selector and the content below */
}

.selector button {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 30px; /* Adjust padding for better appearance */
  border: none; /* Remove individual button borders */
  background-color: transparent;
  color: #44372c;
  cursor: pointer;
  flex: 1; /* Ensure buttons take equal space */
  min-width: 128px;
}

.selector button.active {
  background-color: #6b3305;
  color: #fff;
  border-radius: 50px; /* Add rounded corners for the active button */
}

.content {
  display: none;
}

.content.active {
  display: block;
}

.stock-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 20px;
}

.stock-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stock-item {
  display: flex;
  gap: 15px;
  padding: 16px 24px;
  border-radius: 1rem;
  background-color: #f5f5f5;
  flex-direction: column; /* Arrange items vertically */
  text-align: center; /* Center-align text */
  flex-direction: row;
  align-items: center;
}

.stock-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E71313;
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.stock-item img {
  width: 20px;
  height: auto;
}

.stock-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f0f0f;
  display: flex;
  align-items: left;
  gap: 5px;
  justify-content: flex-start; /* Align text to the left */
  align-items: center; /* Vertically align text to the center */
  padding-left: 10px; /* Add padding to the left */
}

.stock-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  justify-content: center;
}

.stock-item .ticker {
  font-size: 12px;
  font-weight: 500;
  color: #44372c;
  background-color: #f9f2ec;
  padding: 2px 6px;
  border-radius: 5px;
}

.stock-item p {
  font-size: 14px;
  font-weight: 400;
  color: #6c757d;
  text-align: left; /* Align text to the left */
  margin: 0; /* Remove default margin for better alignment */
}

.more-stocks a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  color: #444444;
  background-color: #fff;
  text-decoration: none;
  padding: 10px 24px;
  border: solid 1px #d1d3d8;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  min-width: 200px;
  justify-content: center;
  align-items: center;
}

.more-stocks a img {
  /* Center arrow icon */
  margin-top: -4px; 
  width: 14px;
  height: auto;
}

.more-stocks:hover a {
  background-color: #f9f2ec;
}

table {
  width: 80%; /* Make the table smaller */
  border-collapse: collapse;
  margin: 20px auto; /* Center the table horizontally */
  border: 1px solid #eedecd; /* Add border around the table */
  border-radius: 10px; /* Round the corners */
  overflow: hidden; /* Ensure rounded corners apply to child elements */
}

table th,
table td {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #0f0f0f;
  text-align: left;
  padding: 10px;
  border: 1px solid #eedecd;
}

table th {
  font-weight: 600;
}

table td .removed {
  color: #d9534f;
  font-weight: 500;
}

table td .added {
  color: #5cb85c;
  font-weight: 500;
}

.our-partners-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: transparent;
  position: relative;
}

.our-partners-section h2 {
  font-family: "SangBleuRegular", serif;
  font-weight: 400;
  color: #0f0f0f;
  margin-bottom: 12px;
  line-height: 1.4;
}

.our-partners-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 10px;
  padding-left: 42px;
  width: 80%;
}

.our-partners-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 10px;
}

.our-partners-logo img {
  max-width: 200px;
}

.risk-disclaimer-section {
  padding: 60px 40px;
}

.risk-disclaimer-section h4 {
  font-family: "SangBleuMedium", serif;
  font-size: 28px;
  font-weight: 500;
  color: #0f0f0f;
  margin-bottom: 10px;
  line-height: 1.4;
}

.risk-disclaimer-section p {
  font-family: "Inter", sans-serif;
  font-size: var(--fluid-16-18);
  font-weight: 400;
  color: #0f0f0f;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Trades Table Styles */
.trades-table-container {
  width: 80%;
  margin: 20px auto;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
}

.trades-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}

.trades-table thead {
  background-color: #e0dad1;
  position: sticky;
  top: 0;
  z-index: 1;
}

.trades-table th {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0f0f0f;
  text-align: left;
  padding: 14px;
  border: none;
}

.trades-table tbody {
  display: block;
  max-height: 400px;
  overflow-y: auto;
}

.trades-table thead,
.trades-table tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.trades-table tr {
  border-bottom: 1px solid var(--color-border);

  &:last-child {
    border-bottom: none;
  }
}

.trades-table td {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #0f0f0f;
  text-align: left;
  padding: 16px 14px;
  border:none;
  vertical-align: top;
}

/* Trade pair styling for inline display */
.trade-pair {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* Removed and added item styles */
.trades-table td .removed,
.trades-table td .added {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  padding: 8px 12px;
  white-space: nowrap;
  height: 36px; /* Set consistent height */
}

.trades-table td .removed {
  color: #ff4939;
  background-color: #ffeeee;
}

.trades-table td .added {
  color: #5cb85c;
  background-color: #f0f8f0;
}

/* Remove the separator styles as they're no longer needed */
.trade-pair .separator {
  display: none;
}

/* Adjust table cell padding for better display */
.trades-table td {
  padding: 12px 14px;
  /* Force the previous styling to be overridden for these elements */
  vertical-align: middle;
}

/* Remove the stacked display for removed and added items */
.trades-table td .removed,
.trades-table td .added {
  display: inline-flex;
  margin-bottom: 0;
  width: auto;
}

/* Remove any existing ::after content that might add separators */
.trades-table td .removed::after {
  content: none;
  display: none;
}

/* Adjust table cell padding for better display */
.trades-table td {
  padding: 12px 14px;
}

.trades-table td .removed {
  color: #ff4939;
  font-weight: 500;
  display: block;
  background-color: #ffeeee;
  border-radius: 4px;
  padding: 8px 12px;

  width: fit-content;
}

.trades-table td .added {
  color: #5cb85c;
  font-weight: 500;
  display: block;
  background-color: #f0f8f0;
  border-radius: 4px;
  padding: 8px 12px;
  width: fit-content;
}

/* Remove the semicolon that was separating the items before */
.trades-table td .removed::after {
  content: "";
  display: none;
}

.trades-table tbody tr:hover {
  background-color: #f9f2ec;
}

/* Adjust the table style to match the image */
table {
  /* Remove or modify the existing table styles that conflict */
  width: auto;
  margin: 0;
  border: none;
}