.feature-card {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 12px;
    padding: 24px;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 200px;
    margin-bottom: 24px;
}

.feature-card h3 {
    margin: 0 0 16px 0;
    font-size: 24px;
    font-weight: bold;
}

.feature-card p {
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.feature-card-number {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
}