 /* Base styles for desktop */
 .content-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.content-section img {
    width: 40%;
    margin-left: 20px;
}
.content-section div {
    width: 60%;
}

.centered-content {
    text-align: center;
    margin: 0 auto;
}

/* Base styling for the menu */
.u-nav {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Styling for menu items */
.u-nav-item {
    position: relative;
    display: inline-block;
    
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #567e9b;
    color: white; /* Set font color to white */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    list-style-type: none;
    padding: 0;
    margin: 0;
    min-width: 160px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}


/* Styling for dropdown items */
.dropdown-menu li {
    border-bottom: 1px solid #ddd;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.submenu-item {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #e6dfdf;
}

.submenu-item:hover {
    background-color: #f4f4f4;
}


/* Show dropdown with a delay on hover */
.u-nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s; /* Adds a slight delay before showing */
}
a {
    text-decoration: none;
    color: inherit;
}

/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

section {
    margin-bottom: 60px;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

section h4 {
    font-size: 2em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

section h {
    font-size: 1.5em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

section p {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Image Styles */
.icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.feature-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* List Styles */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
  
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1em;
}

/* Call to Action Styles */
.cta {
    text-align: center;
    margin-top: 40px;
}

.cta a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007BFF;
    color: #fff;
    font-size: 1.2em;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.cta a:hover {
    background-color: #0056b3;
}

.trademodal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark background */
    display: flex;
    justify-content: center;
    align-items: center;
}

.trademodal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 960px; /* Increased width (20% more than before) */
    width: 90%; /* Responsive width */
    max-height: 80vh; /* Set a max height to ensure scrolling */
    overflow-y: auto; /* Enable vertical scrolling if content exceeds height */
}

.tradeclose-button {
    cursor: pointer;
    float: right;
    font-size: 30px; /* Adjust size as needed */
    font-weight: bold; /* Make it bold */
    color: #060606; /* Gray color */
    line-height: 20px; /* Center it vertically */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}
.filter-container {
    margin-bottom: 20px;
    text-align: center;
}
.filter-container label {
    margin-right: 10px;
}
.filter-container select,
.filter-container input {
    margin-right: 10px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}
th {
    background-color: #f2f2f2;
    color: #333;
}
tr:nth-child(even) {
    background-color: #f9f9f9;
}
tr:hover {
    background-color: #f1f1f1;
}
.performance-positive {
    color: green;
    font-weight: bold;
}
.performance-negative {
    color: red;
    font-weight: bold;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
        align-items: flex-start;
    }
    .content-section img {
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }
    .content-section div {
        width: 100%;
    }

    header h1 {
        font-size: 2em;
    }

    section {
        padding: 30px;
    }
}
.buy-button-container {
    text-align: center;
    display: block;
  }
  
  .start-trial-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  .terms-checkbox-label {
    display: block;
    margin-top: 10px;
  }
  
  .terms-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
  }
  
  .modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 160%; /* Double the width */
  }
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
 