.welcome-card {
    text-align: center;
}

.highlight {
    color: var(--primary-color-start);
    font-weight: bold;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.feature {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background: var(--bg-color-accent-light);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: var(--primary-color-start);
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    background: var(--primary-gradient-90);
    color: var(--text-color-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    box-shadow: 0 4px 15px var(--shadow-color-dark);
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-color-dark-hover);
}