#centerBox {
    max-width: 600px;
    margin: auto;
    padding: 35px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.investment-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.investment-item img {
    width: 50px; /* Adjust size as needed */
    height: auto;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px; /* Adjust as needed */
    /* Additional styling for the button */
}

#InvestSmartLogo {
    height: 200px; /* Set the height to 150px */
    width: auto; /* Maintain aspect ratio */
    display: block; /* Makes the image a block element, enabling margin auto */
    margin: 0 auto; /* Centers the image horizontally within its div */
}