.my-investment-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: sans-serif;
}
.my-investment-form-wrapper h2,
.my-investment-form-wrapper h3 {
    text-align: left;
}
.amount-card,
.duration-card,
.currency-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 6px;
    cursor: pointer;
    
    text-align: left;
    transition: all 0.2s ease-in-out;
    user-select: none;
}
.amount-card:hover,
.duration-card:hover,
.currency-card:hover {
    background-color: #68B9E7;
}
.amount-card:active,
.duration-card:active,
.currency-card:active {
    transform: scale(0.97);
}
.active-card {
    background-color: #435ADB;
    border-color: #437694;
}
.flex-nowrap-scroll {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    margin-bottom: 20px;
}
#custom-amount-container {
    display: none;
    text-align: center;
    margin-bottom: 20px;
}
#results {
    text-align: left;
    margin-top: 30px;
}
.faq-section {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #535353;
    border-radius: 8px;
    background-color: rgb(41 41 41);
}
.faq-section h3 {
    text-align: left;
    margin-bottom: 20px;
}
.faq-item {
    margin-bottom: 20px;
}
.faq-item h4 {
    margin-bottom: 10px;
    color: rgb(168, 168, 168);
}
.faq-item p {
    margin: 0;
    color: #b9b9b9;
}