/* Interactive List / Reasons Cards */
        .reason-card {
            background: white;
            border: 1px solid rgba(0,0,0,0.04);
            border-radius: 16px;
            padding: 24px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            height: 100%;
        }

        .reason-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(74, 107, 108, 0.08);
            border-color: rgba(74, 107, 108, 0.2);
        }

        .icon-box {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background-color: rgba(141, 164, 153, 0.15);
            color: var(--primary-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }

        .reason-card:hover .icon-box {
            background-color: var(--primary-soft);
            color: white;
        }

        /* Outcomes Section */
        .outcomes-section {
            background-color: #ffffff;
            border-radius: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }

        .outcome-item {
            border-left: 3px solid var(--secondary-soft);
            padding-left: 20px;
            margin-bottom: 25px;
            transition: border-color 0.3s ease;
        }

        .outcome-item:hover {
            border-left-color: var(--accent-warm);
        }

