.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
}

.feature-list-icon {
    font-weight: 900;
    margin-right: 12px;
    color: var(--secondary-color);
    font-size: 16px;
}

.steps {
    display: flex;
    flex-direction: column;
    margin: 25px 0;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(23, 162, 184, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.step:hover {
    background-color: rgba(23, 162, 184, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    display: flex;
    flex-direction: column;
}

.step-highlight {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.highlight-text {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding: 2px 5px;
    margin: 5px 0;
}

.highlight-text:hover:before {
    height: 100%;
}

.learn_more_button {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 25px;
    font-weight: 600;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 70%, #60a5fa 100%);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
}

.learn_more_button:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
}

.learn_more_button i {
    margin-right: 8px;
}

/* Fix anchor scroll position so product header text is visible */
.solution-card {
    scroll-margin-top: 90px;
    /* adjust this to your navbar/header height */
}