.term-card {
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.term-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-color: #3b82f6;
}

.search-input {
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-color: #e2e8f0;
}

.search-input:focus {
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
}

.alphabet-filter button {
    transition: all 0.2s ease;
    font-weight: 500;
}

.alphabet-filter button:hover {
    background-color: #3b82f6;
    color: white;
}

.alphabet-filter button.active {
    background-color: #3b82f6;
    color: white;
}

.header-gradient {
    background: linear-gradient(to right, #1e40af, #3b82f6);
}

.investment-platform-card {
    transition: all 0.2s ease-in-out;
}

.investment-platform-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
}

.platform-feature-tag {
    transition: all 0.2s ease;
}

.platform-feature-tag:hover {
    background-color: #3b82f6;
    color: white;
}

.invest-now-button {
    transition: all 0.2s ease;
}

.invest-now-button:hover {
    transform: translateX(2px);
}
