
.feature-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.feature-icon svg {
    width: 48px;
    height: 48px;
    color: #2A5CAA;
    margin-bottom: 20px;
}
.feature-card ul li {
    margin-bottom: 8px;
    position: relative;
}
.feature-card ul li::before {
    content: "✓";
    color: #2A5CAA;
    font-weight: bold;
    position: absolute;
    left: -20px;
}
